/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Hampio Brand Palette (Option A: Navy + Gold) */
    --primary-color: #233853;           /* Navy (logo) */
    --secondary-color: #1C2E5D;         /* Deep navy (logo) */
    --accent-color: #D2A047;            /* Gold (logo) */
    --accent-color-dark: #AC9055;       /* Deep gold (logo) */
    --accent-color-darker: #8F6F3A;     /* Shadow gold */
    --gold-accent: #E1C582;             /* Champagne gold */

    /* System */
    --danger-color: #B42318;
    --danger-color-dark: #7A271A;

    /* Neutrals */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --bg-light: #FBFAF7;
    --bg-white: #ffffff;
    --border-color: #E6E2D8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(210, 160, 71, 0.35);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    z-index: 10000 !important;
    transition: var(--transition-smooth);
    overflow: visible !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transform: translateZ(0);
    will-change: background-color, box-shadow;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: auto;
    height: 44px;
}

.logo .logo-icon {
    display: none;
}

.logo:hover {
    transform: scale(1.03);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 46px;
    background: rgba(255, 255, 255, 0.96);
    padding: 10px 12px;
    border-radius: 14px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 1;
    padding: 120px 0 80px;
    transform: translateZ(0);
    will-change: auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    transform: translateZ(0);
    will-change: auto;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1C2E5D 25%, #233853 50%, #1C2E5D 75%, #0f172a 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    transform: translateZ(0);
    will-change: background-position;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(210, 160, 71, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(210, 160, 71, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(210, 160, 71, 0.02) 2px, rgba(210, 160, 71, 0.02) 4px);
    opacity: 0.7;
    transform: translateZ(0);
    will-change: auto;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
    transform: translateZ(0);
    will-change: transform;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(210, 160, 71, 0.28);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(40, 69, 116, 0.35);
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(225, 197, 130, 0.26);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@media (max-width: 768px) {
    .shape-1 {
        width: 200px;
        height: 200px;
        left: -50px;
        top: -50px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
        right: -25px;
        bottom: -25px;
    }

    .shape-3 {
        width: 120px;
        height: 120px;
        right: 5%;
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top, rgba(15, 23, 42, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(28, 46, 93, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.hero-image-frame {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, rgba(210, 160, 71, 0.2) 0%, rgba(225, 197, 130, 0.15) 50%, rgba(210, 160, 71, 0.2) 100%);
    border-radius: 32px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(210, 160, 71, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: frameGlow 4s ease-in-out infinite;
}

@keyframes frameGlow {
    0%, 100% {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(210, 160, 71, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 35px 90px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(210, 160, 71, 0.4),
            0 0 40px rgba(210, 160, 71, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transform: perspective(1200px) rotateY(-3deg) rotateX(3deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(210, 160, 71, 0.4), rgba(225, 197, 130, 0.3), rgba(210, 160, 71, 0.4));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.6;
    animation: borderShimmer 3s ease-in-out infinite;
}

@keyframes borderShimmer {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(210, 160, 71, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(40, 69, 116, 0.2) 0%, transparent 50%);
    filter: blur(60px);
    z-index: -2;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.4; 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: translate(-50%, -50%) scale(1.15); 
    }
}

.hero-sparkle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: sparkleFloat 4s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 0 8px rgba(210, 160, 71, 0.6));
}

.hero-sparkle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-sparkle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.hero-sparkle-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    20%, 80% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-30px) scale(1.1);
    }
}


.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}

.hero-decoration-1 {
    width: 200px;
    height: 200px;
    background: rgba(210, 160, 71, 0.3);
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.hero-decoration-2 {
    width: 150px;
    height: 150px;
    background: rgba(40, 69, 116, 0.4);
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(210, 160, 71, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-product-tag {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    animation: tagFloat 3s ease-in-out infinite;
}

.tag-string {
    width: 2px;
    height: 25px;
    background: linear-gradient(180deg, rgba(210, 160, 71, 0.6) 0%, rgba(210, 160, 71, 0.3) 100%);
    margin-bottom: -2px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tag-string::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(210, 160, 71, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(210, 160, 71, 0.5);
}

.tag-label {
    background: linear-gradient(135deg, rgba(210, 160, 71, 0.98) 0%, rgba(225, 197, 130, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--secondary-color);
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    box-shadow: 
        0 8px 24px rgba(210, 160, 71, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: perspective(200px) rotateX(5deg);
    transition: var(--transition);
}

.tag-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    border-radius: 8px;
    pointer-events: none;
}

.tag-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, rgba(210, 160, 71, 0.98) 0%, rgba(225, 197, 130, 0.98) 100%);
    transform: rotate(45deg);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-text {
    position: relative;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-transform: uppercase;
    display: block;
}

.hero-product-tag:hover .tag-label {
    transform: perspective(200px) rotateX(0deg) translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(210, 160, 71, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.hero-product-tag:hover .tag-string {
    height: 28px;
}

@keyframes tagFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(1deg);
    }
}

.title-line-2 {
    display: block;
    margin-top: 0.5rem;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(210, 160, 71, 0.1);
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.hero-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 28px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 0 1px rgba(210, 160, 71, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.title-line-1 {
    display: block;
    opacity: 0.95;
}

.title-line-2 {
    display: block;
    opacity: 0.95;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f4d03f 30%, var(--gold-accent) 60%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: shimmer 4s ease infinite;
    display: inline-block;
    font-size: 1.1em;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(210, 160, 71, 0.3));
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-align: left;
    letter-spacing: 0.2px;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    color: var(--secondary-color);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    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.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(210, 160, 71, 0.45), 0 0 20px rgba(210, 160, 71, 0.25);
    background: linear-gradient(135deg, var(--accent-color-dark) 0%, var(--accent-color-darker) 100%);
}

.cta-primary svg {
    transition: var(--transition);
}

.cta-primary:hover svg {
    transform: translateX(5px);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.scroll-text {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(15px); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpModal {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-white);
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(210, 160, 71, 0.25);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(210, 160, 71, 0.25));
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How it Works Section */
.how-it-works {
    background: var(--bg-white);
    padding: 100px 0;
    position: relative;
}

.steps-alternating {
    max-width: 1400px;
    margin: 0 auto;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-left {
    grid-template-columns: auto 1fr;
}

.step-right {
    grid-template-columns: 1fr auto;
}

.step-number-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.step-bg-1 {
    background: #ffb3ba;
}

.step-bg-2 {
    background: #bae1ff;
}

.step-bg-3 {
    background: #ffffba;
}

.step-bg-4 {
    background: #baffc9;
}

.step-number-text {
    font-size: 12rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.06);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    position: relative;
    z-index: 2;
    letter-spacing: -0.05em;
}

.step-content-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.step-content-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

/* Categories Section */
.categories {
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.category-card {
    position: relative;
    min-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--secondary-color);
    border: 1px solid rgba(210, 160, 71, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.98) 100%);
    transition: var(--transition-smooth);
    z-index: 1;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(210, 160, 71, 0.2);
    border-color: rgba(210, 160, 71, 0.3);
}

.category-card:hover::after {
    opacity: 1;
}

.category-card.corporate::after {
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.category-card.festive::after {
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.category-card.everyday::after {
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.category-overlay {
    display: none;
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #ffffff;
    flex: 1;
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    flex-shrink: 0;
    color: #ffffff;
}

.category-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transition: var(--transition-smooth);
}

.category-card:hover .category-content h3::after {
    width: 80px;
}


.category-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.9);
}

.category-features {
    list-style: none;
    margin-top: auto;
    padding-top: 0.5rem;
    flex-shrink: 0;
}

.category-features li {
    padding: 0.5rem 0;
    opacity: 0.9;
    position: relative;
    padding-left: 1.75rem;
    padding-right: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: rgba(255, 255, 255, 0.9);
}

.category-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1rem;
    width: 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Hampers Section */
.hampers {
    background: var(--bg-white);
}

.hampers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.hamper-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.hamper-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(210, 160, 71, 0.12), rgba(225, 197, 130, 0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.hamper-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(210, 160, 71, 0.25);
}

.hamper-card:hover::after {
    opacity: 1;
}

.hamper-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hamper-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.hamper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

.hamper-card:hover .hamper-placeholder,
.hamper-card:hover .hamper-img {
    transform: scale(1.1);
}

.corporate-hamper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.festive-hamper {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.everyday-hamper {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hamper-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    z-index: 3;
}

.hamper-card:hover .hamper-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hamper-info {
    padding: 1.5rem;
}

.hamper-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.hamper-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hamper-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hamper-tags span {
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, var(--bg-light), rgba(210, 160, 71, 0.06));
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    font-weight: 500;
}

.hamper-card:hover .hamper-tags span {
    background: linear-gradient(135deg, rgba(210, 160, 71, 0.14), rgba(225, 197, 130, 0.12));
    border-color: rgba(210, 160, 71, 0.25);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: none; /* Hidden - HTML code preserved */
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(210, 160, 71, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(35, 56, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.testimonials-carousel .testimonial-card {
    width: 100%;
}

@media (max-width: 1023px) and (min-width: 768px) {
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 767px) {
    .testimonials-carousel {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        touch-action: pan-x;
        overflow: visible;
        width: 100%;
    }
    
    .testimonials-carousel .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin-right: 1.5rem;
    }
    
    .testimonials-carousel .testimonial-card:last-child {
        margin-right: 0;
    }
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(210, 160, 71, 0.15);
    line-height: 1;
    font-weight: 700;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--gold-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(210, 160, 71, 0.2);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating .star {
    color: var(--accent-color);
    font-size: 1.25rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(210, 160, 71, 0.3));
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-rating .star:nth-child(1) { animation-delay: 0s; }
.testimonial-rating .star:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating .star:nth-child(3) { animation-delay: 0.4s; }
.testimonial-rating .star:nth-child(4) { animation-delay: 0.6s; }
.testimonial-rating .star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(210, 160, 71, 0.3);
    transition: var(--transition-smooth);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(210, 160, 71, 0.4);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .testimonials-controls {
        display: none;
    }
}

.testimonial-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    border-color: var(--accent-color);
    color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.testimonial-nav:active {
    transform: scale(0.95);
}

.testimonial-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.testimonial-nav:disabled:hover {
    transform: none;
    background: var(--bg-white);
    border-color: var(--border-color);
    color: var(--primary-color);
}

.testimonials-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonial-dot:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: var(--accent-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(210, 160, 71, 0.2);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.testimonial-stat .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enquiry Section */
.enquiry {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.enquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="enquiryGrid" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="60" height="60" fill="url(%23enquiryGrid)"/></svg>');
    opacity: 0.5;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.enquiry-header .section-title,
.enquiry-header .section-subtitle {
    color: white;
}

.enquiry-header .section-subtitle {
    opacity: 0.9;
    font-size: 1.05rem;
}

.enquiry-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.enquiry-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1rem 1.25rem;
        border: 2px solid var(--border-color);
        border-radius: 12px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        font-family: inherit;
        transition: var(--transition);
        background: var(--bg-white);
        color: var(--text-primary);
    }

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(210, 160, 71, 0.14), 0 4px 12px rgba(210, 160, 71, 0.18);
    transform: translateY(-2px);
    background: var(--bg-white);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: rgba(37, 211, 102, 0.3);
}

.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group select:invalid:not(:placeholder-shown):not(:focus),
.form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: rgba(180, 35, 24, 0.55);
    animation: shake 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.form-benefits {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(210, 160, 71, 0.14), rgba(225, 197, 130, 0.08));
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(210, 160, 71, 0.28);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-badge::before {
    content: '✓';
    margin-right: 0.25rem;
    font-weight: bold;
}

.benefit-badge:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(210, 160, 71, 0.18), rgba(225, 197, 130, 0.12));
    box-shadow: 0 4px 12px rgba(210, 160, 71, 0.22);
}

.submit-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    color: var(--secondary-color);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(210, 160, 71, 0.28);
    white-space: nowrap;
}

.submit-button svg {
    transition: var(--transition);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 160, 71, 0.35);
    background: linear-gradient(135deg, var(--accent-color-dark) 0%, var(--accent-color-darker) 100%);
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.submit-button:active {
    transform: translateY(0) scale(0.98);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(210, 160, 71, 0.35), 0 0 15px rgba(210, 160, 71, 0.22);
}

.social-link svg {
    position: relative;
    z-index: 1;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Tablet and Medium Screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: clamp(3rem, 5vw, 3.8rem);
        text-align: center;
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.2rem);
        text-align: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.75rem;
    }

    .hampers-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .how-it-works {
        padding: 80px 0;
    }

    .steps-container {
        gap: 2rem;
    }

    .step-row {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .step-left,
    .step-right {
        grid-template-columns: 1fr !important;
    }

    .step-right .step-number-container {
        order: 1;
    }

    .step-right .step-content-area {
        order: 2;
    }

    .step-left .step-number-container {
        order: 1;
    }

    .step-left .step-content-area {
        order: 2;
    }

    .step-number-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .step-number-text {
        font-size: 8rem;
    }

    .step-number-bg {
        width: 120px;
        height: 120px;
    }

    .step-description {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        width: 100vw;
        max-width: 100vw;
        overflow: visible !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px) saturate(120%);
        -webkit-backdrop-filter: blur(8px) saturate(120%);
        transform: translateZ(0);
        will-change: auto;
        z-index: 10000 !important;
    }

    .nav-container {
        padding: 1rem 20px;
        width: 100%;
        max-width: 100%;
        overflow: visible !important;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        margin-left: 12px;
        z-index: 1001;
        position: relative;
        gap: 5px;
    }

    .hamburger span {
        width: 26px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 42px;
    }

    /* On smaller screens, show icon-only in navbar for better spacing */
    .logo .logo-full {
        display: none;
    }

    .logo .logo-icon {
        display: block;
    }

    .nav-menu {
        position: fixed !important;
        left: 0 !important;
        top: 70px !important;
        right: 0 !important;
        bottom: auto !important;
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(8px) saturate(120%) !important;
        -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
        padding: 2rem 0 !important;
        box-sizing: border-box !important;
        z-index: 1002 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: flex !important;
        height: auto !important;
        max-height: calc(100vh - 70px) !important;
        margin: 0 !important;
        gap: 0 !important;
        list-style: none !important;
        transform: translateY(-20px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        list-style: none;
        margin: 0;
    }

    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        background: linear-gradient(135deg, rgba(210, 160, 71, 0.08), rgba(225, 197, 130, 0.05));
        color: var(--accent-color);
        padding-left: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .form-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }

    .submit-button {
        width: 100%;
        justify-content: center;
        padding: 1.15rem 2rem;
        font-size: 1rem;
        min-height: 52px;
    }

    /* Enquiry Section Mobile */
    .enquiry {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        position: relative;
        z-index: 2;
        padding: 80px 0;
    }

    .enquiry-form {
        padding: 2.5rem 1.75rem;
        border-radius: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.1rem 1.35rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
        min-height: 52px;
        border-radius: 14px;
    }

    .categories-grid,
    .hampers-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .section-header {
        margin-bottom: 3.5rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: clamp(1.875rem, 6vw, 2.5rem);
        margin-bottom: 1.25rem;
        line-height: 1.3;
        color: var(--primary-color);
        font-weight: 700;
    }

    .section-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.15rem);
        line-height: 1.7;
        color: var(--text-secondary);
        max-width: 100%;
    }

    /* Hero Section Mobile - Enhanced for Maximum Impact */
    .hero {
        min-height: auto;
        height: auto;
        max-height: none;
        padding: 100px 0 60px;
        overflow: visible;
        width: 100%;
        max-width: 100vw;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        animation: fadeInUp 1s ease-out 0.3s both;
    }
    
    .hero-image-container {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image-container:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    }

    .hero-background {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateZ(0);
        will-change: auto;
    }

    .hero-overlay {
        background: rgba(26, 26, 46, 0.35);
    }

    .hero-gradient {
        background: linear-gradient(135deg, #1C2E5D 0%, #233853 40%, #284574 80%, #1C2E5D 100%);
        background-size: 200% 200%;
        animation: none;
        transform: translateZ(0);
    }
    
    .hero-pattern {
        opacity: 0.5;
        transform: translateZ(0);
    }
    
    .shape {
        animation: none;
        opacity: 0.2;
        transform: translateZ(0);
    }

    .hero-pattern {
        opacity: 0.7;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        opacity: 0.4;
    }

    .hero .container {
        padding-top: 20px;
        padding-bottom: 20px;
        height: auto;
        min-height: auto;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 24px;
        padding-right: 24px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        padding: 0;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin: 0 auto;
        align-self: center;
    }

    .hero-title {
        font-size: clamp(2.25rem, 9vw, 3.25rem);
        letter-spacing: -1px;
        margin-bottom: 1.25rem;
        line-height: 1.2;
        padding: 0;
        font-weight: 700;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 4px 30px rgba(0, 0, 0, 0.2);
        width: 100%;
    }

    .title-accent {
        text-shadow: 0 2px 15px rgba(210, 160, 71, 0.5), 0 4px 25px rgba(210, 160, 71, 0.3);
        filter: drop-shadow(0 0 8px rgba(210, 160, 71, 0.4));
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.25rem);
        margin-bottom: 1.75rem;
        line-height: 1.65;
        padding: 0;
        opacity: 0.98;
        font-weight: 400;
        max-width: 100%;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    }

    .hero-badge {
        font-size: clamp(0.8rem, 2.2vw, 0.95rem);
        padding: 0.7rem 1.5rem;
        margin-bottom: 1.5rem;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        line-height: 1.4;
        background: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
        font-weight: 600;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        padding: 0;
        max-width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2.25rem;
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        min-height: 56px;
        border-radius: 50px;
        font-weight: 700;
        letter-spacing: 0.3px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(210, 160, 71, 0.4);
        text-transform: uppercase;
    }

    .cta-primary {
        background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
        box-shadow: 0 10px 35px rgba(210, 160, 71, 0.5), 0 0 25px rgba(210, 160, 71, 0.3);
    }

    .cta-secondary {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        border: 2.5px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
        font-weight: 600;
    }


    .scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        z-index: 3;
        margin-top: 0.5rem;
    }

    .scroll-text {
        font-size: 0.7rem;
        text-align: center;
        opacity: 0.85;
        font-weight: 500;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        margin-top: 0.5rem;
    }

    .mouse {
        width: 32px;
        height: 52px;
        border: 2.5px solid rgba(255, 255, 255, 0.9);
    }

    .mouse::before {
        width: 5px;
        height: 10px;
        background: rgba(255, 255, 255, 0.9);
    }

    section {
        padding: 80px 0;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* About Section Mobile */
    .about {
        background: var(--bg-white);
        position: relative;
        z-index: 2;
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .feature-card {
        padding: 2.25rem 1.75rem;
        border-radius: 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        background: var(--bg-white);
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .feature-icon {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* How it Works Section Mobile */
    .how-it-works {
        padding: 60px 0;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .step-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .step-number-container {
        order: 1 !important;
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .step-content-area {
        order: 2 !important;
    }

    .step-number-text {
        font-size: 6rem;
    }

    .step-number-bg {
        width: 100px;
        height: 100px;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-content-text,
    .step-description {
        font-size: 0.9rem;
    }

    /* Categories Section Mobile */
    .categories {
        background: var(--bg-light);
        position: relative;
        z-index: 2;
        padding: 80px 0;
    }

    .category-card {
        min-height: 480px;
        border-radius: 18px;
    }

    .category-content {
        padding: 2.25rem 1.75rem;
    }

    .category-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .category-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .category-features {
        padding-top: 0.75rem;
        margin-top: 1rem;
    }

    .category-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        padding-left: 2rem;
        padding-right: 0.5rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        position: relative;
    }

    .category-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0.5rem;
        font-weight: bold;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95);
        width: 1.5rem;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    /* Hampers Section Mobile */
    .hampers {
        background: var(--bg-white);
        position: relative;
        z-index: 2;
        padding: 80px 0;
    }

    .hamper-card {
        border-radius: 18px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .hamper-image {
        height: 280px;
    }

    .hamper-info {
        padding: 1.75rem;
    }

    .hamper-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .hamper-info p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }

    .hamper-badge {
        top: 0.875rem;
        right: 0.875rem;
        padding: 0.55rem 1.1rem;
        font-size: 0.8rem;
        border-radius: 18px;
    }

    .hamper-tags span {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
        border-radius: 10px;
    }

    /* Footer Mobile */
    .footer {
        padding: 3.5rem 0 2rem;
        background: var(--primary-color);
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }

    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .social-links {
        justify-content: center;
        gap: 1.25rem;
        margin-top: 1.75rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .footer-section ul li {
        margin-bottom: 0.875rem;
        font-size: 0.95rem;
    }

    .footer-bottom {
        padding-top: 2.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-container {
        padding: 1rem 18px;
    }

    .hamburger {
        margin-left: 10px;
    }

    .logo img {
        height: 40px;
    }

    /* Hero Section Small Mobile - Enhanced for Maximum Impact */
    .hero {
        min-height: auto;
        height: auto;
        max-height: none;
        padding: 90px 0 50px;
        width: 100%;
        max-width: 100vw;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column;
        position: relative;
    }
    
    .hero-wrapper {
        gap: 2.5rem;
        padding: 0 18px;
    }
    
    .hero-image-container {
        max-width: 100%;
        padding: 15px;
    }
    
    .hero-product-tag {
        top: 15px;
        right: 20px;
    }
    
    .tag-string {
        height: 20px;
    }
    
    .tag-label {
        padding: 0.5rem 1.2rem;
    }
    
    .tag-text {
        font-size: 0.7rem;
        letter-spacing: 1.2px;
    }

    .hero .container {
        padding-top: 15px;
        padding-bottom: 15px;
        height: auto;
        min-height: auto;
        padding-left: 20px;
        padding-right: 20px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin: 0 auto;
        align-self: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.75rem);
        margin-bottom: 1rem;
        line-height: 1.2;
        padding: 0;
        font-weight: 700;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 4px 30px rgba(0, 0, 0, 0.2);
        letter-spacing: -0.8px;
        width: 100%;
    }

    .title-accent {
        text-shadow: 0 2px 15px rgba(210, 160, 71, 0.5), 0 4px 25px rgba(210, 160, 71, 0.3);
        filter: drop-shadow(0 0 8px rgba(210, 160, 71, 0.4));
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.15rem);
        margin-bottom: 1.5rem;
        line-height: 1.65;
        padding: 0;
        opacity: 0.98;
        font-weight: 400;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    }

    .hero-badge {
        font-size: clamp(0.75rem, 2.8vw, 0.9rem);
        padding: 0.65rem 1.35rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
        background: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
        font-weight: 600;
    }

    .hero-cta-group {
        margin-bottom: 1.75rem;
        gap: 0.875rem;
        padding: 0;
        width: 100%;
    }

    .cta-button {
        padding: 1.15rem 2rem;
        font-size: clamp(0.85rem, 2.8vw, 0.95rem);
        min-height: 54px;
        font-weight: 700;
        letter-spacing: 0.3px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(210, 160, 71, 0.4);
    }

    .cta-primary {
        box-shadow: 0 10px 35px rgba(210, 160, 71, 0.5), 0 0 25px rgba(210, 160, 71, 0.3);
    }


    .scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        z-index: 3;
        margin-top: 0.5rem;
    }

    .scroll-text {
        text-align: center;
        font-size: 0.7rem;
        opacity: 0.85;
        font-weight: 500;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        margin-top: 0.5rem;
    }

    .mouse {
        width: 30px;
        height: 50px;
        border: 2.5px solid rgba(255, 255, 255, 0.9);
    }

    .mouse::before {
        width: 5px;
        height: 9px;
        background: rgba(255, 255, 255, 0.9);
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.875rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .enquiry-form {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
        min-height: 50px;
    }

    .submit-button {
        padding: 1.05rem 1.75rem;
        font-size: 0.95rem;
        min-height: 50px;
    }

    .category-card {
        min-height: 460px;
        border-radius: 16px;
    }

    .category-content {
        padding: 2rem 1.5rem;
    }

    .category-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1.125rem;
    }

    .category-content p {
        font-size: 0.9rem;
        margin-bottom: 1.375rem;
    }

    .category-features {
        padding-top: 0.75rem;
        margin-top: 1rem;
    }

    .category-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        padding-left: 2rem;
        padding-right: 0.5rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        position: relative;
    }

    .category-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0.5rem;
        font-weight: bold;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.95);
        width: 1.5rem;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hamper-card {
        height: auto;
        border-radius: 16px;
    }

    .hamper-image {
        height: 260px;
    }

    .hamper-info {
        padding: 1.5rem;
    }

    .hamper-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .hamper-info p {
        font-size: 0.9rem;
        margin-bottom: 1.125rem;
    }

    .hamper-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hamper-tags span {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Testimonials Section Mobile */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-wrapper {
        padding: 0;
        margin: 0;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .testimonials-carousel {
        gap: 0;
        margin-bottom: 2rem;
        padding: 0;
        touch-action: pan-x;
        width: auto;
        min-width: 100%;
    }
    
    .testimonials-carousel .testimonial-card {
        padding-left: 20px;
        padding-right: 20px;
        margin-right: 1.5rem;
    }
    
    .testimonials-carousel .testimonial-card:last-child {
        margin-right: 0;
    }
    
    .testimonials-carousel .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .testimonial-card {
        padding: 1.75rem 1.5rem;
        border-radius: 16px;
        margin: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .testimonial-card::before {
        top: 1rem;
        left: 1.5rem;
        font-size: 3.5rem;
    }

    .testimonial-rating {
        margin-bottom: 1rem;
        gap: 0.2rem;
    }

    .testimonial-rating .star {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        padding-right: 0;
    }

    .testimonial-author {
        gap: 0.875rem;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .author-info {
        min-width: 0;
        flex: 1;
    }

    .author-name {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
        line-height: 1.3;
    }

    .author-title {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .testimonials-controls {
        margin-top: 2rem;
        gap: 1rem;
        padding: 0 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonial-nav {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        flex-shrink: 0;
        border-width: 2px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .testimonial-nav:active {
        transform: scale(0.9);
    }

    .testimonial-nav svg {
        width: 22px;
        height: 22px;
    }

    .testimonials-dots {
        gap: 0.5rem;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .testimonial-dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
        border-radius: 50%;
    }

    .testimonial-dot.active {
        width: 24px;
        min-width: 24px;
        border-radius: 4px;
    }

    .testimonials-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonial-stat {
        min-width: 100px;
        flex: 0 1 auto;
    }

    .testimonial-stat .stat-value {
        font-size: 1.75rem;
        margin-bottom: 0.4rem;
    }

    .testimonial-stat .stat-label {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }

    /* Additional mobile optimizations for very small screens */
    @media (max-width: 480px) {
        .how-it-works {
            padding: 50px 0;
        }

        .step-number-container {
            order: 1 !important;
            width: 120px;
            height: 120px;
            margin: 0 auto;
        }

        .step-content-area {
            order: 2 !important;
        }

        .step-number-text {
            font-size: 4.5rem;
        }

        .step-number-bg {
            width: 80px;
            height: 80px;
        }

        .step-card {
            padding: 1.75rem 1.25rem;
        }

        .step-title {
            font-size: 1.2rem;
        }

        .step-content-text,
        .step-description {
            font-size: 0.85rem;
        }

        .testimonials {
            padding: 50px 0;
        }

        .testimonials-wrapper {
            padding: 0;
        }

        .testimonials-carousel {
            padding: 0;
            width: auto;
            min-width: 100%;
        }
        
        .testimonials-carousel .testimonial-card {
            padding-left: 18px;
            padding-right: 18px;
            margin-right: 1.25rem;
        }
        
        .testimonials-carousel .testimonial-card:last-child {
            margin-right: 0;
        }

        .testimonial-card {
            padding: 1.5rem 1.25rem;
            border-radius: 14px;
        }

        .testimonial-card::before {
            top: 0.875rem;
            left: 1.25rem;
            font-size: 3rem;
        }

        .testimonial-rating {
            margin-bottom: 0.875rem;
        }

        .testimonial-rating .star {
            font-size: 0.95rem;
        }

        .testimonial-text {
            font-size: 0.85rem;
            margin-bottom: 1.25rem;
            line-height: 1.65;
        }

        .testimonial-author {
            gap: 0.75rem;
        }

        .author-avatar {
            width: 44px;
            height: 44px;
            font-size: 0.9rem;
        }

        .author-name {
            font-size: 0.9rem;
        }

        .author-title {
            font-size: 0.75rem;
        }

        .testimonials-controls {
            margin-top: 1.75rem;
            gap: 0.75rem;
            padding: 0 5px;
        }

        .testimonial-nav {
            width: 44px;
            height: 44px;
            min-width: 44px;
            min-height: 44px;
        }

        .testimonial-nav svg {
            width: 20px;
            height: 20px;
        }

        .testimonials-dots {
            gap: 0.4rem;
            margin-top: 0.75rem;
        }

        .testimonial-dot {
            width: 7px;
            height: 7px;
            min-width: 7px;
            min-height: 7px;
        }

        .testimonial-dot.active {
            width: 20px;
            min-width: 20px;
        }

        .testimonials-stats {
            gap: 1.25rem;
            margin-top: 2rem;
            padding-top: 1.75rem;
        }

        .testimonial-stat {
            min-width: 80px;
        }

        .testimonial-stat .stat-value {
            font-size: 1.5rem;
        }

        .testimonial-stat .stat-label {
            font-size: 0.75rem;
        }
    }

    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1.125rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .footer {
        padding: 3rem 0 1.75rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.125rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .footer-section ul li {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.85rem;
    }

    .whatsapp-float {
        bottom: 90px !important;
        right: 20px !important;
        left: auto !important;
        top: auto !important;
        width: 56px !important;
        height: 56px !important;
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45) !important;
        z-index: 99999 !important;
        position: fixed !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .benefit-badge {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }
}

/* Premium Mobile Enhancements */
@media (max-width: 768px) {
    /* Improved touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better image loading on mobile */
    .hamper-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    /* Smooth scrolling improvements */
    html {
        scroll-padding-top: 80px;
    }

    /* Better focus states for accessibility */
    .cta-button:focus,
    .submit-button:focus,
    .nav-link:focus {
        outline: 3px solid rgba(210, 160, 71, 0.5);
        outline-offset: 2px;
    }

    /* Improved card hover states for touch devices */
    .feature-card:active,
    .hamper-card:active,
    .category-card:active {
        transform: scale(0.98);
    }

    /* Better form input spacing */
    .form-group {
        margin-bottom: 1.25rem;
    }

    /* Enhanced visual hierarchy */
    .hero-badge {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    /* Better stat card appearance */

    /* Improved category card gradients on mobile */

    /* Better text readability */
    .hero-subtitle,
    .section-subtitle,
    .category-content p,
    .hamper-info p {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Enhanced shadows for depth */
    .feature-card,
    .hamper-card {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    }

    .feature-card:hover,
    .hamper-card:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    /* Better spacing for readability */
    .category-content,
    .hamper-info {
        letter-spacing: 0.01em;
    }

    /* Improved button appearance */
    .cta-primary,
    .submit-button {
        box-shadow: 0 6px 24px rgba(210, 160, 71, 0.35);
    }

    .cta-primary:active,
    .submit-button:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 4px 16px rgba(210, 160, 71, 0.3);
    }

    /* Better form appearance */
    .enquiry-form {
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    /* Enhanced footer */
    .footer {
        background: linear-gradient(135deg, #1C2E5D 0%, #233853 100%);
    }

    /* Better social links */
    .social-link:active {
        transform: translateY(-2px) scale(1.05);
    }

    /* Improved navigation menu */
    .nav-menu {
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 70px 0 40px;
    }

    .hero .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-bottom: 1.5rem;
    }


    section {
        padding: 70px 0;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about {
        padding: 70px 0;
        background: var(--bg-white);
        position: relative;
        z-index: 2;
    }

    .categories {
        padding: 70px 0;
        background: var(--bg-light);
        position: relative;
        z-index: 2;
    }

    .hampers {
        padding: 70px 0;
        background: var(--bg-white);
        position: relative;
        z-index: 2;
    }

    .enquiry {
        padding: 70px 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        position: relative;
        z-index: 2;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    z-index: 99999 !important;
    transition: var(--transition);
    text-decoration: none !important;
    animation: pulse 2s infinite;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--primary-color);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 2000;
    text-align: center;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    border-radius: 24px 24px 0 0;
}

.success-message.active {
    display: block;
    animation: fadeInUpModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-message h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-secondary);
}

/* Error Message */
.error-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 2000;
    text-align: center;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.error-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--danger-color), var(--danger-color-dark));
    border-radius: 24px 24px 0 0;
}

.error-message.active {
    display: block;
    animation: fadeInUpModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.error-message h3 {
    color: var(--danger-color);
    margin-bottom: 1rem;
}

.error-message p {
    color: var(--text-secondary);
}

