/* ============================================
   Artisian Treats Premium Chocolate - CSS
   ============================================ */

/* CSS Variables - Luxury Color Palette */
:root {
    --color-dark-brown: #2C1810;
    --color-medium-brown: #4A2C2A;
    --color-light-brown: #6B4423;
    --color-cream: #F5F0E8;
    --color-light-cream: #FAF8F5;
    --color-gold: #C9A962;
    --color-gold-light: #D4B978;
    --color-gold-dark: #A68B4B;
    --color-text-dark: #1A1A1A;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.08);
    --shadow-medium: 0 8px 30px rgba(44, 24, 16, 0.12);
    --shadow-hover: 0 12px 40px rgba(44, 24, 16, 0.18);
    
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 16px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reusable Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-light-cream);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-dark-brown);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark-brown);
    transition: var(--transition-smooth);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-dark-brown);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-text-light);
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--color-dark-brown);
    color: var(--color-cream);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-small);
    transition: var(--transition-smooth);
}

.hero-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-small);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hero-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-whatsapp svg {
    width: 20px;
    height: 20px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* ============================================
    Section Headers
    ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-dark-brown);
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin-top: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Collection Page Specific */
.collection-header {
    text-align: center;
    padding: 4rem 0;
}

.collection-header .section-tag {
    color: var(--color-gold);
}

.collection-header .page-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-dark-brown);
    margin-bottom: 1rem;
}

.collection-header .page-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
    Featured Sections
    ============================================ */
.featured-hampers,
.featured-chocolates {
    padding: 60px 0;
}

.featured-hampers {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-chocolates {
    background-color: var(--color-cream);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--color-dark-brown);
    color: var(--color-cream);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-small);
    transition: var(--transition-smooth);
}

.view-all-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ============================================
    Products Grid & Cards
    ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-dark-brown);
    margin-bottom: 0.5rem;
    text-align: center;
    padding: 1.5rem 1.5rem 0.5rem;
}

.product-card p {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.5;
    text-align: center;
    padding: 0 1.5rem 1.5rem;
}

/* ============================================
   Hampers Grid & Cards
   ============================================ */
.hampers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.hamper-card {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    cursor: pointer;
    height: 500px;
}

.hamper-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.hamper-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hamper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamper-card:hover .hamper-image img {
    transform: scale(1.1);
}

.hamper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.7) 0%, rgba(44, 24, 16, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.hamper-overlay span {
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-white);
    border-radius: var(--radius-small);
    transition: var(--transition-smooth);
}

.hamper-card:hover .hamper-overlay {
    opacity: 1;
}

.hamper-card:hover .hamper-overlay span {
    background-color: var(--color-white);
    color: var(--color-dark-brown);
}

.hamper-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.9) 0%, transparent 100%);
    z-index: 10;
}

.hamper-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.hamper-tagline {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.9);
    font-style: italic;
}

/* ============================================
   Who We Serve Section
   ============================================ */
.who-we-serve {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-dark-brown);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background-color: var(--color-dark-brown);
    padding: 60px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-section .section-tag {
    color: var(--color-gold);
}

.cta-section .section-title {
    color: var(--color-cream);
}

.contact-text {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.8);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background-color: #25D366;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-medium);
    margin-top: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--color-medium-brown);
    padding: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand .logo {
    color: var(--color-cream);
}

.footer-tagline {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.8);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-copy p {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.5);
}

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 24, 16, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: var(--color-white);
    border-radius: var(--radius-large);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-dark-brown);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content {
    padding: 2rem;
    text-align: center;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark-brown);
    margin-bottom: 1rem;
}

.modal-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-medium);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.modal-whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

/* Hamper Modal */
.hamper-modal {
    max-width: 900px;
}

.hamper-modal .modal-image {
    height: 450px;
}

.hamper-modal .modal-title {
    font-size: 2.25rem;
}

.hamper-modal .modal-description {
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ============================================
    Page Header
    ============================================ */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background-color: var(--color-dark-brown);
}

.page-header .container {
    max-width: 1200px;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.8);
    line-height: 1.6;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 4rem;
}

.contact-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-dark-brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-dark-brown);
    transition: var(--transition-smooth);
}

a.contact-value:hover {
    color: var(--color-gold);
}

.contact-cta {
    margin-top: 2rem;
}

.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background-color: #25D366;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-medium);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-large:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn-large svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Who We Serve Page
   ============================================ */
.who-header {
    padding: 8rem 3rem 4rem;
    text-align: center;
    background-color: var(--color-light-cream);
}

.who-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.who-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-dark-brown);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.who-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.6;
}

.who-section {
    padding: 6rem 3rem;
    background-color: var(--color-white);
}

.who-section-alt {
    background-color: var(--color-light-cream);
}

.who-section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-section-alt .who-section-container {
    direction: rtl;
}

.who-section-alt .who-section-container > * {
    direction: ltr;
}

.who-section-image {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.who-section-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.who-section-image:hover img {
    transform: scale(1.03);
}

.who-section-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.who-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-dark-brown);
    line-height: 1.2;
}

.who-section-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.8;
}

.who-cta {
    padding: 6rem 3rem;
    background-color: var(--color-dark-brown);
    text-align: center;
}

.who-cta-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.who-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-cream);
    line-height: 1.2;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 7rem 2rem 4rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hampers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .who-section-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .who-section-alt .who-section-container {
        direction: ltr;
    }
    
    .who-section-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-light-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(44, 24, 16, 0.15);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta,
    .hero-whatsapp {
        justify-content: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .featured-hampers,
    .featured-chocolates,
    .who-we-serve {
        padding: 5rem 0;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hampers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card img {
        height: 250px;
    }
    
    .hamper-card {
        height: 400px;
    }
    
    .hamper-name {
        font-size: 1.5rem;
    }
    
    .hamper-tagline {
        font-size: 0.875rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-image {
        height: 250px;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .hamper-modal .modal-image {
        height: 300px;
    }
    
    .hamper-modal .modal-title {
        font-size: 1.75rem;
    }
    
    .contact-page {
        padding: 6rem 1.5rem 3rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .whatsapp-btn-large {
        width: 100%;
        padding: 1.25rem 2rem;
    }
    
    .who-header {
        padding: 6rem 1.5rem 3rem;
    }
    
    .who-title {
        font-size: 2.5rem;
    }
    
    .who-subtitle {
        font-size: 1.125rem;
    }
    
    .who-section {
        padding: 4rem 1.5rem;
    }
    
    .who-section-container {
        gap: 2rem;
    }
    
    .who-section-image img {
        height: 300px;
    }
    
    .who-section-title {
        font-size: 1.75rem;
    }
    
    .who-section-description {
        font-size: 1rem;
    }
    
    .who-cta {
        padding: 4rem 1.5rem;
    }
    
    .who-cta-content {
        gap: 1.5rem;
    }
    
    .who-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .product-name {
        font-size: 1.25rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
    
    .hamper-name {
        font-size: 1.25rem;
    }
    
    .hamper-tagline {
        font-size: 0.8rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
    
    .contact-page {
        padding: 5rem 1rem 2.5rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 0.9375rem;
    }
    
    .contact-details {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-label {
        font-size: 0.6875rem;
    }
    
    .contact-value {
        font-size: 0.9375rem;
    }
    
    .whatsapp-btn-large {
        font-size: 0.9375rem;
        padding: 1.125rem 1.5rem;
    }
    
    .who-header {
        padding: 5rem 1rem 2.5rem;
    }
    
    .who-title {
        font-size: 2rem;
    }
    
    .who-subtitle {
        font-size: 1rem;
    }
    
    .who-section {
        padding: 3rem 1rem;
    }
    
    .who-section-image img {
        height: 250px;
    }
    
    .who-section-title {
        font-size: 1.5rem;
    }
    
    .who-section-description {
        font-size: 0.9375rem;
    }
    
    .who-cta {
        padding: 3rem 1rem;
    }
    
    .who-cta-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
