/* ===================================
   CSS Reset & Base Styles
   =================================== */

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

:root {
    /* Brand Colors - Professional Blue & Vibrant Green */
    --primary-color: #10B981;        /* Vibrant Green - Energy, Growth, Success */
    --primary-hover: #059669;        /* Darker Green for hover */
    --secondary-color: #1E40AF;      /* Deep Blue - Trust, Professionalism */
    --dark-navy: #0F172A;            /* Almost Black - Strong, Bold */
    --light-bg: #F8FAFC;             /* Clean White-Blue tint */
    --white: #FFFFFF;
    --text-dark: #0F172A;
    --text-gray: #64748B;            /* Slate Gray */
    --border-color: #E2E8F0;

    /* Typography */
    --font-headings: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: var(--font-weight-extrabold);
}

h3 {
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
}

h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.lead {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.6;
}

.subtitle {
    font-weight: var(--font-weight-normal);
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    font-family: var(--font-headings);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    position: relative;
    font-size: 0.95rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-family: var(--font-headings);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 400;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Section Titles
   =================================== */

.section-title-center {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: var(--font-weight-extrabold);
}

/* ===================================
   Services Intro
   =================================== */

.services-intro {
    padding: 5rem 0 3rem;
    background-color: var(--white);
}

/* ===================================
   Service Blocks
   =================================== */

.service-block {
    padding: 5rem 0;
}

.service-block:nth-child(even) {
    background-color: var(--light-bg);
}

.service-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row;
}

.service-image,
.service-text {
    flex: 1;
}

.service-content.reverse {
    flex-direction: row;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-text h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.feature-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   Who We Serve Section
   =================================== */

.who-we-serve {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.who-we-serve::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    transform: skewY(-2deg);
}

.who-we-serve .section-title-center {
    color: var(--white);
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.trade-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.trade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trade-image {
    height: 200px;
    overflow: hidden;
}

.trade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trade-card:hover .trade-image img {
    transform: scale(1.1);
}

.trade-card h3 {
    padding: 1.25rem;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
}

/* ===================================
   Contact Page
   =================================== */

.contact-hero {
    padding: 10rem 0 3rem;
    margin-top: 70px;
    background-color: var(--white);
}

.calendly-section {
    padding: 2rem 0 5rem;
    background-color: var(--white);
}

/* ===================================
   Work With Us Section
   =================================== */

.work-with-us {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto 3rem;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step .time {
    font-size: 1rem;
    font-weight: var(--font-weight-normal);
    color: var(--text-gray);
}

.process-step p {
    font-size: 0.95rem;
}

.process-connector {
    flex: 0 0 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    margin-top: 40px;
    position: relative;
}

.process-connector::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ===================================
   Why Us Section
   =================================== */

.why-us {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    transform: skewY(-2deg);
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--light-bg);
    transform: skewY(-2deg);
}

.why-us .section-title-center {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-icon {
    margin-bottom: 1rem;
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-item:first-child .faq-question {
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-item:first-child .faq-question:hover {
    background-color: var(--primary-hover);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-gray);
}

/* ===================================
   Final CTA Section
   =================================== */

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ===================================
   Product Pages
   =================================== */

.product-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--secondary-color) 100%);
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-hero-text h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-hero-text .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.product-hero-image {
    text-align: center;
}

.product-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-features {
    padding: 4rem 0;
    background-color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.seo-service-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.seo-service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.seo-service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.seo-service-block h3 {
    color: var(--dark-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-headings);
}

.seo-service-block p {
    color: var(--text-body);
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 768px) {
    .product-hero {
        padding: 6rem 0 3rem;
    }

    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-hero-text h1 {
        font-size: 2rem;
    }

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

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

/* ===================================
   Who We Serve Page
   =================================== */

.services-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.services-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-categories {
    padding: 4rem 0;
    background-color: var(--white);
}

.service-category {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-bg);
}

.service-category:last-child {
    border-bottom: none;
}

.category-title {
    color: var(--dark-navy);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-headings);
    font-weight: var(--font-weight-bold);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-item {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.services-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.services-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero .lead {
        font-size: 1.1rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .services-cta h2 {
        font-size: 2rem;
    }
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--dark-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 180px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .service-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-content.reverse {
        flex-direction: column;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile dropdown styles */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        transition: all 0.3s ease, max-height 0.3s ease;
    }

    .dropdown-menu.mobile-active {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .dropdown-toggle.mobile-active::after {
        content: '';
        display: inline-block;
        margin-left: 0.5rem;
        vertical-align: middle;
        border-top: 0;
        border-right: 0.3em solid transparent;
        border-bottom: 0.3em solid;
        border-left: 0.3em solid transparent;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-item {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.75rem;
    }

    .trust-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .trust-item span {
        white-space: nowrap;
    }

    .service-block {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-hero {
        padding: 10rem 0 2rem;
        margin-top: 70px;
    }

    .calendly-section {
        padding: 1rem 0 3rem;
    }
}

/* ===================================
   Accessibility
   =================================== */

.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
