/* ==========================================================================
   1. GLOBAL RESET & PREMIUM DESIGN VARIABLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-green: #135846;   /* Elite Deep Mangrove Green */
    --accent-gold: #dfb76c;     /* Sri Lankan Premium Gold */
    --bg-light: #f4f7f6;        /* Soft Sand White */
    --text-dark: #1e293b;       /* Charcoal Black */
    --text-muted: #64748b;      /* Elegant Slate Gray */
    --card-shadow: 0 15px 35px rgba(19, 88, 70, 0.08);
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 80px; /* Prevents content from hiding behind the sticky header */
}

/* ==========================================================================
   2. ULTRA-PREMIUM NAVIGATION BAR & MOBILE SIDEBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--primary-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.leaf-icon {
    color: var(--accent-gold);
    font-size: 1.3rem;
    position: absolute;
    top: -8px;
    left: -6px;
    transform: rotate(-15deg);
}

.ship-icon {
    color: #ffffff;
    font-size: 1.8rem;
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.company-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
}

.company-subtitle {
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Language Badges */
.lang-selector-desktop {
    display: flex;
    gap: 10px;
}

.lang-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-toggle-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* Sidebar Styling (Matches competitor's layout structure but upgraded) */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #e2dbbe; /* Premium light tan canvas color */
    z-index: 2001;
    padding: 40px 30px;
    box-shadow: -10px 0 35px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar.open { right: 0; }

.close-menu-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-green);
    cursor: pointer;
    margin-bottom: 40px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-links a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(19, 88, 70, 0.1);
    transition: all 0.3s;
}

.sidebar-links a:hover {
    color: #a67c1e;
    padding-left: 8px;
}

/* ==========================================================================
   3. LUXURY HERO BANNER SECTION
   ========================================================================== */
.hero-section {
    padding: 80px 6%;
    background: linear-gradient(180deg, #f0f7f5 0%, #ffffff 100%);
    text-align: center;
}

.badge {
    background: rgba(19, 88, 70, 0.06);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-section h1 {
    font-size: 2.6rem;
    color: var(--primary-green);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}

.highlight-text {
    color: #bfa15f; /* Smooth gold accent text tint */
}

.hero-subtext {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 35px auto;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    align-items: center;
    color: var(--primary-green);
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Section Header Typography Framework */
.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* ==========================================================================
   4. QUICK TRUST DETAILS GRID & HIGHLIGHT INCLUSIONS
   ========================================================================== */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 6%;
    background-color: var(--bg-light);
}

.info-card {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 14px;
}

.info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary-green);
}

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

.tour-details-section {
    padding: 60px 6%;
}

.tour-description {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.inclusion-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.inclusion-item i {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-top: 3px;
}

.inclusion-item h4 {
    color: var(--primary-green);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.inclusion-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ==========================================================================
   5. MODERN IMAGE CARDS SECTION
   ========================================================================== */
.gallery-section {
    padding: 60px 6%;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    background: var(--bg-light);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
    box-shadow: var(--card-shadow);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #135846 0%, #0a3328 100%);
    color: rgba(255, 255, 255, 0.9);
    gap: 12px;
}

.image-placeholder i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.image-placeholder span {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   6. BOOKING CONVERSION PLATFORM CARD
   ========================================================================== */
.booking-section {
    padding: 60px 6%;
    background-color: var(--bg-light);
}

.booking-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 24px;
    box-shadow: var(--card-shadow);
    max-width: 480px;
    margin: 0 auto;
}

.card-title {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #edf2f7;
}

.counter-label {
    display: flex;
    flex-direction: column;
}

.age-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary-green);
    background: #ffffff;
    font-size: 1.3rem;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn:hover {
    background: var(--primary-green);
    color: #ffffff;
}

.count-display {
    font-size: 1.15rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* High-End Interactive Ticket Aesthetic */
.ticket-summary {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    margin-top: 35px;
    position: relative;
    overflow: hidden;
}

/* Structural ticket punches */
.ticket-summary::before, .ticket-summary::after {
    content: '';
    position: absolute;
    top: 55%;
    width: 16px;
    height: 16px;
    background-color: var(--bg-light);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 2px solid #e2e8f0;
    z-index: 2;
}
.ticket-summary::before { left: -9px; }
.ticket-summary::after { right: -9px; }

.ticket-header {
    background: var(--primary-green);
    padding: 14px 20px;
    text-align: center;
}

.ticket-header h4 {
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
}

.ticket-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.92rem;
}

.ticket-total-row {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px dashed #cbd5e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-total-row span {
    font-weight: 700;
    font-size: 1.1rem;
}

.ticket-final-price {
    color: var(--primary-green);
    font-size: 1.5rem !important;
}

.btn-checkout {
    width: 100%;
    background: var(--primary-green);
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ==========================================================================
   7. INTERACTIVE LOCATION & DEPARTURE JETTY MAP
   ========================================================================== */
.location-section {
    padding: 60px 6%;
    background: #ffffff;
}

.map-container {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.map-placeholder {
    background: var(--bg-light);
    padding: 50px 20px;
    text-align: center;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

/* ==========================================================================
   8. TABLET AND DESKTOP RESPONSIVE SCREEN ENHANCEMENTS
   ========================================================================== */
@media (min-width: 768px) {
    .hero-section h1 { font-size: 3.5rem; }
    .hero-features { flex-direction: row; justify-content: center; gap: 40px; }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .inclusions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
/* ==========================================
   FLOATING WHATSAPP INTERACTION SYSTEM
   ========================================== */

/* ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 90px;              /* Lifts it above the booking bar */
    left: 50%;                  /* Centers horizontally */
    transform: translateX(-50%); /* Perfectly balances the center alignment */
    background-color: #25d366; /* Official WhatsApp Green */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;        /* Prevents text from breaking into two lines */
}

.whatsapp-float i {
    font-size: 1.6rem;
}

.whatsapp-float:hover {
    transform: translateX(-50%) translateY(-5px); /* Keeps center position while lifting on hover */
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}


    


/* Animations for pulsing attention draw */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/* Responsive cleanup for small phones */
@media (max-width: 480px) {
    .float-text {
        display: none; /* Keeps just the beautiful icon clean on tiny mobile frames */
    }
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}
/* ==========================================================================
   ADVANCED CALENDAR MATRIX SUBSYSTEM
   ========================================================================== */
.calendar-container {
    margin: 25px 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
}

.calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-navigation h4 {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
}

.cal-nav-btn {
    background: none;
    border: 1px solid #cbd5e1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.2s;
}

.cal-nav-btn:hover {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    background: #f8fafc;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.calendar-day-cell:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.day-number {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.day-price {
    font-size: 0.65rem;
    color: #16a34a; /* Green clean pricing tag indicator */
    font-weight: 600;
    margin-top: 2px;
}

/* Selected Tour Date Interface Overrides */
.selected-day {
    background: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
}
.selected-day .day-number, .selected-day .day-price {
    color: #ffffff !important;
}
/* ==========================================================================
   DYNAMIC TABBED SYSTEM STYLING HOOKS
   ========================================================================== */
.tabs-section {
    padding: 60px 5%;
    background-color: #ffffff;
}

.tabs-container {
    max-width: 850px;
    margin: 0 auto;
}

.tabs-navigation-bar {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
    gap: 20px;
}

.tab-toggle-btn {
    background: none;
    border: none;
    padding: 12px 6px;
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.tab-toggle-btn:hover {
    color: #114232;
}

.tab-toggle-btn.active-tab {
    color: #114232;
}

.tab-toggle-btn.active-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #114232;
    border-radius: 2px;
}

/* Panel Visibility Toggles */
.tab-content-panel {
    display: none;
}

.tab-content-panel.active-panel {
    display: block;
}

/* Typography Overrides */
.tab-prose-highlight {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tab-prose {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Split Column Lists System */
.split-lists-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.list-heading-title {
    font-size: 1.3rem;
    color: #114232;
    margin-bottom: 15px;
    font-weight: 700;
}

.manifest-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.manifest-check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #334155;
}

.manifest-check-list i {
    color: #16a34a;
    margin-top: 3px;
}

.exclusion-list i {
    color: #dc2626;
}

/* Callout and Instructions Elements */
.notice-callout-box {
    background-color: #f8fafc;
    border-left: 4px solid #114232;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.notice-callout-box h4 {
    color: #114232;
    margin-bottom: 8px;
}

.gear-checklist-container h4, .itinerary-title {
    color: #114232;
    margin-bottom: 15px;
}

.gear-item {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #475569;
}

.address-card-info {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.embedded-map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #cbd5e1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #64748b;
}

@media (min-width: 768px) {
    .split-lists-row { flex-direction: row; }
    .list-column { flex: 1; }
}
/* ==========================================================================
   PREMIUM HERO SLIDER SYSTEM (JETWING INSPIRED)
   ========================================================================== */
.premium-hero-slider {
    position: relative;
    width: 100%;
    height: 92vh; /* Balanced layout that ensures screen content continues below */
    overflow: hidden;
    background-color: #114232;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active-slide {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Elegant Text Overlay Components */
.hero-welcome-content {
    max-width: 650px;
    color: #ffffff;
    animation: fadeUpPresentation 0.8s ease-out forwards;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #bfa15f; /* Elegant gold accent */
    display: block;
    margin-bottom: 15px;
}

.hero-welcome-content h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-welcome-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #f1f5f9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Luxury Interactive Call-To-Action Button */
.hero-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #bfa15f;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero-action-btn:hover {
    background-color: #a38546;
    transform: translateY(-2px);
}

/* UI Navigation Indicator Dots Overlay */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.slider-dot:hover, .slider-dot.active-dot {
    background-color: #ffffff;
    transform: scale(1.2);
}

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

/* Responsive Scaling for Mobile Screens */
@media (max-width: 768px) {
    .premium-hero-slider { height: 80vh; }
    .hero-welcome-content h1 { font-size: 2.1rem; }
    .hero-welcome-content p { font-size: 0.95rem; }
    .hero-action-btn { padding: 12px 24px; font-size: 0.9rem; }
}
/* MINI GALLERY AUTOMATIC SLIDERS */
.gallery-slide-wrapper {
    margin-bottom: 35px;
}

.gallery-section-title {
    color: #114232;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    padding-left: 5px;
}

.mini-slider {
    position: relative;
    width: 100%;
    height: 380px; /* Adjust height based on preference */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    background-color: #114232;
}

.mini-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.mini-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .mini-slider {
        height: 280px; /* Slightly shorter on mobile screens */
    }
}
/* Style for the custom SVG coconut drink icon */
.info-card .coconut-icon {
    height: 2.5rem; /* Matches standard Font Awesome desktop icon height */
    width: auto;
    fill: #114232; /* Inherits your primary dark green branding color */
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease, fill 0.3s ease;
}

/* Hover style to match your existing interactive animations */
.info-card:hover .coconut-icon {
    fill: #bfa15f; /* Smoothly changes to your premium gold accent on hover */
    transform: scale(1.1); /* Slight pop animation when user points to it */
}
/* Container to clip the image into a perfect circle */
.coconut-img-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #114232; /* Matches your brand dark green color */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

/* Style for the actual King Coconut photo */
.coconut-custom-icon {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents the image from stretching */
    transition: transform 0.3s ease;
}

/* Interactive Hover Animations */
.info-card:hover .coconut-img-wrapper {
    border-color: #bfa15f; /* Changes border to premium gold on hover */
}

.info-card:hover .coconut-custom-icon {
    transform: scale(1.15); /* Smoothly zooms into the orange coconut on hover */
}
/* Adjust the floating WhatsApp container */