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

:root {
    /* Main Brand Palette - Paradise Pop (Ultra Vibrant) */
    --primary: #0084ff;
    /* Electric Azure */
    --primary-alt: #00c6ff;
    /* Cyan Sky */
    --secondary: #ff5e3a;
    /* Coral Blast */
    --secondary-alt: #ff2a68;
    /* Punch Pink (for accents) */
    --accent: #ffb400;
    /* Bright Marigold */
    --accent-alt: #ff6a00;
    /* Vivid Orange */
    --success: #0df2c9;
    /* Neon Mint */

    /* Gradients - More Balanced */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-alt) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));

    /* Functional Colors */
    --dark: #121212;
    --light: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --text-main: #1a1a1a;
    --text-muted: #666666;

    /* Tokens */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 132, 255, 0.15);
    /* Primary Shadow */
    --shadow-accent: 0 10px 25px rgba(255, 180, 0, 0.25);
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-full: 100px;

    /* Theme Variables */
    --bg-main: #ffffff;
    --bg-section: #f1f5f9;
    /* Light blue-gray for better section contrast */
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border-color: rgba(0, 132, 255, 0.08);
    /* Tinted border */
    --navbar-bg: var(--gradient-primary);
    --footer-bg: linear-gradient(135deg, #0066ff 0%, #00d2ff 100%);
    /* Vibrant Electric Azure */

    /* Fun Elements */
    --pattern-color: rgba(0, 132, 255, 0.025);
}

.dark-mode {
    --bg-main: #0a0a0a;
    --bg-section: #121212;
    --bg-card: #1e1e1e;
    --bg-glass: rgba(18, 18, 18, 0.7);
    --text-main: #f8f9fa;
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    --navbar-bg: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --pattern-color: rgba(255, 255, 255, 0.02);
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    background-image:
        radial-gradient(var(--pattern-color) 2px, transparent 2px);
    background-size: 32px 32px;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.dark-mode body {
    background-image:
        radial-gradient(var(--pattern-color) 2px, transparent 2px);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--light);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-hero {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.3);
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.4);
}

.btn-cta {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: var(--shadow-accent);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 214, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.dot {
    color: var(--accent);
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-glass);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

.navbar.scrolled {
    background: var(--bg-glass);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.navbar.scrolled .btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.navbar.scrolled .theme-toggle {
    color: var(--text-main);
    border-color: rgba(0, 132, 255, 0.2);
    background: rgba(0, 132, 255, 0.05);
}

.navbar.scrolled .theme-toggle:hover {
    background: rgba(0, 132, 255, 0.1);
}

.navbar.scrolled .menu-toggle {
    color: var(--text-main);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
    /* Prevent items from jumping to next line */
}

.logo {
    display: flex;
    align-items: center;
    z-index: 10;
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    /* Reduced from 100px for better fit */
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    margin-left: 1.5rem;
    /* Slightly reduced */
    margin-right: auto;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    opacity: 1;
}

.btn-mobile-only {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    flex-shrink: 0;
}

/* Intermediate screens - make things more compact */
@media (max-width: 1200px) and (min-width: 769px) {
    .nav-links {
        gap: 1rem;
        margin-left: 1rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .logo img {
        height: 60px;
    }

    .theme-toggle,
    .lang-toggle {
        margin-right: 0.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
    /* Reduced from 1.5rem */
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.lang-flag {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(80%);
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
}

.lang-flag img {
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-flag:hover {
    opacity: 0.9;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.lang-flag.active {
    opacity: 1;
    transform: scale(1.15);
    filter: grayscale(0%);
    box-shadow: 0 0 0 2px white;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    /* Reduced from 1.5rem */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: 1.2rem;
    transition: transform 0.5s ease;
}

.dark-mode .theme-toggle i {
    transform: rotate(360deg);
}

/* Hero */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    transform: scale(1.1);
    z-index: -2;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(168, 85, 247, 0.3));
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(248, 250, 252, 0.2) 50%,
            rgba(255, 255, 255, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    z-index: 3;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -3px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1 .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.hero h1 span:not(.gradient-text) {
    color: var(--light);
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 550px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.floating-card {
    padding: 2rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features */
.features {
    padding: 100px 0;
    background-color: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.dark-mode .features {
    background-color: var(--bg-section);
}

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

.feature-card {
    padding: 0;
    border-radius: var(--radius-lg);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    z-index: 2;
}

.feature-card:nth-child(2)::before {
    background: var(--gradient-secondary);
}

.feature-card:nth-child(3)::before {
    background: var(--gradient-accent);
}

.feature-card:hover {
    transform: translateY(-15px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
}

@media (max-width: 991px) {
    .feature-image {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .feature-image {
        height: 220px;
    }
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.feature-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 132, 255, 0.2);
    transition: all 0.4s ease;
}

.feature-card:nth-child(2) .icon-box {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 20px rgba(255, 94, 58, 0.2);
}

.feature-card:nth-child(3) .icon-box {
    background: var(--gradient-accent);
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.2);
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Delivery Zone Section */
.delivery-zone-section {
    padding: 120px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.delivery-zone-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(0, 223, 216, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.dark-mode .delivery-zone-section {
    background: #0f172a;
    /* Slate 900 - Darker than 1e293b */
}

.delivery-zone-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.delivery-zone-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.delivery-zone-content.full-width {
    max-width: 750px;
    margin: 0 auto;
}

.delivery-zone-content.medium-map {
    max-width: 650px;
}

/* Map Styles */
.delivery-map img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.1) contrast(1.05);
    /* Make it pop more */
}

.city-label {
    position: absolute;
    transform: translate(-50%, -50%);
    color: rgba(55, 65, 81, 0.6);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    pointer-events: none;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
    z-index: 5;
    font-family: var(--font-heading);
}

.delivery-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    width: 100%;
    border: 8px solid white;
}

.delivery-map.large-map {
    position: relative;
    /* Maintain aspect ratio */
}

/* Map Pins */
.map-pins-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through overlay container */
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    /* Center the bubble */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: none;
    border: none;
    padding: 0;
}

/* Hide the icon, we focus on the bubble */
.map-pin i {
    display: none;
}

.map-pin .pin-label {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
    border: 2px solid white;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

/* Pulse/Ripple Effect */
.map-pin::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(79, 70, 229, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.map-pin:hover {
    transform: translate(-50%, -60%) scale(1.1);
    z-index: 20;
}

.map-pin:hover .pin-label {
    background: var(--dark);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}



/* Active/Clicked State Animation */
.map-pin.clicked {
    animation: pinJump 0.5s ease;
}

@keyframes pinJump {
    0% {
        transform: translate(-50%, -115%) scale(1.1);
    }

    50% {
        transform: translate(-50%, -140%) scale(1.1);
    }

    100% {
        transform: translate(-50%, -115%) scale(1.1);
    }
}

/* Delivery Search Box */
.delivery-search-container {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 650px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.search-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.search-box {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-section);
    padding: 0.5rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 1.5rem;
    font-size: 1.1rem;
    font-family: inherit;
    outline: none;
    color: var(--text-main);
}

.search-box button {
    padding: 12px 25px;
    font-size: 1rem;
}

.zip-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 600;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.zip-result:not(:empty) {
    display: block;
}

.zip-result.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.zip-result.warning {
    background: #fef9c3;
    color: #854d0e;
    border: 1px solid #fef08a;
}

.zip-result.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.zip-result.info {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .delivery-search-container {
        padding: 1.5rem;
    }

    .search-box {
        flex-direction: column;
        border-radius: 20px;
        padding: 0.5rem;
    }

    .search-box input {
        padding: 1rem;
        text-align: center;
    }

    .search-box button {
        width: 100%;
        border-radius: 15px;
    }
}

/* Centralized Delivery Note Styles (Global) */
.delivery-note.centralized {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    max-width: 800px;
    margin: 2rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.delivery-note.centralized p {
    font-size: 1.25rem;
    /* Bigger font globally */
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.delivery-note.centralized i {
    font-size: 1.5rem;
    color: var(--primary);
}

.map-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    right: auto;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 30;
}

.map-badge i {
    font-size: 1.2rem;
}

/* Centralized Delivery Note Styles */
.delivery-note.centralized {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    max-width: 800px;
    margin: 0 auto;
    border-left: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
}








/* Rentals */
.rentals {
    padding: 100px 0;
    background-color: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary);
    font-weight: 800;
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.rental-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 132, 255, 0.08);
    /* Sophisticated subtle blue-tinted shadow */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.rental-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    z-index: 2;
}

.rental-card:nth-child(even)::before {
    background: var(--gradient-secondary);
}

.rental-card:nth-child(3n)::before {
    background: var(--gradient-accent);
}

.rental-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 132, 255, 0.15);
    z-index: 10;
}

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.price-tag {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--light);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.specs {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 132, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 94, 58, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Testimonials Carousel Layout */
.carousel-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper {
    flex: 1;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    gap: 2rem;
}

.testimonial-card {
    min-width: calc(33.333% - 1.34rem);
    /* 3 cards on desktop */
    background: var(--bg-card);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: auto !important;
    flex-shrink: 0;
    position: relative;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.testimonial-card {
    min-width: calc(33.333% - 1.34rem);
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.testimonial-card:nth-child(even)::after {
    background: var(--gradient-secondary);
}

.testimonial-card:nth-child(3n)::after {
    background: var(--gradient-accent);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-card .stars {
    display: flex;
    gap: 0.3rem;
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-card .stars i {
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    color: var(--text-main);
    font-size: 1.15rem;
    /* Even larger */
    line-height: 1.8;
    font-style: italic;
    flex-grow: 1;
    position: relative;
    font-weight: 500;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-info strong {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
}

.author-info .date {
    color: var(--text-muted);
    font-size: 0.9rem;
}




/* Google Badge */
.google-badge {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem 3rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.badge-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.badge-content i.fa-google {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #4285F4 0%, #EA4335 25%, #FBBC05 50%, #34A853 75%, #4285F4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.badge-info .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-info .rating strong {
    font-size: 1.8rem;
    color: var(--text-main);
    font-weight: 700;
}

.stars-small {
    display: flex;
    gap: 0.2rem;
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}



@media (max-width: 1200px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
        /* 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .carousel-container {
        gap: 0.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        /* Smaller arrows on mobile, but still visible */
    }

    .testimonial-card {
        min-width: 100%;
        /* 1 card on mobile */
    }


}

/* CTA */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 94, 58, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-box {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 5rem 3rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    /* Force white for maximum contrast */
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.dark-mode .cta-box {
    background: rgba(15, 23, 42, 0.9);
}

.cta-box h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    animation: gentleBounce 3s infinite;
    display: inline-block;
}

@keyframes gentleBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

.cta-box p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--accent);
    color: var(--dark) !important;
    border-radius: 60px;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.6);
    background: #ffffff;
    color: var(--primary) !important;
}

/* About Page */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 5rem 0;
    background: var(--bg-section);
}

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

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.subheading {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1.2;
}

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

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

.story-image .image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image .image-wrapper:hover {
    transform: rotate(0deg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card .icon-bubble {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--footer-bg);
    padding: 40px 0 0;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: white;
    text-decoration: none;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-col p i {
    color: var(--accent);
    width: 16px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footer-logo img:hover {
    transform: scale(1.05);
}


.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    width: fit-content;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px) rotate(10deg);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(255, 0, 128, 0.2);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.2rem 0;
    width: 100%;
    margin-top: 2rem;
}

.footer-bottom a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navbar-bg);
        padding: 2rem;
        gap: 1.5rem;
        margin-left: 0;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .logo {
        position: static;
        transform: none;
        order: 1;
    }

    .logo img {
        height: 50px;
    }

    .lang-toggle {
        order: 2;
        margin-right: 1rem;
        padding: 4px 8px;
    }

    .nav-container .btn-primary {
        display: none;
        /* We will show it only on medium screens and up, or hide it to use the mobile-only one */
    }

    /* Show a compact version of the button on mobile if requested */
    .nav-container>.btn-primary {
        display: inline-block;
        padding: 8px 16px;
        font-size: 0.85rem;
        order: 2;
        margin-right: 0.5rem;
    }

    .nav-links .btn-mobile-only {
        display: inline-block;
        margin-top: 1rem;
    }

    .hero-visual {
        position: relative;
        right: 0;
        transform: none;
        margin-top: 2rem;
    }

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .badge-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
        text-align: center;
    }

    .badge-content i.fa-google {
        font-size: 2rem;
    }

    .badge-info .rating strong {
        font-size: 1.5rem;
    }
}

/* ========================================
   PRODUCT DETAILS MODAL
   ======================================== */

/* Modal Overlay & Container */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    background: var(--bg-card);
    border-radius: 40px;
    /* More rounded for fun */
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: modalBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes modalBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(100px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-main);
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

/* Modal Content Layout */
.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-height: 90vh;
    overflow-y: auto;
}

/* ========================================
   IMAGE SLIDER (Left Side)
   ======================================== */

.modal-slider {
    background: linear-gradient(135deg, #f3e8ff, #e0f2fe);
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    gap: 1.5rem;
    max-height: 90vh;
    position: relative;
}

.dark-mode .modal-slider {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
}

.modal-slider::before {
    content: '🎈';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    opacity: 0.2;
    animation: float 4s infinite ease-in-out;
}

.modal-slider::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.2;
    animation: float 6s infinite ease-in-out reverse;
}

.slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow);
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-images {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}

.slider-images img {
    min-width: 100%;
    max-height: 450px;
    width: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.slider-icon-slide {
    min-width: 100%;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.slider-icon-slide i {
    font-size: 8rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0.5rem 0;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: var(--primary);
}

/* ========================================
   PRODUCT DETAILS (Right Side)
   ======================================== */

.modal-details {
    padding: 2rem;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
    height: 100%;
}

.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--bg-section);
    border-radius: 12px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.scroll-hint i {
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(3px);
    }
}

.modal-product-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 1rem 0;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s linear infinite;
    width: 100%;
}

@keyframes gradientShift {
    to {
        background-position: 200% center;
    }
}

/* Info Grid */
.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    position: relative;
}

.info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40%;
    background: var(--primary);
    border-radius: 0 10px 10px 0;
}

.info-item:nth-child(2)::before {
    background: var(--secondary);
}

.info-item:nth-child(3)::before {
    background: var(--accent);
}

.info-item:nth-child(4)::before {
    background: var(--success);
}

.info-item:nth-child(5)::before {
    background: var(--primary-alt);
}

.info-item:nth-child(6)::before {
    background: var(--secondary-alt);
}

.info-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 132, 255, 0.1);
    border-color: var(--primary);
}

.info-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-item:nth-child(2) i {
    color: #ec4899;
}

.info-item:nth-child(3) i {
    color: #f59e0b;
}

.info-item:nth-child(4) i {
    color: #10b981;
}

.info-item:nth-child(5) i {
    color: #8b5cf6;
}

.info-item>div {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.2;
}

/* Features List */
.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 1rem;
    background: var(--bg-section);
    border-radius: 28px;
    border: 2px dashed var(--primary);
    margin: 0.5rem 0;
    order: -1;
}

/* Force order in the details column */
.modal-details {
    display: flex;
    flex-direction: column;
}

.modal-features {
    order: 1;
}

.modal-info-grid {
    order: 2;
}

.btn-book-now {
    order: 3;
}

.modal-description {
    order: 4;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05) rotate(1deg);
}

.dark-mode .feature-item {
    background: var(--bg-section);
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Description */
.modal-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* Book Now Button */
.btn-book-now {
    background: var(--gradient-accent);
    color: var(--dark);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1.4rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(255, 180, 0, 0.3);
    margin: 2rem 0;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book-now:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 45px rgba(255, 180, 0, 0.5);
    background: linear-gradient(135deg, #ffca28, #ffa000);
}

.btn-book-now i {
    font-size: 1.3rem;
}

/* ========================================
   MODAL MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-slider {
        min-height: 350px;
        padding: 1.5rem;
    }

    .modal-details {
        padding: 2rem 1.5rem;
    }

    .modal-product-name {
        font-size: 1.8rem;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 95%;
        border-radius: 24px;
    }

    .modal-close {
        width: 38px;
        height: 38px;
        top: 15px;
        right: 15px;
    }

    .modal-details {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .modal-product-name {
        font-size: 1.5rem;
    }

    .btn-book-now {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* Testimonials Carousel Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
        /* Show 1 card on mobile */
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-container {
        gap: 0.5rem;
    }

    .testimonials-track {
        gap: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
        /* Show 2 cards on tablet */
    }
}

/* Delivery Zone Responsive */
@media (max-width: 968px) {
    .delivery-zone-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .delivery-zone-section {
        padding: 60px 0;
    }

    .map-badge {
        top: 10px;
        left: 10px;
        /* Keep left on mobile too */
        right: auto;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .map-badge i {
        font-size: 1rem;
    }

    .map-pin i {
        font-size: 1.5rem;
        /* Smaller pins on mobile */
    }

    .map-pin .pin-label {
        font-size: 0.7rem;
        padding: 2px 6px;
        margin-top: -2px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-card {
    padding: 4rem;
    border-radius: 40px;
    background: var(--bg-card);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-card h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: var(--bg-section);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-item:hover {
    background: var(--bg-card);
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.info-item .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(79, 70, 229, 0.2);
}

.info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.info-item p {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form {
    padding: 4rem;
    border-radius: 40px;
    background: var(--bg-card);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.btn-block {
    width: 100%;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-status.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}

/* ========================================
   SUCCESS MODAL
   ======================================== */

.success-modal-container {
    max-width: 450px !important;
    padding: 3rem;
    text-align: center;
}

.success-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 101, 52, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(22, 101, 52, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 101, 52, 0);
    }
}

.success-modal-content h2 {
    font-size: 2rem;
    color: var(--text-main);
    font-weight: 800;
}

.success-modal-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Fix for Contact Icons and Alignment */
.info-item {
    display: flex;
    align-items: center !important;
    /* Force vertical centering */
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.info-item .icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    border-radius: 15px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.info-item .icon-box i {
    font-size: 1.5rem;
    color: white !important;
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
}

.info-item h4 {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.info-item p {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    margin: 0;
}

/* Captcha styling update */
.captcha-group {
    background: var(--bg-section);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
}

.captcha-expression {
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-block;
    margin: 1rem 0;
    border: 1px solid var(--border-color);
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* Captcha Styling */
.captcha-group {
    background: rgba(79, 70, 229, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px dashed var(--primary);
}

.captcha-group label {
    margin-bottom: 1rem !important;
}

.captcha-expression {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 2px;
}

.captcha-group input {
    background: var(--bg-card);
}

.captcha-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 600;
    display: none;
}

.map-contact {
    padding-bottom: 100px;
}

.map-wrapper {
    border-radius: 32px;
    overflow: hidden;
    padding: 1rem;
}

.map-wrapper iframe {
    border-radius: 20px;
}

/* Contact Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ASSISTANT BOT (WHATSAPP WIDGET)
   ======================================== */

.bot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.bot-trigger {
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: none;
}

.bot-trigger:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.bot-trigger .notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: #ff3b30;
    border: 3px solid white;
    border-radius: 50%;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(255, 59, 48, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

.bot-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 350px;
    background: var(--bg-card);
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: botAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
}

.bot-window.active {
    display: flex;
}

@keyframes botAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.bot-header {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid white;
}

.bot-header-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.bot-header-info span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.bot-body {
    padding: 1.5rem;
    background: #f0f2f5;
    max-height: 250px;
    overflow-y: auto;
}

.bot-msg {
    background: white;
    padding: 1rem;
    border-radius: 15px 15px 15px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    max-width: 85%;
}

.bot-footer {
    padding: 1rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.bot-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bot-input-wrapper textarea {
    width: 100%;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.8rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-main);
    resize: none;
    outline: none;
    transition: all 0.3s ease;
}

.bot-input-wrapper textarea:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.bot-send-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.bot-send-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .bot-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
}


/* Hero Background Dark Mode Overrides */
.dark-mode .hero-bg::before {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(30, 41, 59, 0.4));
}

.dark-mode .hero-bg::after {
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.4) 0%,
            rgba(30, 41, 59, 0.3) 50%,
            rgba(15, 23, 42, 0.4) 100%);
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.cta-section::before {
    top: -100px;
    left: -100px;
}

.cta-section::after {
    bottom: -150px;
    right: -50px;
    width: 400px;
    height: 400px;
}

/* Legal Pages Stylings */
.legal-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 32px;
    background: var(--bg-card);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.legal-block p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
}

.footer-bottom a {
    color: inherit;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* Mobile Responsive Fixes */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.1;
        word-break: break-word;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 0;
    }

    .feature-content {
        padding: 1.5rem;
    }

    .logo img {
        height: 40px;
    }

    .theme-toggle,
    .lang-toggle {
        margin-right: 0.8rem;
    }
}

/* Mobile Responsive Refinements */
@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Navbar Adjustments */
    .navbar {
        padding: 0.8rem 0;
        background: var(--navbar-bg);
        /* Ensure background is visible */
    }

    .logo img {
        height: 45px;
        /* Optimal size for mobile */
    }

    .nav-container {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        /* Ensure proper spacing */
    }

    /* Explicitly order navbar items */
    .logo {
        position: static;
        transform: none;
        order: 1;
        margin-right: auto;
        /* Push other items to right */
    }

    .theme-toggle {
        order: 2;
        margin-right: 0.5rem;
        width: 35px;
        height: 35px;
    }

    .lang-toggle {
        order: 3;
        margin-right: 0.5rem;
        padding: 4px 8px;
    }

    .menu-toggle {
        display: block !important;
        order: 5;
        /* Pushed to the end */
        font-size: 1.5rem;
        color: white;
        margin-left: 0.5rem;
    }

    .nav-container>.btn-primary {
        display: inline-block;
        order: 4;
        padding: 8px 12px;
        font-size: 0.8rem;
        margin-right: 0;
    }

    .logo {
        order: 1;
    }

    .theme-toggle {
        order: 2;
    }

    .lang-toggle {
        order: 3;
    }

    /* Hero Section Fixes */
    .hero {
        padding: 130px 0 60px;
        min-height: 80vh;
        /* Restore height to show bg image */
        display: flex;
        align-items: center;
    }

    .hero-bg {
        transform: none !important;
        /* Remove scale that cuts off image */
        animation: none !important;
        background-position: center center;
        background-attachment: scroll;
        /* Better for mobile performance */
        opacity: 1 !important;
        /* Ensure visible */
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        word-break: break-word;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        /* Improve readability */
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card,
    .contact-card,
    .legal-content {
        padding: 1.5rem !important;
    }
}