:root {
    /* Vibrant Royal Blue & High-Contrast Highlight Palette */
    --primary: hsl(38, 100%, 55%); /* Electric Orange */
    --primary-hover: hsl(38, 100%, 45%);
    --secondary-yellow: hsl(48, 100%, 52%); /* Power Yellow */
    --accent-red: hsl(0, 85%, 55%); /* Safety Red */
    
    --bg-dark: hsl(212, 100%, 28%); /* Brighter Royal Blue */
    --bg-card: hsl(212, 100%, 22%); /* Deep Vibrant Blue */
    --text-main: hsl(0, 0%, 100%);
    --text-muted: hsl(212, 30%, 88%);
    --accent-blue: hsl(195, 100%, 65%); /* Sky Blue highlights */
    
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    font-family: var(--font-heading);
    color: var(--secondary-yellow);
}

h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary); /* Orange */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.max-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1200px) {
    .max-content {
        padding: 0 40px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(38, 100%, 65%) 100%);
    color: hsl(215, 70%, 5%);
    border: none;
    box-shadow: 0 4px 15px -5px var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -10px var(--primary);
}

.btn-outline {
    background: hsla(215, 60%, 25%, 0.1);
    color: var(--text-main);
    border: 1px solid hsla(215, 50%, 50%, 0.3);
}

.btn-outline:hover {
    background: hsla(215, 60%, 30%, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-red {
    background: linear-gradient(135deg, var(--accent-red) 0%, hsl(0, 100%, 65%) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px -5px var(--accent-red);
}

.btn-red:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px var(--accent-red);
}

.btn-yellow {
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, hsl(48, 100%, 65%) 100%);
    color: hsl(212, 100%, 10%);
    border: none;
    box-shadow: 0 4px 15px -5px var(--secondary-yellow);
}

.btn-yellow:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px var(--secondary-yellow);
}

section {
    position: relative;
    background: radial-gradient(circle at 10% 10%, hsla(212, 100%, 40%, 0.1), transparent 50%),
                radial-gradient(circle at 90% 90%, hsla(38, 100%, 40%, 0.05), transparent 50%);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

.cta-glow {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 0, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(14, 21, 30, 0.4); /* Subtle transparent */
}

header.scrolled {
    background: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--glass-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 20px;
    transition: all 0.4s ease;
}


.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Scrolled state desktop handling is moved to specific media queries if needed */


.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* CTA sizing for scrolled state */
header.scrolled .nav-cta .btn {
    padding-left: 20px;
    padding-right: 20px;
}

header.scrolled .navbar {
    padding: 10px 20px;
}

/* Phone number spans handling */
.desktop-only .default-text {
    display: none; /* User wants this removed in desktop view */
}

.desktop-only .scrolled-text {
    display: inline;
}

/* Logic for showing only one phone text in desktop button */
header.scrolled .desktop-only .default-text {
    display: none;
}

header.scrolled .desktop-only .scrolled-text {
    display: inline;
}

/* Scrolled Nav Links & Hamburger Logic for Desktop */
@media (min-width: 769px) {
    header.scrolled .nav-links {
        display: none !important;
    }
    
    header.scrolled .menu-toggle {
        display: flex !important;
    }

    /* When menu is active (open) in scrolled state on desktop */
    header.scrolled .nav-links.active {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: rgba(14, 21, 30, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        gap: 24px;
        border-left: 2px solid var(--primary);
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    }

    header.scrolled .nav-links.active li a {
        font-size: 1.2rem;
        color: var(--text-main);
    }
}


.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    transition: all 0.4s ease;
}

/* Hamburger animation when active */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.nav-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 1;
}

.btn-icon {
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
}

.mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 20px 100px;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 50, 50, 0.1);
    color: #ff5555;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: #ff5555;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 1400px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    color: var(--primary);
    font-size: 1.2rem;
    display: flex;
}

.reviews span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-visual {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
}

.hero-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    border: 1px solid hsla(215, 50%, 50%, 0.2);
}

.glass-effect {
    position: relative;
    overflow: hidden;
}

.glass-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
    margin-bottom: 2px;
}

.floating-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-background {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(0,0,0,0) 60%);
    z-index: 0;
    pointer-events: none;
}

/* Features Section */
.features-section {
    padding: 80px 20px 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services Section (New 6-Card Layout) */
.services {
    padding: 100px 20px;
    max-width: 1600px; 
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .service-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Unified Premium Service Card */
.service-card, .service-card-new {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--primary); /* Vibrant Orange border */
    position: relative;
    border-radius: 20px;
}

.service-card:hover, .service-card-new:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.card-image, .card-img-wrapper {
    overflow: hidden;
    height: 200px; /* Cropped look as requested */
    width: 100%;
    position: relative;
}

.card-image img, .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .card-image img, 
.service-card-new:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-content, .service-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
}

.card-content h3, .service-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.card-content p, .service-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.6;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.learn-more, .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.learn-more:hover, .link-arrow:hover {
    gap: 12px;
}

/* CTA Section Update */
.cta-section {
    padding: 100px 20px;
}

.cta-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14,21,30,0.8), rgba(20,30,45,0.9));
    border: 1px solid rgba(255,255,255,0.05);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}

.cta-content, .cta-actions {
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 1100px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    max-width: 1600px;
    margin: 0 auto;
}

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

.testimonial-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.05rem;
    flex-grow: 1;
}

.reviewer h4 {
    color: var(--primary);
    font-size: 1.1rem;
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center; /* Vertically middle */
}

.contact-info {
    padding: 50px 30px; /* Reduced side padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.3rem;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 48px; /* Increased space between items */
}

.info-item {
    display: flex;
    align-items: flex-start; /* Align icon with title */
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 4px;
}

.info-item h4 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.info-item p {
    font-size: 1.15rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

.contact-form {
    padding: 50px 0; /* Removed side padding to let form-container use full width of column */
}

#quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.compact-btn {
    white-space: nowrap;
    font-size: 1rem;
    padding: 12px 20px;
    flex: 1;
    justify-content: center;
}

/* Footer */
footer {
    padding-top: 100px;
    background: var(--bg-card);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 0 40px 80px;
}

.brand {
    max-width: 450px;
}

.brand p {
    margin-top: 16px;
    color: var(--text-muted);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .floating-card {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%) !important;
        animation: none;
        width: 90%;
        justify-content: center;
    }

    /* Contact Section Responsive */
    .contact-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .contact-info {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    /* Consistently Floating Header for Mobile */
    header {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
    }

    .navbar {
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Prevent mobile scroll shifts */
    header.scrolled .navbar {
        padding: 15px; 
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(14, 21, 30, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        gap: 24px;
        border-left: 2px solid var(--primary);
        z-index: 1001;
        opacity: 1;
        transition: right 0.4s cubic-bezier(0.7, 0, 0.3, 1);
        pointer-events: all;
    }

    .nav-links.active {
        right: 0;
    }

    header.scrolled .nav-links {
        right: -100%;
        opacity: 1;
        pointer-events: all;
    }

    header.scrolled .nav-links.active {
        right: 0;
    }

    .nav-cta {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-shrink: 1;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Footer vertical stacking for mobile */
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }

    /* Gradual compacting for various phone sizes */
    @media (max-width: 600px) {
        .navbar {
            padding: 10px 12px;
        }
        .logo img {
            height: 20px;
        }
        .nav-cta {
            gap: 6px;
        }
        .btn {
            padding: 6px 10px;
            font-size: 0.78rem;
        }
        .menu-toggle {
            width: 20px;
            height: 14px;
            min-width: 20px;
        }
    }

    @media (max-width: 480px) {
        .navbar {
            padding: 8px 10px;
            gap: 4px;
        }
        .logo img {
            height: 16px;
        }
        .nav-cta {
            gap: 4px;
        }
        .btn {
            padding: 5px 8px;
            font-size: 0.65rem;
            letter-spacing: -0.3px;
        }
        .menu-toggle {
            width: 18px;
            height: 12px;
            min-width: 18px;
        }
    }
}

/* Ultra-Narrow Fix for iPhone SE & smallest devices */
@media (max-width: 400px) {
    .navbar {
        padding: 6px 5px !important;
        gap: 2px !important;
    }
    .logo img {
        height: 13px !important;
        transform: scale(0.9);
        transform-origin: left;
    }
    .nav-cta {
        gap: 2px !important;
    }
    .nav-cta .btn {
        padding: 3px 5px !important;
        font-size: 0.54rem !important;
        letter-spacing: -0.5px;
    }
    /* Hide phone icon to save critical width on < 400px */
    .nav-cta .btn i {
        display: none !important;
    }
    .menu-toggle {
        width: 16px;
        height: 10px;
        min-width: 16px;
    }
    .pulse-anim {
        animation: none !important;
        box-shadow: none !important;
    }
}

/* Desktop Expansion: For 1920x1200 and similar large screens */
@media (min-width: 1200px) {
    .navbar {
        padding: 15px 40px;
    }
    .hero {
        padding: 200px 40px 100px;
        gap: 80px;
    }
    .hero h1 {
        font-size: 5rem;
        letter-spacing: -2px;
    }
    .features-section,
    .services,
    .testimonials,
    .contact-section,
    .services-detailed,
    .about-details,
    .service-areas,
    .faq-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.faq-card {
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.faq-card h4 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.faq-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-card {
        padding: 30px;
    }
}
