/* --- Core Variables - NEW VIBRANT PALETTE --- */
:root {
    /* Primary: Rich, Energetic Green (Growth) */
    --primary: #166534;
    --primary-light: #15803d;

    /* Secondary: Modern Tech Blue (Science/R&D) */
    --secondary: #0EA5E9;
    --secondary-hover: #0284c7;

    /* Accent: Warm Orange (Energy/Action/CTAs) */
    --accent: #F97316;
    --accent-hover: #ea580c;

    /* Text & Backgrounds */
    --text-main: #1e293b; /* Dark Slate Gray - cleaner than pure black */
    --text-muted: #64748b;
    --bg-main: #ffffff;
    --bg-alt: #f1f5f9; /* Cool, bright Gray 100 */
    --border-color: #e2e8f0;

    /* Visual Elements */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Smoother, faster transition */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Resets & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Accounts for fixed header */
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Crisp text on Mac */
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a { text-decoration: none; }
ul { list-style: none; }

/* --- Navigation --- */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 1.5rem 0;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Premium frosty look */
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
/* Solid Header for Inner Pages */
#header.header-solid {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}
#header.header-solid .logo { color: var(--primary); }
#header.header-solid .nav-links a { color: var(--text-main); }
#header.header-solid .mobile-toggle { color: var(--primary); }
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo i { color: var(--secondary); } /* Blue icon for tech feel */
#header.scrolled .logo { color: var(--primary); }

/* White Box Wrapper for Blue Logo */
.logo-img-wrapper {
    background-color: #ffffff; /* Gives it the solid white background */
    padding: 8px 15px; /* Adds breathing room around the logo */
    border-radius: 8px; /* Smooth, rounded corners */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Optional: slight shadow to lift it off the background */
    transition: transform 0.3s ease;
}

.logo-img-wrapper:hover {
    transform: translateY(-2px); /* Slight bump effect when hovered */
}

.logo-img-wrapper img {
    height: 45px; /* Adjust this number to make your logo bigger or smaller */
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

#header.scrolled .nav-links a { color: var(--text-main); }
.nav-links a:hover { color: var(--secondary) !important; }

/* Highlight the Action button in nav */
.btn-nav {
    background: var(--accent);
    color: #fff !important;
    padding: 0.7rem 1.4rem;
    border-radius: 50px; /* Fully pill-shaped */
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}
.btn-nav:hover { background: var(--accent-hover); transform: translateY(-1px); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
#header.scrolled .mobile-toggle { color: var(--primary); }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    /* Updated gradient for cleaner transition to white bg */
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.95) 0%, rgba(22, 101, 52, 0.7) 100%), 
                url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    width: 90%;
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 1.8rem;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #f1f5f9;
    max-width: 650px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* --- Buttons (Upgraded Styles) --- */
.btn-primary, .btn-secondary {
    padding: 1.1rem 2.2rem;
    border-radius: 50px; /* Premium pill shape */
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* --- Trust Bar (Upgraded UI) --- */
.trust-bar {
    background: #fff; /* White background makes elements pop */
    color: var(--text-main);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary);
}

.trust-item i {
    color: var(--secondary); /* Blue icons for science */
    font-size: 1.5rem;
    background: #e0f2fe; /* Light blue circular background */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- General Layout --- */
.section-padding { padding: 8rem 0; }
.bg-light { background-color: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.subtitle {
    color: var(--secondary); /* Blue for subtitles */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.8rem;
}

.section-header h2 { font-size: 3rem; letter-spacing: -1px; }
.section-header span { color: var(--primary-light); }
.section-desc { color: var(--text-muted); margin-top: 1.2rem; font-size: 1.1rem; }

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: #e0f2fe;
}

/* Add a subtle blue top border on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ecfdf5; /* Very light green background */
    border-radius: 20px; /* Modern squircle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--primary);
}

.feature-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.feature-card p { color: var(--text-muted); font-size: 1rem; }

/* --- Products Section --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #e0f2fe;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent); /* Orange badge */
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.kit-badge { background: var(--secondary); } /* Blue badge for kits */

.product-img {
    background: ffffff; /* Light gray behind image area */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-light);
    border-bottom: 1px solid var(--border-color);
	width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image fill the box perfectly without squishing */
    transition: transform 0.5s ease; /* Adds a smooth zoom effect for the hover state */
}

.product-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 { margin-bottom: 0.8rem; font-size: 1.6rem; letter-spacing: -0.5px; }
.product-info p { color: var(--text-muted); margin-bottom: 2rem; flex-grow: 1; font-size: 0.95rem; }

.product-card:hover .product-img img {
    transform: scale(1.08);
}
/* Upgrade the View Specs link to look like a subtle button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary);
    background: var(--bg-alt);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
}
.btn-outline:hover { 
    background: #e0f2fe; /* Light blue on hover */
    color: var(--secondary); 
    gap: 14px; 
}

/* --- Footer --- */
footer {
    background: var(--primary); /* Keep dark green footer for ground connection */
    color: #fff;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

footer h4 { color: #fff; margin-bottom: 1.8rem; font-size: 1.2rem; position: relative; padding-bottom: 10px; }
/* Blue line under footer headers */
footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

footer p, footer li, footer a { color: #cbd5e1; font-size: 0.95rem; }
footer address { font-style: normal; }
footer address p { display: flex; gap: 12px; margin-bottom: 1rem; align-items: flex-start; }
footer address i { color: var(--secondary); margin-top: 4px; }
footer a:hover { color: var(--secondary); }

.footer-links li { margin-bottom: 1rem; }

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 300;
}

/* --- Utilities --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366; /* Standard WhatsApp Green */
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); }

/* Animation Reveal Classes */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .nav-links { gap: 1.2rem; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
        /* Premium clip-path slide down animation */
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); 
        transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a { color: var(--text-main); font-size: 1.1rem; font-weight: 600; }
    
    #header { background: var(--bg-main); padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
    .logo { color: var(--primary); }
    .mobile-toggle { color: var(--primary); }
    
    .section-padding { padding: 5rem 0; }
    .hero { min-height: 600px; text-align: center; }
    .hero-content p { margin-right: auto; }
    .hero-buttons { justify-content: center; }
    
    .trust-grid { justify-content: center; gap: 1.5rem; }
    .section-header h2 { font-size: 2.2rem; }
    
    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 1.8rem; }
}
/* --- About Page Specific Styles --- */
.page-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.95) 0%, rgba(22, 101, 52, 0.8) 100%), 
                url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 80px; /* Accounts for navbar */
}
/* Add this to force the About Us heading to be white */
.page-hero h1 {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Adds a subtle drop shadow for premium readability */
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Mobile adjustments for About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .reverse-grid .about-text {
        order: 2; /* Forces text below image on mobile */
    }
    .reverse-grid .about-image {
        order: 1;
    }
}
/* --- Single Product Page Specific Styles --- */
.breadcrumbs {
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--secondary);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
/* Container for the specific Nitron render image (your image 5) */
.product-visual-container {
    width: 100%;
    height: 500px; /* Set a specific height for desktop */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevents anything from breaking out */
    border-radius: 20px;
}

/* Style the image inside the container to make it fit to box */
.product-visual-container img {
    width: 100%;
    height: 100%;
    
    /* CRITICAL RULE: This makes it fit perfectly without squishing or cropping */
    object-fit: contain; 
}
.main-image-container {
    width: 100%;
    height: 500px;
    background: var(--bg-alt);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 2rem;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-weight: 500;
}

.benefit-list i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Technical Details Grid */
.technical-grid {
    display: grid;
    grid-template-columns: 3fr 2fr; /* Table column is slightly wider on desktop */
    gap: 2.5rem;
}

.specs-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
	min-width: 0; 
    overflow: hidden;
}

/* Responsive Table Wrapper */
.table-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; 
    padding-bottom: 5px; /* Space for the scrollbar */
}

/* Premium Dosage Table */
.dosage-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.dosage-table th {
    background: var(--bg-alt);
    color: var(--primary);
    text-align: left;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap; /* Prevents header text from wrapping */
}

.dosage-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.dosage-table tr:last-child td {
    border-bottom: none;
}

.notes-list {
    list-style: none;
}

.notes-list li {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.notes-list strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.2rem;
}

/* --- Mobile Responsiveness for Product Page --- */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr; /* Stacks image and info vertically */
        gap: 2rem;
    }
    
    .technical-grid {
        grid-template-columns: 1fr; /* Stacks table and notes vertically */
    }
}

@media (max-width: 768px) {
    .main-image-container {
        height: 350px; /* Smaller image on phones */
    }
    
    .specs-card {
        padding: 1.5rem; /* Less padding on small screens to save space */
    }
    
    /* Forces the table to stay wide enough to be readable, triggering the scroll bar */
    .dosage-table {
        min-width: 500px; 
    }
}
/* Mobile adjustments for the product visualization */
@media (max-width: 768px) {
    .product-visual-container {
        height: 350px; /* Smaller height for phones */
    }
}

/* =========================================
   GALLERY PAGE STYLES
   ========================================= */

/* Photo Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    aspect-ratio: 4/3; /* Keeps all images uniformly sized */
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Smooth slight zoom on hover */
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Perfect 16:9 Aspect Ratio for YouTube/Video */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    background: #000;
}

.video-wrapper iframe, 
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Contact Form */
.contact-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1); /* Soft green glow */
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
}

.info-icon {
    background: #fff;
    color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-details h4 {
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.info-details p, .info-details a {
    color: var(--text-muted);
    line-height: 1.6;
    text-decoration: none;
}

.info-details a:hover {
    color: var(--secondary);
}

/* Map Embedded */
.map-container {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}