/* ===========================
   CSS VARIABLES & RESET
   =========================== */

:root {
    /* Color Palette - Premium Tropical Theme */
    --ivory-bg: #FFF9F3;
    --beige-bg: #FAF4E8;
    --coconut-brown: #8B5E3C;
    --coconut-brown-light: #A47148;
    --leaf-green: #3C7A3C;
    --leaf-green-dark: #2d5a2d;
    --gold-accent: #D4AF37;
    --teal-accent: #008080;
    --dark-brown: #3E2723;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--ivory-bg);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Prevent scrolling when preloader is active */
body.preloader-active {
    overflow: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* ===========================
   PRELOADER
   =========================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FAF4E8 0%, #FFF9F3 50%, #F5EFE6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

/* Brand Name Animation */
.brand-loader {
    margin-top: 50px;
    margin-bottom: 30px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--coconut-brown);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.brand-name .letter {
    display: inline-block;
    animation: letterPop 0.6s ease-out backwards;
    text-shadow: 2px 2px 4px rgba(139, 94, 60, 0.2);
}

.brand-name .letter.space {
    width: 12px;
}

/* Staggered animation for each letter */
.brand-name .letter:nth-child(1) { animation-delay: 0.1s; }
.brand-name .letter:nth-child(2) { animation-delay: 0.15s; }
.brand-name .letter:nth-child(3) { animation-delay: 0.2s; }
.brand-name .letter:nth-child(4) { animation-delay: 0.25s; }
.brand-name .letter:nth-child(5) { animation-delay: 0.3s; }
.brand-name .letter:nth-child(7) { animation-delay: 0.4s; }
.brand-name .letter:nth-child(8) { animation-delay: 0.45s; }
.brand-name .letter:nth-child(9) { animation-delay: 0.5s; }
.brand-name .letter:nth-child(10) { animation-delay: 0.55s; }
.brand-name .letter:nth-child(12) { animation-delay: 0.65s; }
.brand-name .letter:nth-child(13) { animation-delay: 0.7s; }
.brand-name .letter:nth-child(14) { animation-delay: 0.75s; }
.brand-name .letter:nth-child(15) { animation-delay: 0.8s; }
.brand-name .letter:nth-child(16) { animation-delay: 0.85s; }
.brand-name .letter:nth-child(17) { animation-delay: 0.9s; }
.brand-name .letter:nth-child(18) { animation-delay: 0.95s; }
.brand-name .letter:nth-child(19) { animation-delay: 1s; }

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-tagline {
    font-size: 16px;
    color: var(--leaf-green);
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

/* Loading Progress Bar */
.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(139, 94, 60, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 30px auto 20px;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--leaf-green), var(--gold-accent), var(--teal-accent));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loadingProgress 2s ease-in-out forwards, gradientShift 2s linear infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes loadingProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Loading Text */
.loading-text {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 1px;
}

.loading-text .dots span {
    animation: dotPulse 1.5s ease-in-out infinite;
}

.loading-text .dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-text .dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-text .dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Preloader */
@media (max-width: 768px) {
    .coconut-tree-loader {
        width: 160px;
        height: 240px;
    }
    
    .tree-trunk {
        width: 25px;
        height: 150px;
    }
    
    .palm-crown {
        width: 160px;
        height: 160px;
    }
    
    .palm-frond {
        width: 70px;
        height: 10px;
    }
    
    .brand-name {
        font-size: 32px;
    }
    
    .loading-bar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .coconut-tree-loader {
        width: 120px;
        height: 200px;
    }
    
    .tree-trunk {
        width: 20px;
        height: 120px;
    }
    
    .trunk-segment {
        height: 25px;
    }
    
    .palm-crown {
        width: 120px;
        height: 120px;
    }
    
    .palm-frond {
        width: 50px;
        height: 8px;
    }
    
    .coconuts-cluster {
        width: 40px;
        height: 40px;
        top: 70px;
    }
    
    .coconut-fruit {
        width: 16px;
        height: 16px;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .brand-tagline {
        font-size: 14px;
    }
    
    .loading-bar {
        width: 200px;
        height: 4px;
    }
    
    .loading-text {
        font-size: 14px;
    }
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: 
        linear-gradient(135deg, rgba(60, 122, 60, 0.03) 0%, transparent 50%),
        linear-gradient(to right, rgba(212, 175, 55, 0.05) 0%, transparent 30%, transparent 70%, rgba(212, 175, 55, 0.05) 100%),
        linear-gradient(180deg, rgba(250, 244, 232, 0.98) 0%, rgba(255, 249, 243, 0.95) 100%);
    box-shadow: 0 2px 20px rgba(139, 94, 60, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10 Q35 15 30 20 Q25 15 30 10' fill='none' stroke='%23D4AF37' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.header.scrolled {
    background: 
        linear-gradient(135deg, rgba(139, 94, 60, 0.04) 0%, transparent 40%),
        rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(139, 94, 60, 0.18);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--coconut-brown);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 36px;
    color: var(--leaf-green);
}

.logo:hover {
    color: var(--gold-accent);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-smooth);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--leaf-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--leaf-green);
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i {
    font-size: 12px;
    margin-left: 5px;
    transition: var(--transition-smooth);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--ivory-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.dropdown-menu a:hover {
    background: var(--beige-bg);
    color: var(--leaf-green);
    padding-left: 30px;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    color: var(--leaf-green);
    transform: scale(1.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--coconut-brown);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

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

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

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

/* ===========================
   HERO BANNER - CAROUSEL SLIDER WITH ZOOM ANIMATIONS
   =========================== */

.hero-banner-parallax {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 180px 30px 100px;
}

/* Slider Container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
}

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

/* Zoom In Animation for Incoming Slide */
.hero-slide.zoom-in {
    animation: zoomInSlide 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes zoomInSlide {
    0% {
        opacity: 0;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Zoom Out Animation for Outgoing Slide */
.hero-slide.zoom-out {
    animation: zoomOutSlide 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

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

/* Slide Backgrounds */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-bg-1 {
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(60, 122, 60, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #FAF4E8 0%, #FFF9F3 50%, #F5EFE6 100%),
        url('https://images.unsplash.com/photo-1585217698138-a2a0746b0180?w=1920&q=80') center/cover;
    background-blend-mode: overlay, overlay, normal, normal;
}

.slide-bg-2 {
    background: 
        radial-gradient(circle at 70% 30%, rgba(60, 122, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(139, 94, 60, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #E8F5E9 0%, #FFF9F3 50%, #E0F2F1 100%),
        url('https://images.unsplash.com/photo-1605522324253-64f05abe7a2e?w=1920&q=80') center/cover;
    background-blend-mode: overlay, overlay, normal, normal;
}

.slide-bg-3 {
    background: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(0, 128, 128, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #FFF8E1 0%, #FFF9F3 50%, #F1F8E9 100%),
        url('https://images.unsplash.com/photo-1589464658409-6baeea00c07e?w=1920&q=80') center/cover;
    background-blend-mode: overlay, overlay, normal, normal;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(250, 244, 232, 0.3) 0%, rgba(255, 249, 243, 0.5) 100%);
    z-index: 2;
}

/* Animated Background Pattern for Slides */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='1' opacity='0.1'%3E%3Ccircle cx='40' cy='40' r='15'/%3E%3Cpath d='M40 10 Q50 25 40 40 Q30 25 40 10'/%3E%3Cpath d='M40 70 Q50 55 40 40 Q30 55 40 70'/%3E%3Cpath d='M10 40 Q25 30 40 40 Q25 50 10 40'/%3E%3Cpath d='M70 40 Q55 30 40 40 Q55 50 70 40'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    animation: movePattern 60s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    z-index: 3;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

/* Slider Navigation Arrows */
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 100;
    pointer-events: none;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--coconut-brown);
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: var(--gold-accent);
    color: white;
    border-color: var(--gold-accent);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.indicator {
    width: 50px;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: rgba(212, 175, 55, 0.3);
}

.indicator.active::before {
    width: 100%;
    animation: indicatorProgress 5s linear;
}

@keyframes indicatorProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Parallax Background Layers within Slides */
.hero-slide .parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-slide .layer-back {
    z-index: 4;
}

.hero-slide .layer-mid {
    z-index: 5;
}

/* Main Content within Slides */
.hero-slide .hero-parallax-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Content Animations for Active Slide */
.hero-slide.active .title-section,
.hero-slide.active .cta-stats-section {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-slide.active .title-line.line-1 {
    animation: slideInLeft 0.8s ease-out 0.5s backwards;
}

.hero-slide.active .title-line.line-2 {
    animation: slideInLeft 0.8s ease-out 0.7s backwards;
}

.hero-slide.active .title-line.line-3 {
    animation: slideInLeft 0.8s ease-out 0.9s backwards;
}

.hero-slide.active .parallax-subtitle {
    animation: fadeIn 1s ease-out 1.1s backwards;
}

.hero-slide.active .cta-buttons-group {
    animation: fadeInUp 1s ease-out 1.3s backwards;
}

.hero-slide.active .hero-stats-inline {
    animation: fadeInUp 1s ease-out 1.5s backwards;
}

/* Palm Leaf Decorations */
.palm-leaf {
    position: absolute;
    width: 400px;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1509233725247-49e657c54213?w=600&q=85') no-repeat center/contain;
    opacity: 0.15;
    filter: blur(2px);
    animation: floatLeaf 20s ease-in-out infinite;
}

.palm-leaf.left {
    top: -50px;
    left: -100px;
    transform: rotate(-20deg);
}

.palm-leaf.right {
    bottom: -80px;
    right: -120px;
    transform: rotate(15deg);
    animation-delay: 2s;
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0) rotate(-20deg);
    }
    50% {
        transform: translateY(-30px) rotate(-15deg);
    }
}

/* Background Coconut Patterns */
.bg-coconut-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('https://images.unsplash.com/photo-1585217698138-a2a0746b0180?w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.06;
    filter: blur(3px);
    animation: floatPattern 25s ease-in-out infinite;
}

.bg-pattern-1 {
    top: 15%;
    right: 15%;
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.bg-pattern-2 {
    bottom: 25%;
    left: 10%;
    width: 220px;
    height: 220px;
    animation-delay: 5s;
}

.bg-pattern-3 {
    top: 50%;
    right: 8%;
    width: 150px;
    height: 150px;
    animation-delay: 10s;
}

@keyframes floatPattern {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.06;
    }
    50% {
        transform: translateY(-40px) rotate(10deg) scale(1.1);
        opacity: 0.1;
    }
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: rotateCircle 30s linear infinite;
}

.circle-1 {
    top: 20%;
    left: 20%;
    width: 250px;
    height: 250px;
    border-style: dashed;
    animation-delay: 0s;
}

.circle-2 {
    bottom: 15%;
    right: 25%;
    width: 180px;
    height: 180px;
    border-color: rgba(60, 122, 60, 0.25);
    animation-delay: 5s;
    animation-direction: reverse;
}

.circle-3 {
    top: 60%;
    left: 15%;
    width: 150px;
    height: 150px;
    border-color: rgba(0, 128, 128, 0.2);
    border-style: dotted;
    animation-delay: 10s;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0) rotate(-20deg);
    }
    50% {
        transform: translateY(-30px) rotate(-15deg);
    }
}

/* Floating Coconut Images */
.floating-coconut {
    position: absolute;
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: floatCoconut 8s ease-in-out infinite;
}

.coconut-1 {
    top: 15%;
    left: 10%;
    background-image: url('https://images.unsplash.com/photo-1585217698138-a2a0746b0180?w=300&q=85');
    animation-delay: 0s;
}

.coconut-2 {
    top: 60%;
    right: 8%;
    background-image: url('https://images.unsplash.com/photo-1605522324253-64f05abe7a2e?w=300&q=85');
    animation-delay: 2s;
    width: 100px;
    height: 100px;
}

.coconut-3 {
    bottom: 20%;
    left: 12%;
    background-image: url('https://images.unsplash.com/photo-1589464658409-6baeea00c07e?w=300&q=85');
    animation-delay: 4s;
    width: 90px;
    height: 90px;
}

@keyframes floatCoconut {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) rotate(10deg);
    }
}

/* Main Content */
.hero-parallax-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
}

.content-wrapper {
    text-align: center;
}

/* Title Section */
.title-section {
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold-accent);
    border-radius: 50px;
    margin-bottom: 35px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

.badge-icon {
    color: var(--gold-accent);
    font-size: 16px;
    animation: rotate 4s linear infinite;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--coconut-brown);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Parallax Title - Stacked Lines */
.parallax-title {
    font-family: var(--font-heading);
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: 72px;
    font-weight: 800;
    color: var(--coconut-brown);
    letter-spacing: -2px;
    animation: slideInLeft 0.8s ease-out backwards;
}

.title-line.line-1 {
    font-size: 48px;
    font-weight: 400;
    color: var(--text-muted);
    animation-delay: 0.2s;
}

.title-line.line-2 {
    font-size: 82px;
    background: linear-gradient(135deg, var(--gold-accent), var(--coconut-brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation-delay: 0.4s;
    margin: 10px 0;
}

.title-line.line-2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    border-radius: 2px;
}

.title-line.line-3 {
    font-size: 52px;
    color: var(--leaf-green);
    animation-delay: 0.6s;
}

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

.parallax-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

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

/* Product Preview Grid - Interactive Cards */
.product-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 1s backwards;
}

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

.preview-card {
    position: relative;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.preview-card:hover::before {
    opacity: 0.9;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.preview-card:hover .card-image {
    transform: scale(1.15) rotate(2deg);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.preview-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-overlay p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gold-accent);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.preview-card:hover .view-more {
    opacity: 1;
    transform: translateX(0);
}

.view-more i {
    transition: transform 0.3s ease;
}

.preview-card:hover .view-more i {
    transform: translateX(5px);
}

/* CTA & Stats Section */
.cta-stats-section {
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: linear-gradient(135deg, var(--leaf-green), var(--teal-accent));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(60, 122, 60, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(60, 122, 60, 0.5);
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: transparent;
    color: var(--coconut-brown);
    border: 2px solid var(--coconut-brown);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: var(--coconut-brown);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 94, 60, 0.4);
}

/* Inline Stats */
.hero-stats-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 35px 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(139, 94, 60, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(139, 94, 60, 0.3), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeIn 1s ease-out 2s backwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--coconut-brown);
    border-radius: 20px;
    position: relative;
    opacity: 0.7;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--coconut-brown);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-indicator p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Decorative Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    bottom: 50%;
    right: 15%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-60px) scale(1.5);
        opacity: 0.8;
    }
}

/* ===========================
   EXPERIENCE SECTION
   =========================== */

.experience-section {
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?q=80&w=2070') center center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109, 60, 23, 0.85);
    pointer-events: none;
}

.experience-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.year-number {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 800;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(212, 175, 55, 0.2);
}

.experience-text {
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.experience-tagline {
    font-size: 18px;
    color: #F5EFE6;
    font-style: italic;
    font-weight: 300;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
    padding: var(--section-padding);
    background: var(--ivory-bg);
    position: relative;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--coconut-brown);
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--leaf-green));
    margin-bottom: 30px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: justify;
}

.contact-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--leaf-green), var(--teal-accent));
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.contact-callout i {
    font-size: 32px;
}

.callout-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.callout-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.btn-secondary {
    padding: 15px 40px;
    background: transparent;
    color: var(--coconut-brown);
    border: 2px solid var(--coconut-brown);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 20px;
}

.btn-secondary:hover {
    background: var(--coconut-brown);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 94, 60, 0.3);
}

/* Mission & Vision Boxes */
.about-right-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0;
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, rgba(255, 249, 243, 0.8), rgba(250, 244, 232, 0.9));
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--coconut-brown);
}

.mission-box h3,
.vision-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--coconut-brown);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-box h3 i,
.vision-box h3 i {
    color: var(--gold);
    font-size: 24px;
}

.mission-box p,
.vision-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

/* About Subtitle */
.about-subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--coconut-brown);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

/* Shelf Life List */
.shelf-life-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.shelf-life-list li {
    background: linear-gradient(135deg, rgba(60, 122, 60, 0.05), rgba(139, 94, 60, 0.05));
    border-left: 4px solid var(--leaf-green);
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    transition: all 0.3s ease;
}

.shelf-life-list li:hover {
    background: linear-gradient(135deg, rgba(60, 122, 60, 0.1), rgba(139, 94, 60, 0.1));
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shelf-life-list li strong {
    color: var(--coconut-brown);
    font-weight: 600;
}

/* About Image */
.about-image {
    position: relative;
    height: 500px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.founder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 94, 60, 0.4), rgba(112, 75, 48, 0.4)),
                url('image.png') center/cover;
    background-size: cover;
    background-position: center;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px;
    text-align: center;
}

.image-caption h4 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 5px;
}

.image-caption p {
    font-size: 16px;
    opacity: 0.9;
}

/* Decorative Leaves */
.decorative-leaf {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--leaf-green), var(--leaf-green-dark));
    border-radius: 50% 0;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 {
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.leaf-2 {
    bottom: -30px;
    left: -30px;
    transform: rotate(180deg);
    animation-delay: 3s;
}

/* ===========================
   FEATURES SECTION
   =========================== */

.features-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: var(--beige-bg);
}

/* Parallax Background Layers */
.features-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.features-parallax-bg .parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.parallax-layer-1 {
    background-image: url('https://images.unsplash.com/photo-1587486937003-68f691b0ff13?w=1600&q=80');
    transform: translateZ(0);
    opacity: 0.15;
}

.parallax-layer-2 {
    background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1600&q=80');
    transform: translateZ(0) scale(1.1);
    opacity: 0.1;
}

.parallax-layer-3 {
    background: radial-gradient(circle at 30% 50%, rgba(60, 122, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(250, 244, 232, 0.85) 0%, 
        rgba(255, 249, 243, 0.9) 50%, 
        rgba(250, 244, 232, 0.85) 100%);
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Flip Card Container */
.feature-card-flip {
    background: transparent;
    perspective: 1000px;
    height: 300px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.feature-card-flip:hover .flip-card-inner,
.feature-card-flip.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front and Back Faces */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Front Face */
.flip-card-front {
    background: white;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.feature-card-flip:hover .flip-card-front {
    border-color: var(--gold-accent);
}

.flip-card-front .feature-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--leaf-green), var(--teal-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(60, 122, 60, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(60, 122, 60, 0);
    }
}

.flip-card-front h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--coconut-brown);
    margin: 0;
    font-weight: 700;
}

/* Back Face */
.flip-card-back {
    background: linear-gradient(135deg, var(--gold-accent), var(--coconut-brown));
    color: white;
    transform: rotateY(180deg);
    padding: 40px 30px;
}

.flip-card-back h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.flip-card-back p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Legacy feature-card styles (keeping for compatibility) */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 94, 60, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--leaf-green), var(--teal-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gold-accent), var(--coconut-brown));
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--coconut-brown);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ===========================
   PRODUCTS SECTION
   =========================== */

/* Products Section - Premium Tropical Design */
.products-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--ivory-bg) 0%, var(--beige-bg) 100%);
    position: relative;
    overflow: hidden;
}

.products-luxury-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.luxury-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(139, 94, 60, 0.1) 35px, rgba(139, 94, 60, 0.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(60, 122, 60, 0.1) 35px, rgba(60, 122, 60, 0.1) 70px);
}

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

.luxury-badge {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, rgba(60, 122, 60, 0.15), rgba(139, 94, 60, 0.15));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--coconut-brown);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.luxury-title {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--coconut-brown);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.ornament-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.title-ornament i {
    color: var(--gold-accent);
    font-size: 18px;
    animation: gemRotate 4s linear infinite;
}

@keyframes gemRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

.luxury-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Luxury Products Grid */
.products-luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.luxury-product-card {
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
}

.luxury-product-card:nth-child(1) { animation-delay: 0.1s; }
.luxury-product-card:nth-child(2) { animation-delay: 0.2s; }
.luxury-product-card:nth-child(3) { animation-delay: 0.3s; }
.luxury-product-card:nth-child(4) { animation-delay: 0.4s; }
.luxury-product-card:nth-child(5) { animation-delay: 0.5s; }
.luxury-product-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxury-card-inner {
    background: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 94, 60, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.luxury-product-card:hover .luxury-card-inner {
    border-color: var(--gold-accent);
    box-shadow: 
        0 20px 60px rgba(139, 94, 60, 0.2),
        0 0 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-10px);
}

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

/* Product Image Section */
.product-luxury-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-luxury-image.fully-husked {
    background: linear-gradient(135deg, rgba(60, 122, 60, 0.2), rgba(139, 94, 60, 0.2)),
                url('https://www.ariyancorp.com/wp-content/uploads/2021/03/Virgin-Coconut-Oil.jpg') center/cover;
}

.product-luxury-image.semi-husked {
    background: linear-gradient(135deg, rgba(139, 94, 60, 0.2), rgba(101, 67, 33, 0.2)),
                url('https://5.imimg.com/data5/SELLER/Default/2022/9/UK/TJ/JW/45117192/semi-husk-coconut-1000x1000.jpg') center/cover;
}

.product-luxury-image.copra {
    background: linear-gradient(135deg, rgba(210, 180, 140, 0.3), rgba(139, 94, 60, 0.2)),
                url('https://5.imimg.com/data5/SELLER/Default/2023/3/EL/HG/TJ/186044665/sun-dried-coconut-copra-500x500.png') center/cover;
}

.product-luxury-image.coconut-oil {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(255, 215, 0, 0.2)),
                url('https://img3.exportersindia.com/product_images/bc-full/2022/8/6321148/semi-husked-coconut-1659505802-6475115.jpeg') center/cover;
}

.product-luxury-image.coco-peat {
    background: linear-gradient(135deg, rgba(101, 67, 33, 0.2), rgba(139, 94, 60, 0.2)),
                url('https://img1.exportersindia.com/product_images/bc-full/2025/2/14148101/coco-peat-powder-1739600483-7867413.jpeg') center/cover;
}

.product-luxury-image.coconut-shell {
    background: linear-gradient(135deg, rgba(60, 30, 0, 0.2), rgba(101, 67, 33, 0.2)),
                url('https://img.lazcdn.com/g/p/cad28f1e40f7273691516aa8b30d9ba9.jpg_720x720q80.jpg') center/cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 249, 243, 0.7) 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.luxury-product-card:hover .image-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(255, 249, 243, 0.5) 100%);
}

.hover-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 3;
}

.luxury-product-card:hover .hover-shine {
    left: 150%;
}

.luxury-badge-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--leaf-green), #2d5a2d);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(60, 122, 60, 0.4);
}

.luxury-badge-corner.gold {
    background: linear-gradient(135deg, var(--gold-accent), #B8860B);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.luxury-badge-corner.premium {
    background: linear-gradient(135deg, #8B5E3C, #6d4c2a);
    box-shadow: 0 8px 25px rgba(139, 94, 60, 0.4);
}

.luxury-badge-corner.exclusive {
    background: linear-gradient(135deg, #008080, #006666);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.4);
}

.luxury-badge-corner.eco {
    background: linear-gradient(135deg, #3C7A3C, #2d5a2d);
    box-shadow: 0 8px 25px rgba(60, 122, 60, 0.4);
}

.luxury-badge-corner.sustainable {
    background: linear-gradient(135deg, #D4AF37, #C5A028);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Product Content */
.luxury-product-content {
    padding: 40px;
    position: relative;
}

.product-number {
    position: absolute;
    top: -30px;
    right: 40px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.08);
    font-family: var(--font-heading);
    line-height: 1;
    pointer-events: none;
}

.luxury-product-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--coconut-brown);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.luxury-product-card:hover .luxury-product-title {
    color: var(--leaf-green);
}

.luxury-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
    margin-bottom: 20px;
    transition: width 0.4s ease;
}

.luxury-product-card:hover .luxury-divider {
    width: 120px;
}

.luxury-product-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.luxury-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: var(--coconut-brown);
    transition: all 0.3s ease;
}

.feature-tag i {
    color: var(--leaf-green);
    font-size: 10px;
}

.luxury-product-card:hover .feature-tag {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.luxury-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--leaf-green), #2d5a2d);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.luxury-btn:hover::before {
    width: 300px;
    height: 300px;
}

.luxury-btn:hover {
    background: linear-gradient(135deg, var(--gold-accent), #B8860B);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    gap: 18px;
}

.luxury-btn span,
.luxury-btn i {
    position: relative;
    z-index: 1;
}

/* Luxury CTA Section */
.luxury-cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
    background: white;
    border: 2px solid var(--gold-accent);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(139, 94, 60, 0.15);
    position: relative;
    overflow: hidden;
}

.luxury-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: ctaGlow 8s linear infinite;
}

@keyframes ctaGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.luxury-cta-content {
    position: relative;
    z-index: 1;
}

.luxury-cta-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--coconut-brown);
    margin-bottom: 10px;
}

.luxury-cta-content p {
    font-size: 16px;
    color: var(--text-muted);
}

.luxury-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--coconut-brown);
    color: white;
    border: 2px solid var(--coconut-brown);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.luxury-brochure-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 94, 60, 0.4);
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--coconut-brown);
}

.luxury-brochure-btn:hover .btn-shimmer {
    left: 100%;
}

.luxury-brochure-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.luxury-brochure-btn:hover i {
    transform: translateY(-2px);
}

/* ===========================
   GALLERY SECTION
   =========================== */

.gallery-section {
    padding: var(--section-padding);
    background: var(--ivory-bg);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(60, 122, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Gallery Grid - Premium Masonry Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Different sizes for collage effect */
.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Gallery Image */
.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(60, 122, 60, 0.85) 0%,
        rgba(139, 94, 60, 0.85) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Content */
.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: iconBounce 0.6s ease backwards;
}

.gallery-item:hover .gallery-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.gallery-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    animation: slideUp 0.5s ease 0.1s backwards;
}

.gallery-item:hover .gallery-content h3 {
    animation: slideUp 0.5s ease;
}

.gallery-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    animation: slideUp 0.5s ease 0.2s backwards;
}

.gallery-item:hover .gallery-content p {
    animation: slideUp 0.5s ease 0.1s;
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Gallery Item Hover Effects - Add subtle shadow and lift */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: border-color 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 94, 60, 0.3);
}

.gallery-item:hover::before {
    border-color: var(--gold-accent);
}

/* Staggered Animation on Load */
.gallery-item:nth-child(1) { animation: fadeInScale 0.6s ease 0.1s backwards; }
.gallery-item:nth-child(2) { animation: fadeInScale 0.6s ease 0.2s backwards; }
.gallery-item:nth-child(3) { animation: fadeInScale 0.6s ease 0.3s backwards; }
.gallery-item:nth-child(4) { animation: fadeInScale 0.6s ease 0.4s backwards; }
.gallery-item:nth-child(5) { animation: fadeInScale 0.6s ease 0.5s backwards; }
.gallery-item:nth-child(6) { animation: fadeInScale 0.6s ease 0.6s backwards; }
.gallery-item:nth-child(7) { animation: fadeInScale 0.6s ease 0.7s backwards; }
.gallery-item:nth-child(8) { animation: fadeInScale 0.6s ease 0.8s backwards; }
.gallery-item:nth-child(9) { animation: fadeInScale 0.6s ease 0.9s backwards; }
.gallery-item:nth-child(10) { animation: fadeInScale 0.6s ease 1s backwards; }

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

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(139, 94, 60, 0.1);
}

.gallery-cta p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--leaf-green), #2d5a2d);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-gallery::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-gallery:hover::before {
    width: 400px;
    height: 400px;
}

.btn-gallery:hover {
    background: linear-gradient(135deg, var(--gold-accent), #B8860B);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    gap: 20px;
}

.btn-gallery span,
.btn-gallery i {
    position: relative;
    z-index: 1;
}

/* ===========================
   BLOG SECTION
   =========================== */

.blog-section {
    padding: var(--section-padding);
    background: var(--beige-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 94, 60, 0.2);
}

.blog-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-img-1 {
    background: linear-gradient(135deg, rgba(60, 122, 60, 0.6), rgba(45, 90, 45, 0.6)),
                url('https://5.imimg.com/data5/SELLER/Default/2022/1/EG/ME/NA/44957361/fresh-husked-coconut-1000x1000.jpg') center/cover;
}

.blog-img-2 {
    background: linear-gradient(135deg, rgba(139, 94, 60, 0.6), rgba(112, 75, 48, 0.6)),
                url('https://th.bing.com/th/id/R.a3b0f10533a1b0585bc97d9ac49a8860?rik=VMxuQ4C6%2biOl5Q&riu=http%3a%2f%2fwww.ninasoap.com%2fwp-content%2fuploads%2f2014%2f12%2fCoconut-Tree.jpg&ehk=Gb%2bKUjZU8kRKnCGuDfWo2TFXvd6dN9UEkcCZxoaj5NM%3d&risl=&pid=ImgRaw&r=0') center/cover;
}

.blog-img-3 {
    background: linear-gradient(135deg, rgba(60, 122, 60, 0.6), rgba(45, 90, 45, 0.6)),
                url('https://img.freepik.com/free-photo/raw-coconut-tree-farm_41722-243.jpg?w=2000') center/cover;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 5px;
    color: var(--leaf-green);
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--coconut-brown);
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--leaf-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.blog-read-more:hover {
    color: var(--gold-accent);
    gap: 15px;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #D7CCC8 0%, var(--beige-bg) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.section-title.light {
    color: var(--coconut-brown);
}

.contact-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--leaf-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--coconut-brown);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--leaf-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 18px 50px;
    background: var(--leaf-green);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--dark-brown);
    color: var(--beige-bg);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold-accent);
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--beige-bg);
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    font-size: 40px;
    color: var(--leaf-green);
}

.footer-tagline {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--beige-bg);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-accent);
    padding-left: 5px;
}

/* Newsletter Form */
.newsletter-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px 0 0 50px;
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--gold-accent);
    border: none;
    border-radius: 0 50px 50px 0;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--leaf-green);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige-bg);
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-credit {
    color: var(--gold-accent);
}

.footer-credit i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ===========================
   SCROLL TO TOP BUTTON
   =========================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: var(--gold-accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--coconut-brown);
    transform: translateY(-5px);
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* AOS Animation Attributes */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===========================
   FLOATING CONTACT BUTTONS
   =========================== */

.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.contact-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: floatPulse 2s infinite;
}

.contact-float:hover {
    transform: scale(1.1);
    text-decoration: none;
}

/* Email Button */
.email-float {
    background: linear-gradient(135deg, #D14836, #B23121);
    box-shadow: 0 6px 20px rgba(209, 72, 54, 0.25);
}

.email-float:hover {
    box-shadow: 0 10px 30px rgba(209, 72, 54, 0.4);
    background: linear-gradient(135deg, #B23121, #D14836);
}

/* Phone Button */
.phone-float {
    background: linear-gradient(135deg, #3B78E7, #2A5FCE);
    box-shadow: 0 6px 20px rgba(59, 120, 231, 0.25);
}

.phone-float:hover {
    box-shadow: 0 10px 30px rgba(59, 120, 231, 0.4);
    background: linear-gradient(135deg, #2A5FCE, #3B78E7);
}

.phone-float i {
    animation: phoneRing 1.5s ease-in-out infinite;
}

/* WhatsApp Button */
.whatsapp-float {
    background: linear-gradient(135deg, #1EBE5D, #0F7D47);
    box-shadow: 0 6px 20px rgba(30, 190, 93, 0.25);
}

.whatsapp-float:hover {
    box-shadow: 0 10px 30px rgba(30, 190, 93, 0.4);
    background: linear-gradient(135deg, #0F7D47, #1EBE5D);
}

.whatsapp-float i {
    animation: whatsappRing 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

@keyframes whatsappRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1200px) {
    .parallax-title .title-line.line-2 {
        font-size: 72px;
    }
    
    .product-preview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .preview-card {
        height: 300px;
    }
    
    .products-luxury-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .luxury-title {
        font-size: 38px;
    }
    
    .luxury-cta-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 30px;
    }
    
    .luxury-cta-content h3 {
        font-size: 26px;
    }
    
    /* Gallery Grid - Tablet */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .gallery-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-medium {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--ivory-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 25px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: var(--beige-bg);
        margin-top: 10px;
    }
    
    /* Slider Navigation Responsive */
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .slider-navigation {
        padding: 0 20px;
    }
    
    .slider-indicators {
        bottom: 30px;
        gap: 10px;
    }
    
    .indicator {
        width: 40px;
        height: 4px;
    }
    
    /* Hero Banner Parallax Responsive */
    .parallax-title .title-line.line-1 {
        font-size: 38px;
    }
    
    .parallax-title .title-line.line-2 {
        font-size: 62px;
    }
    
    .parallax-title .title-line.line-3 {
        font-size: 42px;
    }
    
    .product-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .preview-card {
        height: 320px;
    }
    
    .floating-coconut {
        width: 80px;
        height: 80px;
    }
    
    .coconut-2,
    .coconut-3 {
        width: 70px;
        height: 70px;
    }
    
    .hero-stats-inline {
        flex-wrap: wrap;
        gap: 25px;
        padding: 25px 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-mission-vision {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-luxury-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner-parallax {
        padding: 120px 20px 80px;
    }
    
    /* Slider Controls Responsive */
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .slider-navigation {
        padding: 0 15px;
    }
    
    .slider-indicators {
        bottom: 25px;
        gap: 8px;
    }
    
    .indicator {
        width: 30px;
        height: 3px;
    }
    
    .parallax-title .title-line.line-1 {
        font-size: 28px;
    }
    
    .parallax-title .title-line.line-2 {
        font-size: 48px;
    }
    
    .parallax-title .title-line.line-3 {
        font-size: 32px;
    }
    
    .parallax-subtitle {
        font-size: 16px;
    }
    
    /* Hide some decorative elements on tablet */
    .bg-pattern-3,
    .circle-3 {
        display: none;
    }
    
    .bg-coconut-pattern {
        width: 150px;
        height: 150px;
    }
    
    .decorative-circle {
        width: 150px !important;
        height: 150px !important;
    }
    
    .preview-card {
        height: 280px;
    }
    
    .card-overlay h3 {
        font-size: 22px;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-inline {
        flex-direction: column;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .floating-coconut {
        width: 60px;
        height: 60px;
    }
    
    .coconut-2,
    .coconut-3 {
        width: 50px;
        height: 50px;
    }
    
    .palm-leaf {
        width: 250px;
        height: 350px;
    }
    
    .experience-number {
        font-size: 80px;
    }
    
    .experience-text {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .products-luxury-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card-flip {
        height: 280px;
    }
    
    .flip-card-front .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 34px;
    }
    
    .flip-card-front h3 {
        font-size: 22px;
    }
    
    .flip-card-back h3 {
        font-size: 20px;
    }
    
    .flip-card-back p {
        font-size: 14px;
    }
    
    .products-luxury-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .luxury-title {
        font-size: 32px;
    }
    
    .luxury-product-content {
        padding: 30px;
    }
    
    .product-number {
        font-size: 70px;
        top: -20px;
        right: 30px;
    }
    
    .luxury-product-title {
        font-size: 24px;
    }
    
    .luxury-btn {
        padding: 12px 28px;
        font-size: 13px;
    }
    
    .luxury-cta-section {
        padding: 35px 25px;
    }
    
    .luxury-cta-content h3 {
        font-size: 22px;
    }
    
    .luxury-cta-content p {
        font-size: 14px;
    }
    
    .luxury-brochure-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    /* Floating Contact Buttons - Mobile */
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .contact-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
        bottom: 20px;
        left: 20px;
    }
    
    /* Gallery Grid - Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 15px;
    }
    
    .gallery-large,
    .gallery-medium,
    .gallery-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-content h3 {
        font-size: 20px;
    }
    
    .gallery-content p {
        font-size: 13px;
    }
    
    .gallery-cta {
        padding: 35px 25px;
    }
    
    .gallery-cta p {
        font-size: 16px;
    }
    
    .btn-gallery {
        padding: 15px 35px;
        font-size: 14px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo i {
        font-size: 28px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .hero-banner-parallax {
        padding: 120px 15px 60px;
    }
    
    /* Slider Controls Mobile */
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-navigation {
        padding: 0 10px;
    }
    
    .slider-indicators {
        bottom: 20px;
        gap: 6px;
    }
    
    .indicator {
        width: 25px;
        height: 3px;
    }
    
    /* Hide most decorative elements on mobile */
    .bg-coconut-pattern,
    .decorative-circle,
    .circle-1,
    .circle-2 {
        display: none;
    }
    
    .hero-banner-parallax::before {
        opacity: 0.2;
    }
    
    .title-section {
        margin-bottom: 40px;
    }
    
    .premium-badge {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .badge-text {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .parallax-title .title-line.line-1 {
        font-size: 24px;
    }
    
    .parallax-title .title-line.line-2 {
        font-size: 38px;
    }
    
    .parallax-title .title-line.line-3 {
        font-size: 26px;
    }
    
    .parallax-subtitle {
        font-size: 14px;
    }
    
    .product-preview-grid {
        gap: 15px;
    }
    
    .preview-card {
        height: 250px;
    }
    
    .card-overlay {
        padding: 20px;
    }
    
    .card-overlay h3 {
        font-size: 20px;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 16px 35px;
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .floating-coconut {
        display: none;
    }
    
    .palm-leaf {
        width: 200px;
        height: 250px;
        opacity: 0.08;
    }
    
    .section-title {
        font-size: 28px;
    }
}