/* ============================================
   KULM GROCERY — Brand Stylesheet
   Palette: Emerald Green + Cream
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-emerald-900: #064e3b;
    --color-emerald-800: #065f46;
    --color-emerald-700: #047857;
    --color-emerald-600: #059669;
    --color-emerald-500: #10b981;
    --color-cream-50: #fefdf8;
    --color-cream-100: #faf8f0;
    --color-cream-200: #f5f0e1;
    --color-cream-300: #e8e0c8;
    --color-dark: #1a1a1a;
    --color-gray-700: #374151;
    --color-gray-500: #6b7280;
    --color-gray-300: #d1d5db;
    --color-white: #ffffff;
    
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(6, 78, 59, 0.08);
    --shadow-md: 0 8px 30px rgba(6, 78, 59, 0.12);
    --shadow-lg: 0 20px 60px rgba(6, 78, 59, 0.15);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-cream-50);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Background Pattern --- */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--color-emerald-700) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--color-emerald-700) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-emerald-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-emerald-800);
    border: 2px solid var(--color-emerald-800);
}

.btn-secondary:hover {
    background: var(--color-emerald-50);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--color-emerald-800);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: var(--color-emerald-700);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-emerald-800);
}

.btn-white:hover {
    background: var(--color-cream-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn-map {
    margin-top: 16px;
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* --- Badge --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-emerald-100, #d1fae5);
    color: var(--color-emerald-800);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-emerald-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* --- Section Tag --- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-emerald-700);
    margin-bottom: 12px;
}

/* --- Highlight --- */
.highlight {
    color: var(--color-emerald-700);
    font-style: italic;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 253, 248, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-emerald-800);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-emerald-800);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-nav) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-emerald-600);
    transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover {
    color: var(--color-emerald-700);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-emerald-800);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--color-cream-50);
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-emerald-600);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-emerald-500);
    bottom: 10%;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--color-emerald-700);
    top: 40%;
    right: 30%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.06;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--color-emerald-700);
    font-family: var(--font-display);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-emerald-800);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-300);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.image-stack {
    position: relative;
    padding-right: 40px;
}

.img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-card.main-img {
    width: 100%;
    position: relative;
}

.img-card.main-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.img-card.floating {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 240px;
    z-index: 2;
}

.img-card.floating img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.img-card-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: var(--color-emerald-500);
    border-radius: var(--radius-md);
    z-index: -1;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--color-emerald-800);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    background: var(--color-emerald-800);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.marquee-content .sep {
    color: var(--color-emerald-500);
    font-size: 0.7rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 100px 0;
    background: var(--color-cream-100);
    position: relative;
    z-index: 1;
}

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

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-header {
    padding: 32px 32px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.product-icon {
    width: 56px;
    height: 56px;
    background: var(--color-emerald-100, #d1fae5);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald-700);
    flex-shrink: 0;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.product-card > p {
    padding: 0 32px;
    color: var(--color-gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-img {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--color-cream-50);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--color-cream-50);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-emerald-800);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: var(--shadow-md);
}

.about-badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-dark);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--color-emerald-100, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald-700);
    flex-shrink: 0;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: 100px 0;
    background: var(--color-cream-100);
    position: relative;
    z-index: 1;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-card a:hover {
    color: var(--color-emerald-700);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--color-emerald-100, #d1fae5);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald-700);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-500);
    font-weight: 600;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
}

/* Map */
.map-placeholder {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 450px;
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
}

.map-content {
    position: relative;
    z-index: 1;
    background: rgba(6, 78, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 48px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
}

.map-pin {
    width: 64px;
    height: 64px;
    background: var(--color-emerald-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.map-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-content p {
    opacity: 0.8;
    margin-bottom: 0;
}

.map-content .btn {
    margin-top: 24px;
    align-self: flex-start;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    background: var(--color-emerald-800);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

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

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-a {
    width: 400px;
    height: 400px;
    background: var(--color-emerald-400, #34d399);
    top: -150px;
    left: -100px;
}

.shape-b {
    width: 250px;
    height: 250px;
    background: var(--color-emerald-500);
    bottom: -80px;
    right: 10%;
}

.shape-c {
    width: 120px;
    height: 120px;
    background: var(--color-white);
    top: 20%;
    right: 5%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.05;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

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

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: var(--color-emerald-600);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-emerald-400, #34d399);
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-emerald-400, #34d399);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .about-img-secondary {
        right: -20px;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Mobile Nav */
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-cream-50);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a:not(.btn-nav) {
        font-size: 1.1rem;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .image-stack {
        padding-right: 0;
    }
    
    .img-card.floating {
        left: 10px;
        bottom: -20px;
        width: 200px;
    }
    
    .floating-badge {
        right: 0;
    }
    
    /* Products */
    .products {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-card-header {
        padding: 24px 24px 0;
    }
    
    .product-card > p {
        padding: 0 24px;
    }
    
    /* About */
    .about {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-img-secondary {
        right: 0;
        bottom: -20px;
        width: 200px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Visit */
    .visit {
        padding: 60px 0;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-placeholder {
        min-height: 350px;
    }
    
    /* CTA */
    .cta {
        padding: 60px 0;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .img-card.floating {
        width: 160px;
        left: 0;
    }
    
    .img-card.floating img {
        height: 120px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .map-content {
        padding: 32px 24px;
    }
}

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

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
