﻿:root {
    /* Google One Inspired Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    /* Warm off-white */
    /* Professional Automotive Orange Palette */
    --primary: #f97316;
    /* Orange 500 */
    --primary-hover: #ea580c;
    /* Orange 600 */
    --primary-light: rgba(249, 115, 22, 0.1);

    --text-heading: #202124;
    --text-body: #5f6368;
    --text-muted: #70757a;
    --text-light: #ffffff;

    --accent-red: #ea4335;
    --accent-yellow: #fbbc04;
    --accent-green: #34a853;

    --accent-gradient: linear-gradient(90deg, #1a73e8 0%, #4285f4 50%, #7b1fa2 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* UI Tokens */
    --radius-pill: 999px;
    --radius-lg: 24px;
    --radius-md: 12px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
    --shadow-hover: 0 4px 6px rgba(60, 64, 67, 0.3), 0 8px 12px 6px rgba(60, 64, 67, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Buttons (Pill Shaped) */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-soft);
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    border-color: #dadce0;
    color: var(--primary);
}

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

/* Header & Navigation */
/* New Three-Tier Header */
.site-header {
    width: 100%;
    z-index: 1000;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-top-bar {
    background: #1e293b;
    /* Dark Slate for Orange Contrast */
    color: white;
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.header-top-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 14px;
    height: 14px;
    fill: #f97316;
    /* Professional Orange */
}

.header-main-bar {
    background: white;
    padding: 24px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.01em;
}

.header-contact-items {
    display: flex;
    gap: 48px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(248, 250, 252, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #64748b;
}

.contact-info-item:hover .contact-icon {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.contact-info-item:hover .contact-icon svg {
    fill: var(--primary);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-text .value a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text .value a:hover {
    color: var(--primary);
}

.header-navigation-bar {
    background: rgba(249, 115, 22, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 18px 28px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-menu a:hover {
    background: var(--primary-hover);
}

.hamburger-new {
    display: none;
}

/* Hero Section */
.section-hero {
    background: radial-gradient(circle at 70% 30%, #fff 0%, #f8f9fa 100%);
    padding: clamp(80px, 15vw, 160px) 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 24px;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
}

.hero-phone {
    margin-bottom: 32px;
}

.hero-phone a {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    letter-spacing: -0.04em;
}

.phone-ring-icon {
    width: 0.9em;
    height: 0.9em;
    flex-shrink: 0;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(5deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0deg); }
}

.lead-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

/* Trust / Feature Section */
.section-trust {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
    padding: 60px 0;
    border-top: 1px solid #dadce0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.check-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 2rem;
}

.check-list li {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
    font-weight: 500;
    color: var(--text-heading);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

/* Service Cards */
.section-services {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

/* Page Content */
.content-page {
    background: white;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
}

.text-block h2,
.text-block h3 {
    text-align: left;
    margin: 48px 0 24px;
}

.text-block p {
    margin-bottom: 20px;
}

/* CTA Card */
.section-cta {
    background: var(--bg-secondary);
}

.cta-card {
    background: white;
    padding: 64px;
    border-radius: var(--radius-lg);
    border: 1px solid #dadce0;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

/* Contact Form */
.main-contact-form {
    max-width: 650px;
    margin: 48px auto 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid #dadce0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-block {
    width: 100%;
    margin-top: 12px;
}

/* Footer */
.main-footer {
    background: white;
    border-top: 1px solid #dadce0;
    padding: 64px 0 32px;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.9rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 24px;
    transition: var(--transition);
}

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


.hero-phone a .phone-svg {
    width: 1.2em;
    height: 1.2em;
}

@media (max-width: 600px) {}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

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

    .cta-card {
        padding: 32px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav a {
        margin: 0 10px;
    }

    section {
        padding: 64px 0;
    }
}

@media (max-width: 992px) {
    .header-contact-items {
        gap: 24px;
    }

    .mail-item {
        display: none;
    }

    .nav-menu a {
        padding: 18px 20px;
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }

    .header-contact-items {
        display: none;
    }

    .header-navigation-bar {
        display: none;
    }

    .header-main-bar {
        padding: 16px 0;
    }

    .hamburger-new {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 2000;
    }

    .hamburger-new span {
        width: 100%;
        height: 3px;
        background-color: var(--primary);
        border-radius: 4px;
        transition: var(--transition);
    }

    /* Active Hamburger */
    .hamburger-new.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger-new.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-new.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}

/* Mobile Menu Overlay - Premium Glassmorphism */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1500;
    display: none;
    visibility: hidden;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.mobile-menu-overlay.active {
    display: flex;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered Delay for Menu Items */
.mobile-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 0;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav a:hover::after {
    width: 40px;
}

@media (max-width: 768px) {}

.faq-section {
    margin-top: 40px;
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: var(--radius-md);
}

.faq-section h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-section p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.faq-section p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Gallery Section
   ============================================ */
.section-gallery {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.gallery-item:first-child {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

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

    .gallery-item:first-child {
        grid-column: span 1;
    }
}

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

    .gallery-item:first-child {
        grid-column: span 2;
    }
}

/* ==============================================
   Distributed Image Styles
   ============================================== */

/* Wide full-width banner */
.img-banner-wide {
    margin: 48px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    max-height: 420px;
}

.img-banner-wide img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.img-banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 28px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

/* Inline image within text content */
.img-inline {
    margin: 32px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.img-inline img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

/* Side-by-side image pair */
.img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.img-pair-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.img-pair-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.img-pair-item span {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    background: var(--bg-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

    .img-banner-wide img {
        max-height: 250px;
    }
}

.faq-section {
    padding: 32px;
    border-radius: var(--radius-md);
}

.faq-section h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-section p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.faq-section p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Gallery Section
   ============================================ */
.section-gallery {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.gallery-item:first-child {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

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

    .gallery-item:first-child {
        grid-column: span 1;
    }
}

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

    .gallery-item:first-child {
        grid-column: span 2;
    }
}

/* ==============================================
   Distributed Image Styles
   ============================================== */

/* Wide full-width banner */
.img-banner-wide {
    margin: 48px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    max-height: 420px;
}

.img-banner-wide img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.img-banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 28px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

/* Inline image within text content */
.img-inline {
    margin: 32px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.img-inline img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

/* Side-by-side image pair */
.img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.img-pair-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.img-pair-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.img-pair-item span {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    background: var(--bg-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

    .img-banner-wide {
        max-height: 250px;
    }

    .img-banner-wide img {
        max-height: 250px;
    }
}

/* Removed duplicate Hero Image Section styles to fix cropping issues */

/* ============================================
   Content Images
   ============================================ */
.content-image-wrapper {
    text-align: center;
    margin: 40px auto;
    max-width: 450px;
    padding: 0 20px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2.5s infinite;
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.5);
    animation: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 80px;
        /* Adjust to stay above Mobile sticky CTA */
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* Hero Image Optimization for Desktop */
.hero-image-section {
    padding: 20px 0 40px;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 850px;
    /* Adjusted to be slightly larger but still contained */
    height: auto;
    object-fit: contain;
    /* Ensure no cropping */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-img {
        max-width: 100%;
        border-radius: 0;
    }
}