/* ===================================
   Premium Candle Website Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #795243;
    --secondary-color: #925632;
    --accent-color: #c06431;
    --light-accent: #cd8b59;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #faf8f6;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(121, 82, 67, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 20px var(--shadow);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content i {
    font-size: 2rem;
    color: var(--accent-color);
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-accept:hover {
    background: var(--secondary-color);
}

.btn-learn {
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 15px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(205, 139, 89, 0.1), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-text {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-accent);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 0 0 200px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: #c0c0c0;
}

.hero:hover .hero-image {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 28px;
}

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

/* Section Styling */
section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center .section-subtitle {
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content {
    padding-right: 20px;
}

.section-text {
    margin-bottom: 20px;
    color: var(--text-light);
}

.artisan-info {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.artisan-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.artisan-item i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.artisan-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.artisan-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.section-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    background: #c0c0c0;
}

/* Collections Preview */
.collections-preview {
    background: var(--white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.card-image {
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: #c0c0c0;
}

.collection-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    gap: 12px;
}

/* Trust Section */
.trust-section {
    background: var(--bg-light);
    padding: 50px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.trust-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-section {
    background: var(--white);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--white);
}

.accordion-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-content .btn {
    background: var(--white);
    color: var(--primary-color);
}

.cta-content .btn:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--light-accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--light-accent);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--light-accent);
    padding-left: 5px;
}

.footer-hours {
    line-height: 1.8;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Page Hero (Internal Pages) */
.page-hero {
    background: linear-gradient(135deg, var(--bg-light), var(--white));
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Programs Section */
.programs-section {
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.program-item {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon i {
    font-size: 2rem;
    color: var(--white);
}

.program-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.program-item p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.program-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Featured Collections Showcase */
.featured-collections {
    background: var(--white);
}

.collection-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #c0c0c0;
}

.showcase-content {
    padding: 20px;
}

.badge {
    display: inline-block;
    padding: 6px 15px;
    background: var(--light-accent);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.showcase-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

/* Advantages Section */
.advantages-section {
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.advantage-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.advantage-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg-light);
    font-family: 'Cormorant Garamond', serif;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Classes Section */
.classes-section {
    background: var(--bg-light);
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.class-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
}

.class-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.class-header i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.class-header h3 {
    color: var(--white);
    font-size: 1.6rem;
}

.class-body {
    padding: 30px;
}

.class-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.class-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.class-features li {
    display: flex;
    align-items: start;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.class-features i {
    color: var(--accent-color);
    margin-top: 3px;
}

.class-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Custom Showcase */
.custom-showcase {
    background: var(--white);
    padding: 80px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-grid .showcase-image {
    height: 450px;
}

.showcase-grid .showcase-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.showcase-grid .showcase-content p {
    margin-bottom: 20px;
}

/* Popular Blends */
.popular-blends {
    background: var(--bg-light);
}

.blends-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.blend-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.blend-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blend-notes {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

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

/* Story Section */
.story-section {
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text {
    padding-right: 20px;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    background: #c0c0c0;
}

/* Artisans Section */
.artisans-section {
    background: var(--bg-light);
}

.artisans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.artisan-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
}

.artisan-image {
    height: 300px;
}

.artisan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #c0c0c0;
}

.artisan-info {
    padding: 30px;
}

.artisan-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.artisan-role {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.artisan-info p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--light-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
    background: var(--bg-light);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    width: 2px;
    height: calc(100% + 20px);
    background: var(--accent-color);
    opacity: 0.3;
}

.timeline-marker {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px var(--shadow-lg);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-content p {
    color: var(--text-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(192, 100, 49, 0.1);
}

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

.contact-form button {
    width: 100%;
}

/* Map Section */
.map-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.map-wrapper iframe {
    display: block;
}

/* Schedule Section */
.schedule-section {
    background: var(--white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.schedule-item {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
}

.schedule-item h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.schedule-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.schedule-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Success Section */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: var(--bg-light);
}

.success-content {
    text-align: center;
    max-width: 600px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 4rem;
    color: var(--white);
}

.success-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.success-submessage {
    color: var(--text-light);
    margin-bottom: 35px;
}

.success-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Policy Section */
.policy-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 5px 25px var(--shadow);
}

.policy-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.policy-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content ul li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-content ul li strong {
    color: var(--primary-color);
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--primary-color);
}

.policy-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-table {
    margin: 30px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

.return-tips {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.return-tips h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.return-tips ul li {
    margin-bottom: 12px;
}

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-grid,
    .story-content,
    .showcase-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 8px;
        margin-top: 40px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item {
        grid-template-columns: 1fr;
    }
    
    .showcase-item.reverse {
        direction: ltr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .class-grid {
        grid-template-columns: 1fr;
    }
    
    .blends-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artisans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 10px 27px var(--shadow);
        transition: left 0.3s ease;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .collections-grid,
    .trust-grid,
    .advantages-grid,
    .blends-grid,
    .artisans-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 30px 25px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .success-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Ensure mobile display at 320px */
@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .policy-content {
        padding: 20px 15px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
}
