/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e8a5c2;
    --primary-dark: #d48fb0;
    --secondary-color: #c97a9e;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fef7fb;
    --bg-white: #ffffff;
    --accent-color: #f5d6e8;
    --gradient-1: linear-gradient(135deg, #e8a5c2 0%, #d48fb0 100%);
    --gradient-2: linear-gradient(135deg, #fceef5 0%, #f5d6e8 100%);
    --shadow-sm: 0 2px 8px rgba(232, 165, 194, 0.15);
    --shadow-md: 0 4px 16px rgba(232, 165, 194, 0.2);
    --shadow-lg: 0 8px 32px rgba(232, 165, 194, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stunning Hamper Icon */
.hamper-icon {
    width: 100%;
    height: 100%;
    position: relative;
    transform: scale(0.9);
}

.hamper-basket {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 25px;
    background: linear-gradient(135deg, #d4a574 0%, #b8926a 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.15);
}

.hamper-basket::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(184, 146, 106, 0.8) 20%, 
        rgba(184, 146, 106, 0.8) 80%, 
        transparent 100%);
    border-radius: 2px;
}

.hamper-basket::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 3px;
    right: 3px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.hamper-lid {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 8px;
    background: linear-gradient(135deg, #e8a5c2 0%, #d48fb0 100%);
    border-radius: 8px 8px 4px 4px;
    box-shadow: 
        0 -2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.hamper-lid::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ffb3d9 0%, #ff9fcc 100%);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hamper-bow {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 16px;
    z-index: 3;
}

.hamper-bow::before,
.hamper-bow::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 12px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        inset -2px -2px 0 rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

.hamper-bow::before {
    left: 0;
    transform: rotate(-15deg);
}

.hamper-bow::after {
    right: 0;
    transform: rotate(15deg);
}

.hamper-ribbon {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, 
        #ff6b9d 0%, 
        #ff8fb3 50%, 
        #e8a5c2 100%);
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 0 4px rgba(255, 107, 157, 0.3);
}

.hamper-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Logo hover effect */
.logo:hover .hamper-icon {
    transform: scale(1) rotate(5deg);
    transition: transform 0.3s ease;
}

.logo:hover .hamper-bow::before {
    transform: rotate(-20deg);
    transition: transform 0.3s ease;
}

.logo:hover .hamper-bow::after {
    transform: rotate(20deg);
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1607082349566-187342175e2f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    transform: scale(1.1);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(232, 165, 194, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 143, 176, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

/* Floating Balloons */
.balloon {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    animation: balloonRise 25s linear infinite;
    opacity: 0.3;
}

.balloon-body {
    width: 60px;
    height: 80px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 
        inset -10px -10px 0 rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.15);
    animation: balloonFloat 8s ease-in-out infinite;
}

.balloon-body::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid;
    border-top-color: inherit;
    opacity: 0.8;
}

.balloon-string {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    animation: stringSway 3s ease-in-out infinite;
    transform-origin: top center;
}

/* Individual Balloon Colors and Positions */
.balloon-1 {
    left: 10%;
    bottom: -100px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.balloon-1 .balloon-body {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
    border-top-color: #ff6b9d;
    animation-duration: 7s;
}

.balloon-1 .balloon-string {
    animation-delay: 0s;
}

.balloon-2 {
    left: 20%;
    bottom: -120px;
    animation-delay: 2s;
    animation-duration: 28s;
}

.balloon-2 .balloon-body {
    background: linear-gradient(135deg, #e8a5c2 0%, #f5c2d9 100%);
    border-top-color: #e8a5c2;
    width: 70px;
    height: 90px;
    animation-duration: 9s;
}

.balloon-2 .balloon-string {
    animation-delay: 0.3s;
}

.balloon-3 {
    left: 35%;
    bottom: -80px;
    animation-delay: 4s;
    animation-duration: 30s;
}

.balloon-3 .balloon-body {
    background: linear-gradient(135deg, #ffb3d9 0%, #ffcce6 100%);
    border-top-color: #ffb3d9;
    width: 55px;
    height: 75px;
    animation-duration: 6.5s;
}

.balloon-3 .balloon-string {
    animation-delay: 0.6s;
}

.balloon-4 {
    left: 50%;
    bottom: -110px;
    animation-delay: 1s;
    animation-duration: 27s;
}

.balloon-4 .balloon-body {
    background: linear-gradient(135deg, #d48fb0 0%, #e8a5c2 100%);
    border-top-color: #d48fb0;
    width: 65px;
    height: 85px;
    animation-duration: 8.5s;
}

.balloon-4 .balloon-string {
    animation-delay: 0.2s;
}

.balloon-5 {
    left: 65%;
    bottom: -90px;
    animation-delay: 3s;
    animation-duration: 26s;
}

.balloon-5 .balloon-body {
    background: linear-gradient(135deg, #ff9fcc 0%, #ffb3d9 100%);
    border-top-color: #ff9fcc;
    width: 60px;
    height: 80px;
    animation-duration: 7.5s;
}

.balloon-5 .balloon-string {
    animation-delay: 0.4s;
}

.balloon-6 {
    left: 75%;
    bottom: -130px;
    animation-delay: 5s;
    animation-duration: 29s;
}

.balloon-6 .balloon-body {
    background: linear-gradient(135deg, #f5c2d9 0%, #ffd6e8 100%);
    border-top-color: #f5c2d9;
    width: 50px;
    height: 70px;
    animation-duration: 6s;
}

.balloon-6 .balloon-string {
    animation-delay: 0.7s;
}

.balloon-7 {
    left: 85%;
    bottom: -100px;
    animation-delay: 1.5s;
    animation-duration: 24s;
}

.balloon-7 .balloon-body {
    background: linear-gradient(135deg, #ff8fb3 0%, #ffa6c2 100%);
    border-top-color: #ff8fb3;
    width: 68px;
    height: 88px;
    animation-duration: 8s;
}

.balloon-7 .balloon-string {
    animation-delay: 0.1s;
}

.balloon-8 {
    left: 92%;
    bottom: -115px;
    animation-delay: 3.5s;
    animation-duration: 31s;
}

.balloon-8 .balloon-body {
    background: linear-gradient(135deg, #e8a5c2 0%, #f5b3d0 100%);
    border-top-color: #e8a5c2;
    width: 58px;
    height: 78px;
    animation-duration: 7s;
}

.balloon-8 .balloon-string {
    animation-delay: 0.5s;
}

/* Balloon Animations */
@keyframes balloonRise {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

@keyframes balloonFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(2deg);
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-20px) translateX(8px) rotate(1.5deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

@keyframes stringSway {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) rotate(3deg);
    }
    50% {
        transform: translateX(-50%) rotate(-2deg);
    }
    75% {
        transform: translateX(-50%) rotate(2deg);
    }
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.75);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
    padding: 0.875rem 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: #ffffff;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    border-radius: 0;
    padding: 0.875rem 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: #2c2c2c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mouse::before {
    content: '↓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translate(-50%, -50%) translateY(0); }
    100% { opacity: 0.5; transform: translate(-50%, -50%) translateY(8px); }
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    background: var(--bg-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Section Headers */
.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(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Hampers Section */
.hampers {
    padding: 100px 20px;
    background: var(--bg-light);
}

.hampers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.hamper-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.hamper-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hamper-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--gradient-2);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: var(--gradient-2);
    transition: var(--transition);
}

.hamper-card:hover .image-placeholder {
    transform: scale(1.1);
}

.hamper-content {
    padding: 2rem;
}

.hamper-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hamper-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hamper-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hamper-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.hamper-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Occasions Section */
.occasions {
    padding: 100px 20px;
    background: white;
}

.occasions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.occasion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    border-radius: 16px;
    background: var(--bg-light);
    transition: var(--transition);
    cursor: pointer;
}

.occasion-item:hover {
    background: var(--gradient-2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.occasion-icon {
    font-size: 3rem;
}

.occasion-name {
    font-weight: 600;
    color: var(--text-dark);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.about-img {
    background: var(--gradient-1);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--gradient-2);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 165, 194, 0.1);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 20px 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hampers-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .occasions-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .occasions-list {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .hamper-card,
    .feature-card,
    .occasion-item {
        animation: fadeInUp 0.6s ease-out backwards;
    }

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

