/* Font Definitions */
@font-face {
    font-family: 'Inter';
    src: url('assets/font/Inter-LatinExt.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/font/Inter-Latin.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 100px;
}

input, textarea, select, button {
    font-family: inherit;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(42, 128, 90, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.nav-logo h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.nav-logo-img {
    max-height: 50px;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.nav-phone-btn {
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-link.nav-phone-btn:hover {
    background: linear-gradient(135deg, #388E3C, #66BB6A);
    color: white !important;
}

.nav-link.nav-phone-btn i, .nav-link.nav-phone-btn span {
    color: white !important;
}

.nav-link.nav-phone-btn::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-layout-fullmap .hero-content-right {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block; /* Override flex */
}

.hero-layout-fullmap .hero-map-card {
    width: 100%;
    height: 100%;
    max-width: none; /* Override max-width: 600px */
    border-radius: 0;
    border: none;
    padding: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
}

.hero-layout-fullmap .map-image-wrapper {
    height: 100%;
    border-radius: 0;
}

.hero-layout-fullmap .map-info {
    display: none; /* Hide the small info text below the map in full view */
}

.hero-layout-fullmap .hero-content-left {
    background: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 420px; /* Even smaller */
    z-index: 999; /* Force it to the top */
    position: absolute;
    bottom: 40px; /* Bottom spacing */
    left: 40px; /* Anchored to left of screen */
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Shrink fonts and spacing for minimalist look in full map mode */
.hero-layout-fullmap .hero-content-left h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.hero-layout-fullmap .hero-content-left p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.hero-layout-fullmap .hero-badge {
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.hero-layout-fullmap .slogan-item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.hero-layout-fullmap .hero-slogans {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-layout-fullmap .btn-primary, 
.hero-layout-fullmap .btn-secondary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.hero-layout-fullmap .hero-overlay {
    /* Completely remove overlay so map is bright */
    background: none;
    pointer-events: none;
}

.hero-layout-fullmap .hero-container {
    position: static;
    /* Remove flex layout rules since children are absolute */
}

/* Ensure section is relative so absolute child is contained */
section.hero.hero-layout-fullmap {
    position: relative;
    overflow: hidden;
    background: none !important;
}

/* Push Leaflet controls below the navbar in full map mode */
.hero-layout-fullmap .leaflet-top.leaflet-right {
    margin-top: 100px;
}

/* Features Section */
.hero {
    height: 100vh;
    box-sizing: border-box;
    padding-top: 90px; /* Offset for fixed navbar */
    background: linear-gradient(135deg, #2A805A, #4CAF50),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="recycleGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23388E3C;stop-opacity:0.8" /><stop offset="100%" style="stop-color:%234CAF50;stop-opacity:0.6" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23recycleGrad)"/><circle cx="200" cy="150" r="80" fill="%23ffffff" opacity="0.1"/><circle cx="800" cy="300" r="120" fill="%23ffffff" opacity="0.1"/><circle cx="1000" cy="600" r="100" fill="%23ffffff" opacity="0.1"/><path d="M100,400 Q300,200 500,400 T900,400" stroke="%23ffffff" stroke-width="2" fill="none" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero with custom background image */
.hero[style*="background-image"] {
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 15, 0.70);
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    z-index: 2;
    position: relative;
    height: 100%;
}

.hero-content-left {
    flex: 1;
    color: white;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-content-left h1 {
    font-size: 2.8rem; /* Reduced from 3.5rem */
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-slogans {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.slogan-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    width: fit-content;
}

.slogan-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    border-color: #4CAF50;
}

.slogan-item i {
    color: white;
    font-size: 1.3rem;
}

.hero-actions {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 1rem;
}
.hero-actions a {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.hero-actions a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #388E3C, #66BB6A);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: inset 0 0 0 2px white, 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-content-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-map-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.hero-map-card:hover {
    box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

.map-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.map-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}



.map-overlay-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(42,128,90,0.1), rgba(0,0,0,0.1));
}

.map-city-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    transform: translate(-10px, -50%);
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 10px #4CAF50, 0 0 20px #4CAF50;
    border: 2px solid white;
    flex-shrink: 0;
}

.marker-dot.pulse {
    animation: pulse 2s infinite;
}

.city-name {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.5);
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.map-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem; /* Increased from 1rem */
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    color: #333;
}

.map-icon-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    /* Removed flex-shrink: 0 to prevent mobile overflow */
}

.map-info p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hero Mobile Responsiveness */
@media (max-width: 992px) {
    .hero {
        display: block;
        height: auto;
        min-height: 100vh;
        padding-top: 100px; /* Reduced from 130px */
        padding-bottom: 3rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .hero-content-left {
        max-width: 100%;
        margin-bottom: 1.5rem; /* Reduced from 3rem */
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .hero-slogans {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
        display: grid;
    }

    .hero-content-right {
        justify-content: center;
        width: 100%;
    }

    .hero-map-card {
        max-width: 100%;
    }

    .map-image-wrapper {
        height: 350px; /* Increased from 250px */
    }
    .map-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin-top: 80px;
        height: auto;
    }
    .hero-content-left {
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-content-right {
        justify-content: center;
        margin-top: 0; /* Reduced from 2rem */
    }
}

/* Custom Print Section */
.custom-print {
    padding: 4rem 0;
    background-color: var(--cp-bg-color, #ffffff);
}

.custom-print .section-title {
    color: var(--cp-title-color, #0e3c31);
}

.custom-print .section-subtitle {
    text-align: center;
    color: var(--cp-subtitle-color, #666666);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.custom-print-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.custom-print-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--cp-card-border-color, #eeeeee);
    border-radius: 10px;
    background: var(--cp-card-bg-color, #f9f9f9);
    transition: all 0.3s ease;
}

.custom-print-card:hover {
    border-color: var(--cp-card-hover-border-color, #49889d);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cp-image-wrap {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.cp-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.custom-print-card:hover .cp-image {
    transform: scale(1.05);
}

.cp-title {
    font-size: 1.25rem;
    color: var(--cp-title-color, #0e3c31);
    margin-bottom: 0.5rem;
}

.cp-desc {
    color: var(--cp-text-color, #666666);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,100 Q300,50 600,100 T1200,100 L1200,400 L0,400 Z" fill="%23f8f9fa" opacity="0.5"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Single Featured Card Layout */
.about-text-single {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* 2 Cards Layout */
.about-text-double {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
    height: 100%;
    padding: 1rem 0;
}

.about-item-featured {
    max-width: none !important;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(42, 128, 90, 0.15);
    border: 3px solid rgba(42, 128, 90, 0.1);
    transition: all 0.4s ease;
}

.about-item-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(42, 128, 90, 0.25);
    border-color: rgba(42, 128, 90, 0.3);
}

.about-icon-featured {
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 2rem auto;
    font-size: 2.5rem !important;
    background: linear-gradient(135deg, #2A805A, #4CAF50, #66BB6A);
    box-shadow: 0 10px 30px rgba(42, 128, 90, 0.3);
}

.about-details-featured {
    text-align: center;
}

.about-details-featured h3 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-details-featured p {
    font-size: 1.1rem !important;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

/* 2 Cards Layout Styles */
.about-item-double {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(42, 128, 90, 0.12);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.about-item-double:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(42, 128, 90, 0.18);
    border-left-color: #4CAF50;
}

.about-icon-double {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(42, 128, 90, 0.25);
}

.about-details-double h3 {
    font-size: 1.5rem;
    color: #2A805A;
    margin-bottom: 1rem;
    font-weight: bold;
}

.about-details-double p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 128, 90, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.about-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(42, 128, 90, 0.15);
    border-left-color: #4CAF50;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.about-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.about-item:hover .about-icon::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.about-details h3 {
    font-size: 1.3rem;
    color: #2A805A;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.about-details p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.about-image .section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(42, 128, 90, 0.2);
    transition: all 0.3s ease;
}

.about-image .section-image:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about-image .image-caption {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 500px;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    border-radius: 15px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(42, 128, 90, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Product Tabs System */
.product-tabs-container {
    margin-top: 2rem;
}

.product-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.product-tab {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #666;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
}

.product-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.product-tab:hover::before {
    left: 100%;
}

.product-tab:hover {
    box-shadow: 0 8px 25px rgba(42, 128, 90, 0.15);
    border-color: var(--tab-color, #2A805A);
    color: var(--tab-color, #2A805A);
}

.product-tab.active {
    background: var(--tab-color, #2A805A);
    border-color: var(--tab-color, #2A805A);
    color: white;
    box-shadow: 0 10px 30px rgba(42, 128, 90, 0.3);
}

.product-tab i {
    font-size: 1.2rem;
}

.product-tab span {
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Product Content Panels */
.product-content {
    position: relative;
    min-height: 400px;
}

.product-panel {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.product-panel.active {
    display: block;
}

.category-description {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 4px solid var(--tab-color, #2A805A);
}

.category-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Product Cards */
.product-card .product-info {
    padding: 1.5rem;
}

.product-card .product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-price {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2A805A;
}

.price-unit {
    font-size: 0.9rem;
    color: #666;
    margin-left: 0.25rem;
}

.btn-details {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-details:hover {
    background: linear-gradient(135deg, #1e5a3e, #388e3c);
    box-shadow: 0 8px 20px rgba(42, 128, 90, 0.3);
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 3;
}

.no-products {
    text-align: center;
    padding: 3rem 2rem;
    color: #999;
    grid-column: 1 / -1;
}

.no-products i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-products p {
    font-size: 1.1rem;
    margin: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2A805A;
    margin-bottom: 3rem;
    font-weight: bold;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #2A805A, #4CAF50);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(42, 128, 90, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.6s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(42, 128, 90, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    margin: 0 0 1.5rem 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 128, 90, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    font-size: 2rem;
}

.product-image:hover .image-overlay {
    opacity: 1;
}

.product-image:hover .product-img {
    transform: scale(1.1);
}

.product-card:hover .product-image {
    box-shadow: 0 15px 35px rgba(42, 128, 90, 0.3);
}

.product-card h3 {
    font-size: 1.5rem;
    color: #2A805A;
    margin-bottom: 1rem;
    font-weight: bold;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gallery-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.gallery-badge:hover {
    background: rgba(42, 128, 90, 0.9);
}

.btn-details {
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 128, 90, 0.3);
}

.btn-details:hover {
    box-shadow: 0 6px 20px rgba(42, 128, 90, 0.4);
    background: linear-gradient(135deg, #388E3C, #66BB6A);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #2A805A, #4CAF50);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0; /* prevent overflow */
}

.contact-details {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-details p {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    font-family: inherit;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Form row grid layouts */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-row-2 input,
.form-row-2 select,
.form-row-3 input,
.form-row-3 select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-family: inherit;
    color: #666;
    box-sizing: border-box;
}

.form-select {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    font-family: inherit;
    font-size: 1rem;
    color: #666;
    width: 100%;
    box-sizing: border-box;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: white;
    color: #2A805A;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}



/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #49889D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #49889d54;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
    color: #4CAF50;
    transform: scale(1.2);
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-out;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    color: white;
    font-size: 14px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 18px;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 3px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Navigation arrows positioned with padding */

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    right: 0;
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 14px;
    border-radius: 18px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.product-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: zoomIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 1rem 1.3rem;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.modal-title {
    margin: 0;
    color: #2A805A;
    font-size: 1.5rem;
    padding-right: 3rem;
}

.modal-category {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body {
    padding: 1.3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-gallery {
    display: flex;
    gap: 0.6rem;
    padding: 0.5rem;
}

.modal-gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-gallery-thumb:hover,
.modal-gallery-thumb.active {
    border-color: #2A805A;
    transform: scale(1.1);
}

.modal-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 4rem;
    margin-top: -1.5rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: bold;
    color: #2A805A;
    margin: 0;
}

.modal-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.modal-features,
.modal-specifications {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #2A805A;
}

.modal-features h4,
.modal-specifications h4 {
    margin: 0 0 1rem 0;
    color: #2A805A;
    font-size: 1.1rem;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li {
    padding: 0.1rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.modal-specifications p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    white-space: pre-line;
}

.modal-sku {
    background: #e8f5e8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    color: #2A805A;
    font-weight: 500;
}

.modal-featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        justify-content: center;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
        overflow-y: auto;
        text-align: center;
        transition: 0.3s;
        padding: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

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

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Mobile styles for product tabs and modal */
    .product-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .product-tab {
        min-width: 200px;
        width: 80%;
        max-width: 300px;
    }
    
    .product-tab span {
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
        width: 100%;
    }
    
    .modal-header {
        padding: 0.75rem 1rem;
        border-radius: 0;
    }
    
    .modal-title {
        font-size: 1.3rem;
        margin-right: 3rem;
        margin-bottom: 0;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
    
    .modal-main-image {
        height: 250px;
    }
    
    .modal-gallery-thumb {
        width: 60px;
        height: 45px;
    }
    
    .product-modal {
        padding: 0;
    }
    
    .modal-close {
        position: fixed;
        top: 1.5rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        border-radius: 50%;
        z-index: 10001;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .modal-close:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.2);
    }
    
    /* Additional floating close button for very small screens */
    .modal-close-fab {
        position: fixed;
        bottom: 1.5rem;
        right: 0.75rem;
        width: 45px;
        height: 45px;
        background: rgba(0, 0, 0, 0.9);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 1.25rem;
        cursor: pointer;
        z-index: 10001;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
        display: none;
    }
    
    .modal-close-fab:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.2);
    }
    
    /* Additional floating close button for better UX */
    .modal-close-fab {
        position: fixed;
        bottom: 2rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 10001;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
        display: none;
    }
    
    .modal-close-fab:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.2);
    }
    
    .modal-price {
        font-size: 1.5rem;
    }
    
    .category-description {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .category-description p {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .lightbox-navigation {
        padding: 0 15px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

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

    .hero {
        height: auto;
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-card {
        padding: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-image {
        padding: 0.5rem;
    }
    
    .about-image .section-image {
        max-width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .about-image .image-caption {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    /* Single Featured Card Mobile */
    .about-item-featured {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .about-icon-featured {
        width: 80px !important;
        height: 80px !important;
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .about-details-featured h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .about-details-featured p {
        font-size: 1rem !important;
        line-height: 1.6;
    }
    
    /* 2 Cards Layout Mobile */
    .about-text-double {
        gap: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .about-item-double {
        padding: 1.5rem;
        gap: 1.5rem;
        flex-direction: row;
    }
    
    .about-icon-double {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-details-double h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .about-details-double p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-item {
        padding: 1rem;
        gap: 1rem;
    }

    .about-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-close {
        top: -40px;
        right: 10px;
        font-size: 28px;
    }

    .lightbox-navigation {
        padding: 0 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

    .lightbox-counter {
        font-size: 12px;
        padding: 5px 12px;
        bottom: -40px;
    }

    .lightbox-caption {
        font-size: 12px;
        padding: 5px 12px;
        bottom: -40px;
    }
    
    /* Modal optimizations for very small screens */
    .modal-header {
        padding: 0.5rem 0.75rem;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
        margin-right: 2.5rem;
        margin-bottom: 0;
    }
    
    .modal-main-image {
        height: 250px;
    }
    
    .modal-close {
        position: fixed;
        top: 1.25rem;
        right: 0.75rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        background: rgba(0, 0, 0, 0.9);
        color: white;
        z-index: 10001;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .modal-close:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Turnstile Widget Styles */
#turnstile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(42, 128, 90, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(42, 128, 90, 0.1);
    transition: all 0.3s ease;
}

#turnstile-widget {
    max-width: 100%;
    overflow: hidden;
}

/* Turnstile loading state */
#turnstile-container.loading {
    background: rgba(42, 128, 90, 0.1);
    border-color: rgba(42, 128, 90, 0.2);
}

#turnstile-container.loading::after {
    content: 'Loading security verification...';
    color: #2A805A;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.phone-btn {
    background: linear-gradient(135deg, #00C6FF, #0072FF);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(1);
}

.float-btn:hover::before {
    opacity: 1;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Mobile optimizations for full map mode */
@media (max-width: 768px) {
    .hero-layout-fullmap .hero-content-left {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
        max-width: none;
        padding: 1.25rem;
    }
    .hero-layout-fullmap .hero-content-left h1 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    .hero-layout-fullmap .hero-content-left p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    .hero-layout-fullmap .hero-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
        margin-bottom: 0.5rem;
    }
    .hero-layout-fullmap .hero-slogans {
        display: none; /* Hide slogans on mobile to save space */
    }
    .hero-layout-fullmap .hero-actions {
        gap: 0.5rem;
        width: 100%;
        display: grid;
        margin-top: 1rem;
    }
    .hero-layout-fullmap .hero-actions a {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}

/* Landscape mobile optimizations (short height) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-layout-fullmap .hero-content-left {
        padding: 1rem;
        bottom: 10px;
        max-height: calc(100vh - 80px);
    }
    .hero-layout-fullmap .hero-content-left h1 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .hero-layout-fullmap .hero-content-left p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    .hero-layout-fullmap .hero-slogans {
        display: none;
    }
    .hero-layout-fullmap .hero-actions {
        gap: 0.5rem;
        width: 100%;
        display: grid;
        margin-top: 1rem;
    }
    .hero-layout-fullmap .hero-actions a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}