@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Coco-Luxe Palette */
    --primary: #064e3b;
    /* Deep Emerald */
    --primary-light: #065f46;
    --accent: #84cc16;
    /* Vibrant Lime */
    --gold: #d4af37;
    /* Luxury Gold */
    --background: #fdfbf7;
    /* Warm Cream */
    --surface: #ffffff;
    --text-main: #022c22;
    /* Almost Black Green */
    --text-muted: #374151;

    --glass: rgba(255, 255, 255, 0.9);
    --border-color: rgba(6, 78, 59, 0.1);

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.1;
}

.container {
    max-width: 1300px;
    /* Wider container for editorial look */
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    /* Reduced padding slightly as content is taller */
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

/* Corrected Selector: Target the class .nav, not the tag nav */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    /* Increased height for larger logo */
    width: 100%;
}

.logo img {
    height: 85px;
    /* Increased from 50px to 85px */
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 70px;
    /* Slightly smaller on scroll for compactness */
}

/* Modern Pill Navigation */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
    /* Tighter gap for pill background */
    margin: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.nav-links li {
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-links a::after {
    display: none;
    /* Remove old underline */
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.header-phone:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

/* Hero Section - Multi-Layer Composition */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    /* Account for fixed header */
    padding-bottom: 60px;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 1) 0%, rgba(245, 250, 245, 1) 90%);
}

/* Background Texture / Abstract Shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 10s infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(6, 78, 59, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.hero-content {
    padding-right: 20px;
    /* Adjusted padding */
}



/* Hero Visuals - Transformation Theme */
.hero-visuals {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Origin Element (Tree/Nature) - Background Left */
.hero-origin-tree {
    position: absolute;
    top: 5%;
    left: -10%;
    width: 300px;
    opacity: 0.6;
    filter: blur(1px);
    z-index: 5;
    animation: floatOrigin 10s ease-in-out infinite;
}

/* Main Element (Premium Cut) - Center Foreground */
.hero-premium-wrapper {
    position: relative;
    z-index: 20;
    width: 380px;
    animation: floatMain 6s ease-in-out infinite;
    transform-origin: center bottom;
}

.hero-premium-cut {
    width: 100%;
    border-radius: 40px;
    border: 6px solid rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 40px 80px rgba(6, 78, 59, 0.4));
}



/* Experience Card (Happy Moments) - Floating Right */
.hero-card-joy {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 240px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 15;
    transform: rotate(6deg);
    border: 5px solid rgba(255, 255, 255, 0.9);
    animation: floatCardRight 8s ease-in-out infinite 1s;
    background: #fff;
}

.hero-card-joy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge/Tag for Premium Cut */
.hero-premium-badge {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 25;
}

/* Floating Tags Styling */
.floating-tag {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    z-index: 30;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.floating-tag i {
    color: var(--accent);
    font-size: 0.85rem;
}

.floating-tag .stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: 2px;
}

.floating-tag .stars i {
    color: var(--gold);
    font-size: 0.7rem;
}

.tag-1 {
    top: 25%;
    left: 10%;
    animation: floatTag1 5s ease-in-out infinite;
    flex-direction: row;
    gap: 8px;
}

.tag-2 {
    top: 50%;
    left: 0%;
    animation: floatTag2 7s ease-in-out infinite 0.5s;
    flex-direction: row;
    gap: 8px;
}

.tag-3 {
    bottom: 22%;
    right: 5%;
    animation: floatTag3 6s ease-in-out infinite 1s;
    text-align: center;
}

@keyframes floatTag1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5px, -15px);
    }
}

@keyframes floatTag2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-8px, 12px);
    }
}

@keyframes floatTag3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}

/* Animations */
@keyframes floatOrigin {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(15px) rotate(-2deg);
    }
}

@keyframes floatMain {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

@keyframes floatCardRight {

    0%,
    100% {
        transform: translateY(0) rotate(6deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

.hero-card-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Circle Line */
.hero-circle-accent {
    position: absolute;
    width: 550px;
    height: 550px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: rotateSlow 60s linear infinite;
}



@keyframes rotateSlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    /* Subtle Gold Bg */
    color: var(--gold);
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero h1 {
    font-size: 4.5rem;
    /* Large Headline */
    line-height: 1.1;
    font-weight: 400;
    /* Editorial Style */
    color: var(--primary);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero h1 span {
    font-style: italic;
    color: var(--accent);
    position: relative;
    display: block;
    /* Ensure it blocks properly in this new layout */
}

/* Break to new line for impact if needed, or inline */
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 24px;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    /* Full pill */
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Subtle lift */
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.5);
    /* Glassy button */
    border: 1px solid var(--border-color);
    color: var(--primary);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: #ffffff;
    border-color: var(--primary);
}

.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 120%;
    /* Break out of container */
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(6, 78, 59, 0.25));
    animation: float 8s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(1deg);
    }
}

/* Trust Bar - Stats Section */
.trust-bar-wrapper {
    position: relative;
    z-index: 100;
    margin-top: -60px;
    /* Overlap hero */
    margin-bottom: 20px;
}

.trust-bar {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.1);
    border: 1px solid rgba(132, 204, 22, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item i {
    font-size: 1.50rem;
    color: var(--accent);
    background: rgba(132, 204, 22, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-count {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .trust-bar {
        padding: 25px;
        gap: 15px;
    }

    .stat-count {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .trust-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .stat-item:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .trust-bar-wrapper {
        margin-top: -40px;
    }

    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .stat-item {
        border-right: none;
    }
}

/* Sections */
section {
    padding: 140px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 80px;
}

/* Features - Modern Glass Cards */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0;
}

@media (max-width: 1100px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: #ffffff;
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(6, 78, 59, 0.1);
    border-color: rgba(6, 78, 59, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        10px 10px 20px rgba(0, 0, 0, 0.05),
        -5px -5px 15px rgba(255, 255, 255, 0.8),
        inset 2px 2px 5px rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 4px 6px rgba(6, 78, 59, 0.15));
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent);
    filter: blur(25px);
    opacity: 0.15;
    z-index: -1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.feature-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.delivery-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.8;
}

.delivery-info strong {
    color: var(--primary);
}

/* Showcase - Editorial Grid */
.showcase-section {
    background: #ffffff;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns as requested */
    gap: 30px;
}

.photo-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 78, 59, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay span {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    border-bottom: 2px solid var(--accent);
}

/* Lead Form - Premium Redesign */
.lead-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #022c22 100%),
        url('../images/pattern.png');
    background-blend-mode: overlay;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.lead-form-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.1;
    top: -50px;
    right: -50px;
}

.lead-form.glass-morphism {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 50px;
    max-width: 850px;
    margin: 40px auto 0;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.form-header i {
    font-size: 1.8rem;
    color: var(--accent);
}

.form-header span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.form-timestamp {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group.full-width {
    grid-column: span 2;
}

.lead-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.lead-form .form-group label i {
    color: var(--accent);
    font-size: 0.9rem;
}

.lead-form .form-group input,
.lead-form .form-group textarea {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-main);
    width: 100%;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.lead-form .form-group input:focus,
.lead-form .form-group textarea:focus {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.1);
    outline: none;
}

/* Remove number input spinners */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=text] {
    -moz-appearance: textfield;
}

.premium-btn {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%) !important;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.2);
    color: white !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.premium-btn span,
.premium-btn i {
    color: white !important;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.3);
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .form-group.full-width {
        grid-column: span 2;
    }

    .lead-form.glass-morphism {
        padding: 40px 15px;
        max-width: 100%;
        margin: 20px 0 0;
    }

    .lead-form .form-group label {
        font-size: 0.85rem;
        margin-bottom: 8px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .lead-form-section {
        padding: 80px 0 100px;
    }

    .form-header {
        margin-bottom: 30px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .form-header span {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
        padding: 0 15px;
    }

    .premium-btn {
        padding: 18px;
        font-size: 1.05rem;
    }

    /* Hide overlapping elements on mobile */
    .wa-cta-bubble,
    .wa-tooltip {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .form-grid {
        gap: 10px;
    }

    .lead-form .form-group input,
    .lead-form .form-group textarea {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

/* --- Modern Professional Footer --- */
.main-footer {
    background: #022c22;
    /* Very dark green */
    color: #e2e8f0;
    /* Soft white */
    padding: 80px 0 30px;
    font-size: 0.95rem;
    border-top: 5px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    /* Brand column wider */
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
    object-fit: contain;
    opacity: 1;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.footer-tagline {
    color: #94a3b8;
    /* Muted slate */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-col h4 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
}

.contact-list i {
    color: var(--accent);
    font-size: 1rem;
}

/* Footer Socials Redesign */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials a i {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", sans-serif !important;
    font-weight: 400 !important;
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--primary);
    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;
    font-size: 0.85rem;
    color: #64748b;
}

/* WhatsApp Fix */
.whatsapp-float {
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    /* Ensure it stays above footer */
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 25px;
        display: block;
    }

    .footer-tagline {
        margin: 0 auto 30px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-col ul li a:hover {
        transform: translateX(0);
        /* Disable shift on mobile */
    }
}

/* Header Fixes */
header {
    height: 80px;
    /* Enforce stable height */
    overflow: visible;
    /* Ensure nothing is hidden */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    flex-wrap: nowrap;
    /* Prevent wrapping causing double lines */
}

.nav-links {
    gap: 32px;
    /* Reduce gap slightly to fit better */
}

.header-actions {
    gap: 20px;
    flex-shrink: 0;
    /* Prevent crushing */
}

/* Hero Fixes */
.hero {
    padding-top: 120px;
    /* More clearance for the header */
}

.hero-image {
    /* Soften edges without masking: just a nice shadow and maybe a subtle border radius if it's rectangular */
    border-radius: 30px;
    /* Or if it's a transparent PNG coconut tree, no border radius needed, but ensure object-fit containing */
    object-fit: contain;
    /* Increase drop shadow for depth */
    filter: drop-shadow(0 40px 80px rgba(6, 78, 59, 0.4));
}

/* Features Grid Fix */
.features {
    display: grid;
    /* Ensure it doesn't collapse to 1 column on desktop */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    width: 100%;
}

.feature-card {
    /* Reinforce Glassmorphism */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Footer Fixes */
.footer-socials a {
    color: var(--surface);
    /* Make white */
    background: rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: var(--accent);
    /* Lime green on hover */
    color: var(--primary-dark);
}

/* WhatsApp Fix */
.whatsapp-float {
    bottom: 40px;
    /* Lift up slightly */
    right: 40px;
    /* Move in slightly */
    z-index: 9999;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header-actions {
        display: none;
    }

    /* consider keeping if space permits, or hide for now */

    /* Ensure Header & Logo remain visible */
    header .container {
        justify-content: center;
        /* Center logo on mobile */
    }

    .hero h1 {
        font-size: 3rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    /* Remove old border hacks, keep cards as boxes */
    .feature-card {
        border: 1px solid rgba(255, 255, 255, 0.8);
    }
}

/* Animations Helpers */
.animate-fade-up {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.animate-fade-down {
    opacity: 0;
    animation: fadeDown 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 0.2s;
}

.delay-200 {
    animation-delay: 0.4s;
}

.delay-300 {
    animation-delay: 0.6s;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
}

/* Benefits Section */
.benefits-section {
    padding: 140px 0;
    background: #fdfbf7;
    overflow: hidden;
}

.trust-indicator {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(6, 78, 59, 0.1);
}

.trust-indicator p {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.trust-indicator i {
    color: var(--accent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(132, 204, 22, 0.3);
}

.benefit-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.benefit-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.benefits-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-circle-gradient {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.benefit-img {
    width: 100%;
    max-width: 450px;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(6, 78, 59, 0.2));
    animation: floatSlow 8s ease-in-out infinite;
}

.floating-benefit-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 3;
    font-weight: 700;
    color: var(--primary);
}

.floating-benefit-card i {
    color: var(--accent);
    font-size: 1.2rem;
}

.fb-1 {
    top: 15%;
    right: 0%;
    animation: floatBenefit 6s ease-in-out infinite;
}

.fb-2 {
    bottom: 20%;
    left: -5%;
    animation: floatBenefit 7s ease-in-out infinite 1s;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatBenefit {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-visual {
        order: -1;
    }
}

/* Attractive Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float i {
    font-size: 34px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #075e54;
    padding: 10px 18px;
    border-radius: 50px 50px 0 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s ease;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.wa-status-pill {
    position: absolute;
    top: -12px;
    right: -12px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: statusSlide 0.5s ease backwards;
    backdrop-filter: blur(4px);
}

.wa-status-dot {
    width: 7px;
    height: 7px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes statusSlide {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.wa-cta-bubble {
    position: absolute;
    right: 85px;
    background: #022c22;
    color: white;
    padding: 12px 18px;
    border-radius: 18px 18px 0 18px;
    font-size: 0.9rem;
    font-weight: 500;
    pointer-events: none;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    animation: chatBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards 3s;
}

.wa-cta-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 10px solid #022c22;
    border-top: 10px solid transparent;
}

@keyframes chatBounce {
    0% {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* How It Works Section */
.how-it-works-section {
    background: #fdfbf7;
    background-image:
        radial-gradient(at 0% 100%, rgba(132, 204, 22, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(6, 78, 59, 0.05) 0px, transparent 50%);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.workflow-step {
    padding: 30px;
    background: #fff;
    border-radius: 24px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08);
}

.step-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(132, 204, 22, 0.1);
    font-weight: 800;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
}

.workflow-step h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.workflow-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

.faq-item h4 i {
    color: var(--accent);
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    padding: 12px;
    display: none;
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.sticky-btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.sticky-btn.wa {
    background: #25d366;
    color: #fff;
}

.sticky-btn.order {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 992px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .workflow-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .mobile-sticky-cta {
        display: grid;
    }

    .whatsapp-float {
        bottom: 90px;
    }

    .lead-form-section {
        padding-bottom: 120px;
        /* Space for sticky bar */
    }
}

/* Success & Error Alert Messages */
.alert-success,
.alert-error {
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #bef264;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.alert-success i {
    font-size: 3rem;
    color: #16a34a;
    background: #dcfce7;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.alert-error i {
    font-size: 3rem;
    color: #dc2626;
    background: #fee2e2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: errorShake 0.5s ease-in-out;
}

/* Success Message Heading */
.alert-success .success-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #064e3b;
    margin: 0;
}

/* Success Message Body */
.alert-success .success-body {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #166534;
    max-width: 550px;
    margin: 0;
}

/* Success Message Details */
.alert-success .success-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    width: 100%;
}

.alert-success .success-details .detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #065f46;
}

.alert-success .success-details .detail-item i {
    font-size: 1.2rem;
    color: #10b981;
}

/* Success Actions */
.alert-success .success-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.alert-success .success-actions a {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.alert-success .success-actions .btn-whatsapp {
    background: #25d366;
    color: white;
}

.alert-success .success-actions .btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.alert-success .success-actions .btn-secondary {
    background: white;
    color: #065f46;
    border: 2px solid #10b981;
}

.alert-success .success-actions .btn-secondary:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes animate-fade-in {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes errorShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

@keyframes successGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.animate-fade-in {
    animation: animate-fade-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .alert-success,
    .alert-error {
        padding: 25px 20px;
        font-size: 1rem;
    }

    .alert-success i,
    .alert-error i {
        font-size: 2.5rem;
    }

    .alert-success .success-heading {
        font-size: 1.5rem;
    }

    .alert-success .success-body {
        font-size: 0.95rem;
    }

    .alert-success .success-actions {
        flex-direction: column;
        width: 100%;
    }

    .alert-success .success-actions a {
        width: 100%;
        justify-content: center;
    }
}