/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Corporate Palette */
    --primary-color: #0a2e52;
    /* Deep Navy Blue */
    --primary-dark: #051b33;
    /* Darker Navy for hover */
    --secondary-color: #f57c00;
    /* Construction Orange */
    --secondary-dark: #e65100;
    /* Darker Orange */

    /* Neutrals */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;

    /* Spacing & Effects */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-in-out;
    --border-radius: 6px;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. UTILITIES & TYPOGRAPHY
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-secondary {
    color: var(--secondary-color);
}

.text-white {
    color: var(--bg-white);
}

.text-muted {
    color: #888;
    font-size: 0.9rem;
}

.section {
    padding: 80px 0;
    position: relative;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

/* Headings */
h1,
h2,
h3,
h4 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.sub-heading {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Divider Line under headings */
.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 0;
}

.text-left .section-heading::after {
    margin: 10px 0 0;
}

/* =========================================
   3. BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

.btn-outline {
    border: 2px solid var(--bg-white);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline-dark {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: white;
}

/* =========================================
   4. TOP BAR
   ========================================= */
.top-bar {
    background-color: var(--primary-color);
    color: #ddd;
    padding: 10px 0;
    font-size: 0.9rem;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.social-links a {
    color: #ddd;
    margin-left: 15px;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* =========================================
   5. NAVIGATION HEADER
   ========================================= */
header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
}

.logo span {
    color: var(--secondary-color);
}

/* Desktop Menu */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
}

/* Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-nav:hover {
    background: var(--secondary-dark);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border-radius: 0 0 4px 4px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    color: var(--text-color);
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background: #f9f9f9;
    color: var(--secondary-color);
    padding-left: 25px;
}

.dropdown-content i {
    width: 20px;
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.4s;
}

/* =========================================
   6. HERO SECTION (Home)
   ========================================= */
.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 46, 82, 0.85), rgba(10, 46, 82, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 60px;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(245, 124, 0, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Scroll Mouse Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* =========================================
   7. PAGE HEADERS (Inner Pages)
   ========================================= */
.page-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -1px;
    /* Fix sub-pixel gap */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-header .content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* =========================================
   8. FEATURES / USP SECTION
   ========================================= */
.features-section {
    margin-top: -80px;
    padding-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 5;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-bottom: 4px solid var(--secondary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-box:hover .icon-box {
    background: var(--primary-color);
    color: white;
}

/* =========================================
   9. ABOUT SECTION
   ========================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    border-radius: 8px;
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(245, 124, 0, 0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    line-height: 1.2;
}

.check-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--secondary-color);
}

/* =========================================
   10. SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
    position: relative;
}

.card-icon {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 15px;
}

.read-more:hover {
    gap: 10px;
}

/* =========================================
   11. STATS / COUNTERS
   ========================================= */
.stats-section {
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') fixed;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* =========================================
   12. TESTIMONIALS
   ========================================= */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: #eee;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.client-name {
    font-weight: 700;
    color: var(--primary-color);
}

/* =========================================
   13. CTA SECTION
   ========================================= */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.cta-text h2 {
    color: white;
    margin-bottom: 10px;
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: #eee;
}

/* =========================================
   14. FOOTER
   ========================================= */
.footer {
    background-color: #111;
    color: #bbb;
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333;
}

.footer h3 {
    color: white;
    margin-bottom: 20px;
}

.footer h3 span {
    color: var(--secondary-color);
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-list i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 0.9rem;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 15px;
}

.social-icons a:hover {
    background: var(--secondary-color);
}

/* =========================================
   15. SERVICE PAGE SPECIFICS (Sidebar)
   ========================================= */
.service-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    padding: 80px 20px;
}

.sidebar {
    position: sticky;
    top: 100px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: block;
    padding: 12px 15px;
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-color);
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active-link {
    background: #fff3e0;
    color: var(--secondary-color);
    border-left: 3px solid var(--secondary-color);
}

.sidebar-nav i {
    width: 25px;
}

.sidebar-cta {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.sidebar-cta h4 {
    color: white;
    margin-bottom: 10px;
}

/* Service Content Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 6px;
    transition: 0.3s;
}

.service-box:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.service-box .icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Resource Card Styling */
.resource-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    padding: 30px;
    border-radius: 8px;
    color: white;
}

.bg-blue {
    background: var(--primary-color);
}

.bg-orange {
    background: var(--secondary-color);
}

.resource-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.resource-card ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
}

/* =========================================
   16. PAINTS PAGE SPECIFICS
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.product-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 25px;
}

.feature-list li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #666;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-right: 5px;
}

.process-steps {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.step {
    text-align: center;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #eee;
    display: block;
    line-height: 1;
}

/* =========================================
   17. CONTACT PAGE
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 8px;
}

.contact-info-box h2 {
    color: white;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.social-row {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-row h4 {
    color: white;
    margin-bottom: 10px;
}

.modern-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* =========================================
   18. ANIMATIONS & TRANSITIONS
   ========================================= */
/* Fade In Up Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classes used in HTML */
.fade-in-up {
    opacity: 0;
    /* Start hidden */
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Scroll Reveal Classes (Triggered by JS) */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    transform: translateX(-50px);
}

.scroll-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    transform: translateX(50px);
}

.scroll-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================================
   19. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
        /* Hide sidebar on tablets, could make it a top scroller */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    /* Hide top bar on mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        text-align: left;
        transition: 0.4s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        align-items: flex-start;
    }

    .nav-menu li {
        width: 100%;
        margin: 10px 0;
    }

    .dropdown-content {
        position: static;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border-top: none;
        background: #f9f9f9;
        transform: none;
        display: none;
        /* JS toggle can make this slide down */
        padding-left: 15px;
    }

    /* Simple fix for mobile dropdown: always show or use JS. For now, hover logic is tricky on mobile */
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-content {
        padding-top: 20px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}