@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-navy: #0f172a;       /* Deep slate/navy - represents authority & trust */
    --secondary-slate: #1e293b;    /* Medium slate - card background accents */
    --light-slate: #334155;        /* Light slate - muted text and details */
    
    --accent-gold: #c5a059;        /* Warm antique gold - premium accents */
    --accent-gold-hover: #b48e47;  /* Darker gold for hovers */
    --accent-gold-light: #f5edd6;  /* Soft cream-gold for backgrounds */
    
    --bg-warm: #faf9f6;            /* Warm cream off-white - primary background */
    --bg-card: #ffffff;            /* Pure white for cards */
    
    --text-dark: #1e293b;          /* Dark slate - high readability body text */
    --text-muted: #64748b;         /* Cool gray/slate - metadata and captions */
    --text-light: #ffffff;         /* Pure white text */
    
    --border-color: #e2e8f0;       /* Soft gray border */
    --shadow-soft: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 20px 40px -15px rgba(15, 23, 42, 0.15), 0 2px 8px rgba(15, 23, 42, 0.05);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-gold-hover);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-header {
    background-color: var(--primary-navy);
    color: var(--text-light);
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-info {
    display: flex;
    gap: 25px;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.top-header-item a {
    color: var(--accent-gold);
    font-weight: 500;
}

.top-header-item a:hover {
    color: var(--text-light);
}

.logo-header {
    background-color: var(--bg-warm);
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    position: relative;
}

.logo-svg {
    position: absolute;
    left: -48px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 28px;
}

@media (max-width: 1240px) and (min-width: 769px) {
    .logo-header-content {
        padding-left: 48px;
    }
}

.logo-container h1,
.logo-container .logo-title {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    color: var(--primary-navy);
    font-weight: 800;
    margin-bottom: 2px;
}

.logo-container span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.sticky-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Responsive Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-navy);
    cursor: pointer;
    padding: 5px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-redesign {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
    color: var(--text-light);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}



.hero-redesign::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-text h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-text h2 span {
    color: var(--accent-gold);
    display: block;
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

/* Hero Highlight Card */
.hero-badge-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.hero-badge-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-badge-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.hero-badge-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Page Banners
   ========================================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner h1,
.page-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 5;
}

.page-banner p {
    font-size: 1.1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    position: relative;
    z-index: 5;
}

/* Hero & Banner Mountain Visuals */
.hero-mountains-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-mountains-container svg {
    width: 100%;
    height: 100%;
}

.page-banner .hero-mountains-container {
    height: 100px; /* Constrain height so mountains stay at the bottom */
}

.hero-mountains-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400%;
    height: 100%;
    display: flex;
    animation: panMountains 120s linear infinite;
    opacity: 0.15;
}

.mountain-panel {
    flex: 1;
    height: 100%;
    background-image: url('media/mountain-peaks-background-banner.jpg');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 100%;
}

.mountain-panel.flipped {
    transform: scaleX(-1);
}

@keyframes panMountains {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   Sections & Layout
   ========================================================================== */
section {
    padding: 85px 0;
}

.light-section {
    background-color: var(--bg-warm);
}

.white-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tagline {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.4rem;
    color: var(--primary-navy);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

/* ==========================================================================
   Feature Cards (Grid Layout)
   ========================================================================== */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border-radius: 6px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.home-page .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 160, 89, 0.4);
}

.card-num {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(19, 30, 49, 0.03);
    line-height: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    background-color: var(--accent-gold-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.card h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-cta-link {
    margin-top: auto;
    padding-top: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Pricing & Callouts
   ========================================================================== */
.pricing-banner-wrap {
    margin-bottom: 50px;
}

.callout {
    background: var(--bg-card);
    border-radius: 6px;
    padding: 50px;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--accent-gold);
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    transition: var(--transition-smooth);
}

.callout:hover {
    box-shadow: var(--shadow-hover);
}

.callout h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.callout p {
    color: var(--text-dark);
    max-width: 800px;
    font-size: 1.05rem;
}

/* Elegant pricing layout */
.pricing-callout-new {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
    color: var(--text-light);
    border-radius: 8px;
    padding: 45px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-callout-new::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(197, 160, 89, 0.05);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.pricing-info h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.pricing-amount {
    text-align: right;
}

.price-tag {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
    line-height: 1.1;
}

.price-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

/* DIY box specifically styled */
.diy-card {
    border-top: 5px solid var(--accent-gold);
    border-left: 1px solid var(--border-color);
    text-align: center;
    padding: 50px 40px;
}

.price-pill {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.diy-card p {
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   Contact Page Elements
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.office-photo-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.office-photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.office-photo-card .label {
    padding: 15px 25px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-navy);
    background: var(--bg-card);
    text-align: center;
}

/* Form Styles */
.contact-form-card {
    padding: 50px;
}

.contact-form-card h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 30px;
    font-weight: 700;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--light-slate);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    background-color: var(--bg-warm);
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-gold);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.contact-form .submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-navy);
    color: var(--text-light);
    border: 1px solid var(--primary-navy);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.contact-form .submit-btn:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
}

.contact-form .submit-btn:disabled {
    background-color: var(--border-color);
    border-color: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Cloudflare Turnstile Styling */
.cf-turnstile {
    width: 100%;
    margin: 10px auto;
    text-align: center;
	padding: 1% 0%;
}

.cf-turnstile > div {
    margin: 0 auto !important;
    padding: 1% 0 !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-container {
    margin-top: auto;
}

.footer-top-gold-bar {
    background-color: var(--accent-gold);
    height: 4px;
    width: 100%;
}

footer {
    padding: 70px 0 30px;
    background-color: var(--primary-navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.85);
    display: inline-block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--accent-gold);
    padding-left: 3px;
}

.footer-about-text {
    max-width: 320px;
}

.footer-bottom-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-copyright p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-copyright a {
    color: var(--accent-gold);
    font-weight: 500;
}

.footer-copyright a:hover {
    color: var(--text-light);
}

.footer-bottom .footnote {
    max-width: 600px;
    text-align: right;
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ==========================================================================
   Pay Fee Nav Button
   ========================================================================== */
.nav-pay-btn {
    background-color: var(--accent-gold) !important;
    color: var(--primary-navy) !important;
    padding: 6px 18px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.08em;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-pay-btn:hover {
    background-color: var(--accent-gold-hover) !important;
    color: var(--text-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.nav-pay-btn::after {
    display: none !important;
}

.nav-pay-btn.active {
    background-color: var(--accent-gold-hover) !important;
    color: var(--text-light) !important;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-text h2 {
        font-size: 2.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-mountains-container {
        height: 100%;
    }
    
    .hero-mountains-bg {
        width: 100%;
        animation: none;
    }
    
    .mountain-panel {
        background-size: cover;
        background-position: center bottom;
    }
    
    .mountain-panel:not(:first-child) {
        display: none;
    }
    
    .top-header {
        display: none; /* Hide header details on small screens to save space */
    }
    
    .logo-header {
        padding: 15px 0;
    }
    
    .logo-header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .logo-svg {
        position: static;
        transform: none;
        margin-bottom: 5px;
    }
    
    .logo-container span {
        letter-spacing: 0.25em;
    }
    
    .header-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* Navigation drawer styling for responsive touch */
    .sticky-nav-content {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
    }
    
    .nav-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 15px;
        margin-top: 5px;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 5px 0;
    }
    
    /* Hero scaling */
    .hero-redesign {
        padding: 60px 0;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.3rem;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-badge-card {
        padding: 30px;
    }
    
    /* Pricing card responsive */
    .pricing-callout-new {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 35px 25px;
    }
    
    .pricing-amount {
        text-align: center;
    }
    
    /* Forms columns stacking */
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Footer layout */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .footer-bottom .footnote {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-container h1,
    .logo-container .logo-title {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.9rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
    }
    
    .card, .callout, .contact-form-card {
        padding: 30px 20px;
    }
    
    .price-tag {
        font-size: 2.6rem;
    }
}