/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #d7ebe6;
    font-size: 17px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.8;
    font-weight: 400;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

a:hover {
    color: #444444;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Color Palette Variables */
:root {
    --primary-color: #6b4e2f;
    --secondary-color: #666666;
    --accent-color: #d7ebe6;
    --text-primary: #6b4e2f;
    --text-secondary: #6b4e2f;
    --text-light: #999999;
    --background-white: #ffffff;
    --background-light: #d7ebe6;
    --border-color: #e5e5e5;
    --shadow: rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: white;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: none;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-primary-large {
    padding: 20px 50px;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a6741 100%);
    color: white;
    border: 2px solid var(--primary-color);
    letter-spacing: 0.5px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(92, 147, 76, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, #4a6741 0%, var(--primary-color) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(92, 147, 76, 0.4);
    border-color: #4a6741;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-text {
    color: var(--primary-color);
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1rem;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Header and Navigation */
header {
    background: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-secondary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--background-white);
    padding: 80px 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-img {
    height: 400px;
    background: var(--accent-color);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    margin-top: 30px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(92, 147, 76, 0.2);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.facebook-icon {
    color: #1877F2;
}

.facebook-icon:hover {
    background: #1877F2;
    color: white;
}

.instagram-icon {
    color: #E4405F;
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

/* Placeholder Images */
.placeholder-image {
    background: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 400;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Page Headers */
.page-header {
    background: linear-gradient(180deg, var(--background-light) 0%, #f0f8f6 50%, #e8f5f3 100%);
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(232, 245, 243, 0.3) 100%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 50%, #e1f0e1 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(92, 147, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(92, 147, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(92, 147, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-image .placeholder-image {
    height: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Commission Info Section */
.commission-info {
    background: var(--background-white);
    text-align: center;
}

.commission-content {
    max-width: 800px;
    margin: 0 auto;
}

.commission-text {
    margin-bottom: 3rem;
}

.commission-text h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Shop Favourites */
.shop-favourites {
    background: var(--background-light);
    text-align: center;
}

.shop-favourites h2 {
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.shop-item {
    background: var(--background-white);
    padding: 0;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.shop-item:hover {
    transform: translateY(-5px);
}

.shop-item .placeholder-image {
    height: 200px;
    margin: 0;
    padding: 0;
}

.shop-item h3 {
    margin: 2rem 30px 1rem 30px;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-item .btn {
    margin: 0 30px 30px 30px;
}

/* Customer Review */
.customer-review {
    background: var(--background-white);
}

.review-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.review-image .placeholder-image {
    height: 250px;
}

.review-text h3 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 50%, #ddeeff 100%);
    color: var(--text-color);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #87ceeb;
}



.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(135, 206, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(135, 206, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 60px;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 18px;
    border-radius: 25px;
    border: 2px solid rgba(92, 147, 76, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary-color), #4a6741);
    padding: 8px;
    border-radius: 50%;
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-large.cta-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary-large.cta-primary:hover {
    background: #4a6741;
    color: white;
    border-color: #4a6741;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-secondary-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-secondary-large:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cta-testimonial {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-testimonial blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
}

.cta-testimonial blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -20px;
    top: -10px;
    opacity: 0.3;
    font-family: serif;
}

.cta-testimonial cite {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Gallery Section */
.full-gallery {
    background: var(--background-white);
    padding: 60px 0 80px 0;
    position: relative;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.gallery-item {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.gallery-item .placeholder-image {
    height: 320px;
    margin: 0;
    padding: 0;
}

.gallery-item-info {
    padding: 20px;
}

.gallery-item-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 500;
}

.gallery-item-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.gallery-style {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-secondary);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-cta {
    text-align: center;
}

.gallery-note {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Carousel Navigation - Hidden on Desktop */
.carousel-nav,
.carousel-dots {
    display: none;
}

/* Gallery Filters - Now integrated into gallery section */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 0;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: var(--background-white);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 147, 76, 0.15);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(92, 147, 76, 0.2);
    color: var(--primary-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a7c59 100%);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(92, 147, 76, 0.3);
}

.filter-btn.active::before {
    display: none;
}

@media (max-width: 768px) {
    .gallery-filters {
        padding: 40px 0;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* About Section */
.about {
    background: var(--background-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffeef8, #e8f4f8);
    border-radius: 15px;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    margin: 0;
}

.about-image .placeholder-image {
    height: 300px;
}

/* Process Section */
.process {
    background: linear-gradient(135deg, #ffeef8, #e8f4f8);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--background-white);
    border-radius: 20px;
    box-shadow: 0 6px 20px var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Testimonials */
.testimonials {
    background: var(--background-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background: linear-gradient(135deg, #ffeef8, #e8f4f8);
    border-radius: 20px;
    box-shadow: 0 6px 20px var(--shadow);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pricing */
.pricing {
    background: var(--background-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--background-white);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
}

.pricing-card.premium {
    border-color: var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-image {
    margin: 20px 0;
}

.pricing-image .placeholder-image {
    height: 200px;
}

.price {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin: 20px 0;
}

.price-range {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin: 20px 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.size-pricing {
    margin: 1.5rem 0;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.size-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.size-option:last-child {
    border-bottom: none;
}

.size {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 1rem;
}

.size-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.features {
    list-style: none;
    text-align: center;
    margin: 30px 0;
    flex-grow: 1;
}

.features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.5;
}

/* Additional Options - now integrated into pricing section */
.dropdown-section {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 0;
    border-top: 2px solid var(--border-color);
}

.dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-toggle:hover {
    background: rgba(92, 147, 76, 0.05);
    border-radius: 8px;
    padding: 20px;
}

.dropdown-toggle h2 {
    text-align: center;
    color: var(--primary-color);
    margin: 0;
    font-size: 2.5rem;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-content.active {
    max-height: 2000px;
}

.options-list {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
}

.option-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(92, 147, 76, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(92, 147, 76, 0.12);
}

.option-item h3 {
    padding: 25px 30px 15px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(92, 147, 76, 0.1);
}

.option-details {
    padding: 20px 30px 25px;
}

.option-details p {
    margin: 0 0 10px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.option-details p:last-child {
    margin-bottom: 0;
}

.option-details p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.option-details p em {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Order Guide Section */
.order-guide {
    background: var(--background-light);
    padding: 80px 0;
}

.order-guide h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 500;
}

.guide-section {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(92, 147, 76, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.guide-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
}

/* Photo Guide Styling */
.photo-guide {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px 40px;
    width: 100%;
}

.photo-guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.photo-guide-left h3 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.photo-example {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.photo-example img {
    width: 100%;
    height: 350px !important;
    object-fit: cover;
}

.example-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.example-label.good {
    background: #22c55e;
    color: white;
}

.photo-guide-right h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.3rem;
}

.photo-tips-list {
    list-style: none;
    padding: 0;
}

.photo-tips-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
}

.photo-tips-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
    font-size: 1.2rem;
}

/* Process Slideshow Styling */
.process-slideshow {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(107, 78, 47, 0.1);
    aspect-ratio: 1/1;
}

.process-slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.process-slide {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.process-step {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.process-step-number {
    background-color: #6b4e2f;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-step-content {
    max-width: 100%;
}

.process-step-content h4 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-size: 1.5rem;
    color: #6b4e2f;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
}

.process-step-content p {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.process-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.process-indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(107, 78, 47, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.process-indicator.active {
    background-color: #6b4e2f;
}

.process-main {
    flex: 1;
}

.process-question {
    width: 100%;
    padding: 0 0 8px 0;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

.step-number-inline {
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.process-question span:nth-child(2) {
    flex: 1;
    text-align: left;
}

.process-answer {
    padding: 0;
    background: transparent;
}

.process-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    font-weight: 400;
}

/* Info Grid Styling */
/* New Sleek Information Layout */
.info-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 78, 47, 0.1);
    padding: 40px 60px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-category {
    flex: 1;
}

.info-category h4 {
    color: #6b4e2f;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #6b4e2f;
    position: relative;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.5px;
    text-align: center;
}

.info-details {
    padding: 0 10px;
}

.info-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(107, 78, 47, 0.1);
}

.info-detail:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
}

.detail-label {
    font-size: 1.05rem;
    color: #6b4e2f;
    font-weight: 500;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
}

.detail-value {
    font-size: 1.05rem;
    color: #6b4e2f;
    font-weight: 600;
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
}

.info-footnote {
    font-size: 0.9rem;
    color: #6b4e2f;
    opacity: 0.8;
    font-style: italic;
    text-align: center;
    padding-top: 15px;
    border-top: 1px dashed rgba(107, 78, 47, 0.2);
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.5;
}

/* Responsive styles for the info section */
@media (max-width: 991px) {
    .info-container {
        padding: 35px 30px;
    }

    .info-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .info-container {
        padding: 30px 25px;
    }

    .info-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 35px;
    }
    
    .info-category {
        padding-bottom: 5px;
    }
    
    .info-category h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
        text-align: center;
    }
    
    .detail-label,
    .detail-value {
        font-size: 1rem;
    }
    
    .info-detail {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .info-container {
        padding: 25px 20px;
        border-radius: 10px;
    }
    
    .info-row {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .info-category h4 {
        font-size: 1.2rem;
        margin-bottom: 18px;
        text-align: center;
    }
    
    .info-detail {
        padding: 8px 0;
    }
    
    .info-footnote {
        font-size: 0.85rem;
        padding-top: 12px;
    }
    
    .process-slideshow {
        max-width: 300px;
    }
    
    .process-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .process-step-content h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .process-step-content p {
        font-size: 0.9rem;
    }
    
    .process-indicator {
        width: 10px;
        height: 10px;
    }
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(92, 147, 76, 0.05);
    line-height: 1.5;
}

/* Responsive design for order guide */
@media (max-width: 1024px) {
    .photo-guide {
        max-width: 800px;
        padding: 30px 30px;
    }
    
    .photo-guide-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .photo-guide {
        padding: 25px 20px;
    }
    
    .photo-guide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .photo-guide-left h3 {
        text-align: center;
        font-size: 1.5rem;
    }
    
    .photo-example img {
        height: 300px !important;
    }
    
    .photo-guide-right h4 {
        font-size: 1.2rem;
    }
    
    .photo-tips-list li {
        font-size: 1rem;
        padding: 10px 0;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
    
    .process-step:not(:last-child)::after {
        top: 45px;
        height: calc(100% - 25px);
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .step-content {
        padding: 0 20px;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    /* These styles are now handled in the new info layout media queries */
}
    
    .guide-section {
        padding: 12px 15px;
        margin-bottom: 20px;
    }
    
    .guide-section h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .process-content-wrapper {
        gap: 15px;
        padding: 15px 18px;
    }
    
    .process-slideshow {
        max-width: 400px;
    }
    
    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .process-step-content h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .process-step-content p {
        font-size: 0.95rem;
    }
}

/* FAQ */
.pricing-faq,
.contact-faq {
    background: linear-gradient(180deg, var(--background-white) 0%, #f8fffe 50%, #e8f5f3 100%);
    padding: 80px 0;
}

.contact-faq h2,
.pricing-faq h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 500;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(92, 147, 76, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(92, 147, 76, 0.12);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(92, 147, 76, 0.05);
}

.faq-question[aria-expanded="true"] {
    background: rgba(92, 147, 76, 0.08);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Package Comparison */
.package-comparison {
    background: var(--background-light);
}

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

table {
    width: 100%;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-collapse: collapse;
}

thead {
    background: var(--primary-color);
    color: white;
}

th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

th {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.pricing-row {
    background: var(--background-light);
    font-weight: 500;
}

/* Styles Showcase */
.styles-showcase {
    background: linear-gradient(180deg, #fafafa 0%, var(--background-white) 30%, #f8fffe 70%, #e8f5f3 100%);
    padding: 80px 0;
    position: relative;
}

.styles-showcase::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.6) 0%, rgba(250, 250, 250, 0.8) 50%, #fafafa 100%);
    pointer-events: none;
}

.styles-showcase h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.style-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(92, 147, 76, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(92, 147, 76, 0.15);
}

.style-image {
    margin-bottom: 20px;
}

.style-image .placeholder-image {
    height: 200px;
}

/* Contact Intro Section */
.contact-intro {
    background: linear-gradient(135deg, var(--background-white) 0%, #f8fffe 50%, #e8f5f3 100%);
    padding: 60px 0;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Form */
.contact-form-section {
    background: var(--background-white);
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 147, 76, 0.1);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
}

.form-section {
    margin-bottom: 35px;
    padding: 30px;
    background: rgba(248, 255, 254, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(92, 147, 76, 0.1);
    transition: box-shadow 0.3s ease;
}

.form-section:hover {
    box-shadow: 0 8px 20px rgba(92, 147, 76, 0.1);
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 15px;
}

.form-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(92, 147, 76, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background-white);
    color: var(--text-primary);
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(92, 147, 76, 0.1);
    transform: translateY(-1px);
}

small {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Radio and Checkbox Groups */
.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option, .checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 2px solid rgba(92, 147, 76, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.radio-option:hover, .checkbox-option:hover {
    border-color: rgba(92, 147, 76, 0.3);
    box-shadow: 0 5px 15px rgba(92, 147, 76, 0.1);
    transform: translateY(-2px);
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.radio-option label,
.checkbox-option label {
    margin: 0;
    cursor: pointer;
    flex: 1;
    text-transform: none;
    letter-spacing: normal;
}

.radio-option label strong,
.checkbox-option label strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.radio-option label span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Price Estimate */
.price-estimate {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
}

.price-estimate h3 {
    color: white;
    margin-bottom: 20px;
}

.price-breakdown {
    margin-bottom: 20px;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 500;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Form Submit */
.form-submit {
    text-align: center;
    padding-top: 30px;
}

.form-note {
    margin-top: 20px;
    color: var(--text-light);
}

/* File Upload Styles */
.file-upload-area {
    position: relative;
    border: 2px dashed rgba(92, 147, 76, 0.3);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(92, 147, 76, 0.05);
    box-shadow: 0 8px 25px rgba(92, 147, 76, 0.15);
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    pointer-events: none;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.file-upload-text p {
    margin: 5px 0;
    color: var(--text-secondary);
}

.file-upload-text p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.file-preview {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.file-preview-item {
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.file-preview-item:hover {
    transform: translateY(-2px);
}

.file-preview-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.file-preview-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    word-break: break-word;
    line-height: 1.2;
}

.file-preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.file-preview-remove:hover {
    background: rgba(255, 0, 0, 1);
}

/* Netlify reCAPTCHA styling */
.g-recaptcha,
[data-netlify-recaptcha="true"] {
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

/* Enhanced calendar input */
input[type="date"] {
    position: relative;
    background: var(--background-white);
    border: 2px solid rgba(92, 147, 76, 0.2);
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%235c934c" viewBox="0 0 24 24"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"/></svg>') no-repeat center;
    background-size: 20px;
    cursor: pointer;
}

input[type="date"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(92, 147, 76, 0.1);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card,
.process-card,
.guarantee-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(92, 147, 76, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover,
.process-card:hover,
.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(92, 147, 76, 0.15);
}

.contact-card h3,
.process-card h3,
.guarantee-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.process-list {
    padding-left: 20px;
}

.process-list li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.guarantee-list {
    list-style: none;
    padding: 0;
}

.guarantee-list li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 50%, #e1f0e1 100%);
    color: var(--text-color);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary-color);
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(92, 147, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(92, 147, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(92, 147, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background: var(--background-white);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
    justify-items: center;
}

.footer-section h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.8rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.8rem;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* About Page Styles */
.artist-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-image {
    text-align: center;
}

.story-image .placeholder-image {
    height: 400px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
}

.what-i-do {
    padding: 80px 0;
    background: #f8f9fa;
}

.what-i-do h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.what-i-do-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.what-i-do-text {
    position: relative;
}

.what-i-do-text h3 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.what-i-do-text::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 10px;
    bottom: 10px;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), #4a6741);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(92, 147, 76, 0.3);
}

.what-i-do-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    text-align: left;
    font-weight: 400;
}

.what-i-do-content p:last-child {
    margin-bottom: 0;
}

.what-i-do-visual {
    background: linear-gradient(135deg, rgba(92, 147, 76, 0.08), rgba(92, 147, 76, 0.03));
    border-radius: 25px;
    padding: 45px 35px;
    border: 2px solid rgba(92, 147, 76, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.what-i-do-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(92, 147, 76, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.visual-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 28px 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(92, 147, 76, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.visual-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(92, 147, 76, 0.3);
    background: rgba(255, 255, 255, 1);
}

.visual-item-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #4a6741);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(92, 147, 76, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.visual-item:hover .visual-item-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(92, 147, 76, 0.35);
}

.visual-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.visual-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 2rem;
}

.service-icon .placeholder-image {
    height: 80px;
    width: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.my-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.my-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(92, 147, 76, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(92, 147, 76, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.my-process h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 30px 15px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(92, 147, 76, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #4a6741);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    /* removed vertical translate to prevent upward movement on hover */
    transform: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #4a6741);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(92, 147, 76, 0.4);
    border: 3px solid white;
    margin-bottom: 20px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #4a6741);
    z-index: -1;
    opacity: 0.2;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.process-step:hover .step-number::after {
    transform: scale(1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.step-content p {
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0 auto;
}

.values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.value-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-card p {
    line-height: 1.6;
}

/* Shipping Page Styles */
.shipping-info {
    padding: 80px 0;
    background: white;
}

.shipping-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 4rem;
}

.shipping-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.shipping-card h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.shipping-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shipping-option {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.shipping-option strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.shipping-price {
    font-weight: 600;
    color: #2c2c2c;
}

.shipping-option small {
    color: #6c757d;
    font-style: italic;
}

.shipping-notes {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 2rem;
}

.shipping-notes h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.shipping-notes ul {
    list-style: none;
    padding: 0;
}

.shipping-notes li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.shipping-notes li:before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.legal-terms {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-terms h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.legal-section h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.legal-content h4 {
    margin: 1.5rem 0 1rem 0;
    color: #2c2c2c;
    font-size: 1.1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: #e9ecef;
    border-radius: 8px;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

/* TOC Page Styles */
.toc-section {
    padding: 80px 0;
    background: white;
}

.toc-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.toc-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.toc-card:hover {
    transform: translateY(-5px);
}

.toc-card h3 {
    margin-bottom: 1rem;
}

.toc-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
}

.toc-card h3 a:hover {
    text-decoration: underline;
}

.toc-card p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 2rem 0;
}

.legal-info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.legal-info-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.legal-info-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    /* Logo container mobile optimization */
    .logo-container {
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .logo-container img {
        height: 35px !important;
    }

    .logo {
        font-size: 1.2rem !important;
    }

    /* Gallery Grid - single column on mobile */
    .gallery-carousel-wrapper {
        position: relative;
        overflow: hidden;
    }

    .gallery-grid {
        display: flex !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 0 !important;
        max-width: 100% !important;
        transition: transform 0.3s ease;
        will-change: transform;
    }

    .gallery-item {
        min-width: 100%;
        flex-shrink: 0;
        margin-right: 0;
    }

    .gallery-item .placeholder-image {
        height: 250px !important;
    }

    /* Carousel Navigation */
    .carousel-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        padding: 0 10px;
        pointer-events: none;
    }

    .carousel-btn {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid var(--border-color);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: bold;
        color: var(--text-primary);
        cursor: pointer;
        transition: all 0.3s ease;
        pointer-events: all;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .carousel-btn:hover {
        background: white;
        transform: scale(1.1);
    }

    .carousel-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Carousel Dots */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: rgba(107, 78, 47, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid var(--border-color);
        gap: 0;
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
        font-size: 1.1rem !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    /* Hero */
    .hero-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .hero-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 30px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    /* Shop */
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Review */
    .review-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    /* CTA Section Mobile */
    .final-cta {
        padding: 60px 0;
    }

    .cta-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 2rem;
    }

    .feature-item {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 2rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 280px;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .cta-testimonial {
        margin: 0 20px;
        padding: 20px;
    }

    .cta-testimonial blockquote {
        font-size: 1rem;
    }

    .cta-testimonial blockquote::before {
        font-size: 3rem;
        left: -15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    /* About Page Responsive */
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Shipping Page Responsive */
    .shipping-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-section {
        padding: 25px;
    }
    
    .legal-content ul {
        padding-left: 1.5rem;
    }

    /* TOC Page Responsive */
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-info-grid {
        grid-template-columns: 1fr;
    }

    /* Process Section Mobile */
    .my-process {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 25px;
        margin: 0 20px;
    }

    .process-step {
        padding: 35px 20px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .step-content p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* What I Do Mobile */
    .what-i-do-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .what-i-do-text::before {
        display: none;
    }

    .what-i-do-content p {
        text-align: center;
    }

    .what-i-do-visual {
        padding: 30px 20px;
    }

    .visual-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .what-i-do-content {
        gap: 40px;
    }

    .what-i-do-visual {
        padding: 35px 25px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 25px;
    }
    
    .process-step {
        padding: 35px 20px;
        min-height: 280px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    blockquote {
        font-size: 1.1rem;
    }

    .btn-primary-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Extra small screen optimizations */
    .logo-container img {
        height: 30px !important;
    }

    .logo {
        font-size: 1rem !important;
    }

    .nav-link {
        font-size: 1rem !important;
    }

    .gallery-item .placeholder-image {
        height: 200px !important;
    }

    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 1.3rem;
    }

    .section-description {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .final-cta,
    footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-faq h2 {
        font-size: 1.8rem;
    }
}

/* Mobile-specific styles for enhanced features */
@media (max-width: 768px) {
    .file-upload-area {
        padding: 30px 15px;
    }
    
    .upload-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .file-upload-text p:first-of-type {
        font-size: 1rem;
    }
    
    .file-preview {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .file-preview-item {
        padding: 8px;
    }
    
    .file-preview-image {
        height: 60px;
    }
    
    .file-preview-name {
        font-size: 0.7rem;
    }
    
    .deadline-warning {
        font-size: 0.8rem !important;
        padding: 10px 12px !important;
    }
    
    .g-recaptcha,
    [data-netlify-recaptcha="true"] {
        transform: scale(0.9);
        transform-origin: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .radio-option, .checkbox-option {
        padding: 15px;
        gap: 12px;
    }
    
    .radio-option label strong,
    .checkbox-option label strong {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .file-upload-area {
        padding: 20px 10px;
    }
    
    .file-upload-text p {
        font-size: 0.9rem;
    }
    
    .file-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    input[type="date"]::-webkit-calendar-picker-indicator {
        background-size: 16px;
    }
}

/* Success Page Styles */
.success-section {
    background: var(--background-color);
    min-height: 80vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.success-content {
    max-width: 900px;
    margin: 0 auto;
}

.success-message {
    background: var(--background-white);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(92, 147, 76, 0.1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.success-message h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.success-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.success-intro strong {
    color: var(--primary-color);
}

.success-steps {
    margin: 3rem 0;
}

.success-steps h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(92, 147, 76, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(92, 147, 76, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(92, 147, 76, 0.1);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    text-align: left;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.success-contact {
    margin: 3rem 0;
    padding: 30px;
    background: rgba(92, 147, 76, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(92, 147, 76, 0.1);
}

.success-contact h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-contact p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.success-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.success-contact a:hover {
    border-bottom-color: var(--primary-color);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0 2rem 0;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 147, 76, 0.3);
}

.reference-number {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(92, 147, 76, 0.2);
}

.reference-number p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* Success Page Mobile Styles */
@media (max-width: 768px) {
    .success-section {
        padding: 40px 0;
    }
    
    .success-message {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .success-message h1 {
        font-size: 2rem;
    }
    
    .success-intro {
        font-size: 1.1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin-bottom: 10px;
    }
    
    .success-contact {
        padding: 20px;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .success-message {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .success-message h1 {
        font-size: 1.8rem;
    }
    
    .steps-grid {
        gap: 15px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .step-content {
        text-align: center;
    }
}

/* Commission Process Styles */
.commission-intro {
    padding: 80px 0;
    background: var(--background-light);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.commission-step {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.commission-step:nth-child(even) {
    background: var(--background-light);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a6741 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(92, 147, 76, 0.3);
}

.step-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.step-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.step-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
}

.photo-tips {
    background: rgba(92, 147, 76, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.photo-tips h4 {
    margin-top: 0;
}

.photo-tips ul {
    margin: 0;
    padding-left: 20px;
}

.photo-tips li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.booking-details {
    background: rgba(92, 147, 76, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.booking-details h4 {
    margin-top: 0;
}

.booking-details ul {
    margin: 0;
    padding-left: 20px;
}

.booking-details li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pricing-options .pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(92, 147, 76, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-options .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(92, 147, 76, 0.15);
}

.pricing-options .pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-options .pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-details p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(92, 147, 76, 0.1);
}

.pricing-description {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 15px;
}

.step-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cta-note {
    font-style: italic;
    color: var(--text-muted);
    margin: 0;
}

.photo-examples {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-example {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.example-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.example-label.good {
    background: #22c55e;
    color: white;
}

.photo-tips-visual {
    background: rgba(92, 147, 76, 0.05);
    padding: 20px;
    border-radius: 12px;
}

.photo-tips-visual h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.process-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-image {
    text-align: center;
}

.process-image p {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-muted);
}

.shipping-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.shipping-option {
    background: rgba(92, 147, 76, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(92, 147, 76, 0.1);
}

.shipping-option h5 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-weight: 600;
}

.shipping-option p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* Responsive Design for Commission Page */
@media (max-width: 768px) {
    .intro-content,
    .step-content,
    .pricing-options,
    .shipping-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .commission-step {
        padding: 50px 0;
    }
    
    .photo-tips,
    .booking-details {
        padding: 15px;
    }
}

/* Special styling for info guide section */
.info-guide {
    background-color: transparent;
    box-shadow: none;
    padding: 20px 0 30px;
    border: none;
}

.info-guide h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}
