/* =========================================
   VARIABLES & GLOBAL STYLES
   ========================================= */
:root {
    /* Premium Luxury Corporate Palette */
    --primary-dark: #0F172A;
    --secondary-dark: #1E2A44;
    
    --bg-main: #F8F5EF;
    --bg-alt: #F3EFE7;
    --bg-card: #FCFAF6;
    
    --text-primary: #1C1C1C;
    --text-secondary: #5E6673;
    
    --accent-premium: #C2A878;
    --accent-gold-dark: #A88A5A;
    
    --border-color: #D9D2C7;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-spacing: 7rem;
    
    /* Effects - Understated Luxury */
    --shadow-sm: 0 4px 10px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.06);
    --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    --border-radius: 2px; /* Very subtle */
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.7;
    background-color: var(--bg-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Base Classes */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

.section {
    padding: var(--section-spacing) 0;
}

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

.bg-dark {
    background-color: var(--primary-dark);
    color: var(--bg-main);
}

.text-center {
    text-align: center;
}

.margin-bottom-sm { margin-bottom: 0.5rem; }
.margin-bottom-lg { margin-bottom: 3rem; }

.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

.title-underline {
    height: 1px;
    width: 80px;
    background-color: var(--accent-premium);
    margin-bottom: 3rem;
}

.title-underline.center {
    margin-left: auto;
    margin-right: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-weight: 400;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--bg-main);
    border-color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-card);
    border-color: var(--primary-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
    border-bottom: 1px solid rgba(217, 210, 199, 0.15);
}

.navbar.scrolled {
    background-color: var(--bg-card);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled .logo-brand,
.navbar.scrolled .nav-link,
.navbar.scrolled .nav-toggle {
    color: var(--primary-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--bg-main);
    font-style: italic;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.logo-brand span {
    color: var(--accent-premium);
    font-style: normal;
    margin: 0 0.2rem;
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent-gold-dark);
}

.navbar.scrolled .btn-nav {
    border-color: var(--primary-dark);
    color: var(--primary-dark) !important;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--bg-main);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--accent-premium);
}

.btn-nav {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.5rem 1.4rem;
    border-radius: var(--border-radius);
    color: var(--bg-main) !important;
}

.btn-nav:hover {
    background-color: var(--accent-premium);
    color: var(--primary-dark) !important;
    border-color: var(--accent-premium) !important;
}

.nav-toggle {
    display: none;
    color: var(--bg-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.75)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
}

/* Mobile Background Adjustment */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 180px;
    background: linear-gradient(to top, var(--bg-main), transparent);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    color: var(--accent-premium);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--accent-premium);
    padding-bottom: 0.5rem;
}

.hero h1 {
    font-size: 4.2rem;
    color: var(--bg-main);
    margin-bottom: 2rem;
    line-height: 1.15;
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    color: var(--bg-alt);
    margin-bottom: 3.5rem;
    max-width: 750px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero .btn-primary {
    background-color: var(--accent-premium);
    color: var(--primary-dark);
    border-color: var(--accent-premium);
}

.hero .btn-primary:hover {
    background-color: var(--bg-alt);
    border-color: var(--bg-alt);
}

.hero .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: var(--bg-main);
}

.hero .btn-secondary:hover {
    background-color: var(--bg-card);
    color: var(--primary-dark);
}

/* =========================================
   CREDIBILITY STRIP
   ========================================= */
.credibility-strip {
    background-color: var(--secondary-dark);
    border-top: 2px solid var(--accent-premium);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.6rem 0;
    position: relative;
    z-index: 3;
}

.strip-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 2rem;
    font-size: 0.82rem;
    color: rgba(248, 245, 239, 0.85);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.strip-item {
    padding: 0.3rem 0;
}

.strip-divider {
    color: var(--accent-premium);
    font-weight: 300;
    font-size: 1rem;
}

/* =========================================
   ABOUT / PHILOSOPHY
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.about-text strong {
    font-weight: 500;
    color: var(--primary-dark);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.phil-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.phil-item i {
    color: var(--accent-gold-dark);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.8rem;
    background-color: var(--bg-card);
    max-height: 520px;
    width: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary-dark);
    border: 1px solid var(--border-color);
    padding: 1.8rem 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--bg-main);
    margin-bottom: 0.3rem;
}

.badge-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent-premium);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   SERVICES OVERVIEW
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-gold-dark);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold-dark);
    display: inline-block;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* =========================================
   DETAILED SERVICES
   ========================================= */
.detailed-services {
    background-color: var(--bg-main);
}

.separator-line {
    height: 1px;
    width: 100%;
    background-color: var(--border-color);
    margin: 4rem 0;
}

.service-detail-row {
    display: flex;
    gap: 4rem;
}

.service-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--border-color);
    line-height: 0.8;
}

.service-info {
    flex-grow: 1;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-scope {
    font-size: 0.95rem;
    color: var(--primary-dark);
    border-left: 3px solid var(--accent-premium);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.business-value {
    background-color: var(--bg-alt);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--primary-dark);
}

/* =========================================
   WHY CHOOSE US & AUDIENCES
   ========================================= */
.dual-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.why-us.bg-dark h2 {
    color: var(--bg-main);
}

.why-content p {
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-list i {
    font-size: 1.2rem;
    color: var(--accent-premium);
    margin-top: 0.4rem;
}

.feature-list h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--bg-main);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.feature-list p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.why-quote {
    display: flex;
    align-items: center;
    border: 1px solid rgba(217, 210, 199, 0.2);
    padding: 4rem;
}

.why-quote blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--bg-alt);
    line-height: 1.4;
    font-style: italic;
    border-left: 1px solid var(--accent-premium);
    padding-left: 2rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.audience-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    transition: var(--transition);
}

.audience-card:hover {
    border-color: var(--accent-gold-dark);
}

.audience-card h4 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.audience-card p {
    font-weight: 300;
    font-size: 0.95rem;
}

/* =========================================
   METHODOLOGY (PROCESS)
   ========================================= */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 1px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--bg-main);
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: 0 0 0 8px var(--bg-alt);
    z-index: 2;
}

.timeline-content {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1.4rem;
}

.timeline-content p {
    font-weight: 300;
    font-size: 1rem;
}

/* =========================================
   INSIGHTS
   ========================================= */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card {
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    background-color: var(--bg-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    border-color: var(--primary-dark);
}

.insight-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.insight-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.insight-title a {
    color: var(--primary-dark);
}

.insight-excerpt {
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.read-more {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary-dark);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    align-self: flex-start;
}

.insight-card:hover .read-more {
    border-bottom-color: var(--primary-dark);
}

/* =========================================
   TESTIMONIALS (DARK BACKGROUND)
   ========================================= */
.testimonials {
    background-color: var(--primary-dark);
    color: var(--bg-alt);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--secondary-dark);
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(217, 210, 199, 0.1);
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--accent-premium);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--bg-alt);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.client-info h4 {
    color: var(--bg-main);
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
}

.client-info span {
    font-size: 0.8rem;
    color: rgba(217, 210, 199, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   FAQ & CONTACT Section
   ========================================= */
.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    background-color: transparent;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header h4 {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.accordion-header i {
    color: var(--accent-premium);
    transition: transform 0.4s ease;
}

.accordion-item.active .accordion-header h4 {
    color: var(--accent-gold-dark);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg); /* Plus to X transition */
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content p {
    font-weight: 300;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 2rem;
}

/* FAQ Wrapper Styling */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-dark);
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-bottom: 1px solid transparent;
}

.contact-method-item:hover {
    color: var(--accent-gold-dark);
    border-bottom-color: var(--accent-premium);
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
    border-top: 1px solid var(--border-color);
}
.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.6);
    padding-top: 6rem;
    border-top: 1px solid var(--accent-premium);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin: 1.5rem 0 2rem 0;
    max-width: 400px;
    font-weight: 300;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--bg-main);
    margin-right: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--accent-premium);
    color: var(--primary-dark);
    background-color: var(--accent-premium);
}

.footer h4 {
    color: var(--bg-main);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent-premium);
}

.footer-contact p {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 300;
}

.footer-contact i {
    color: var(--accent-premium);
    margin-top: 0.4rem;
    opacity: 0.8;
}

.footer-bottom {
    padding: 2rem 0;
    font-size: 0.85rem;
    font-weight: 300;
}

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

.legal-links a {
    color: rgba(255,255,255,0.4);
    margin-left: 2rem;
}

.legal-links a:hover {
    color: var(--bg-main);
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .experience-badge {
        bottom: -20px;
        left: 0;
    }
    .service-detail-row {
        gap: 2rem;
    }
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 5rem 0;
    }
    
    .about-container, .dual-section, .footer-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -40px;
        margin-right: 0; /* Removed positive margin that could cause overflow */
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        text-align: center;
        gap: 3rem;
    }

    .footer-brand p {
        margin: 1.5rem auto 2rem auto;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 4rem;
    }

    .section {
        padding: var(--section-spacing) 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-card);
        padding: 2rem;
        flex-direction: column;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
        opacity: 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }
    
    .navbar.scrolled .nav-toggle {
        color: var(--primary-dark);
    }

    .nav-toggle {
        color: var(--bg-main);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    
    .nav-link {
        color: var(--primary-dark);
        font-size: 1rem;
    }
    
    .nav-link.btn-nav {
        display: inline-block;
        margin-top: 1rem;
        color: var(--primary-dark) !important;
        border-color: var(--primary-dark);
        width: 100%;
        text-align: center;
    }

    .credibility-strip {
        display: none;
    }

    .hero h1 {
        font-size: 2.6rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-detail-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-num {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 0;
        width: 40px;
        height: 40px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .flex-between {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .legal-links a {
        margin: 0 0.5rem;
    }
    
    .contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .why-quote {
        padding: 2.5rem 1.5rem;
    }

    .why-quote blockquote {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    /* Prevent AOS from triggering overflow on small screens */
    [data-aos] {
        pointer-events: none;
    }
    .aos-animate[data-aos] {
        pointer-events: auto;
    }

    .btn {
        width: 100%;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2.5rem 1.5rem;
    }

    .service-link {
        margin-top: 1rem;
        display: block; /* Ensure it takes its own line */
    }
}
