/* CSS Variables */
:root {
    --primary: #512D38;
    --secondary: #B27092;
    --accent: #F4BFDB;
    --light: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #E0E0E0;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

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

body {
    color: var(--dark);
    line-height: 1.6;
    background-color: #fafafa;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}
section
{
    overflow-x: hidden;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #3a2028;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav ul li a.active,
.nav ul li a:hover {
    color: var(--primary);
}

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

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 20px;
    color: var(--primary);
    padding: 5px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Active state for hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.nav {
    display: flex;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav ul li {
    margin: 0 15px;
}

/* Mobile menu container */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--light);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: right 0.3s ease-out;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.mobile-nav ul li {
    margin: 15px 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray);
    transition: var(--transition);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--secondary);
    padding-left: 10px;
}

.mobile-nav ul li a::after {
    display: none;
}

/* Close button for mobile menu */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay for mobile menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions .cart-btn {
        margin-right: 0;
    }
}

/* Prevent body scrolling when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f9f5f7 0%, #eef2f6 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--secondary);
    max-width: 500px;
}

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

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

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

.product-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

/* Sustainability */
.sustainability-split {
    padding: 100px 0;
    background-color: #fafafa;
}

.sustainability-split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sustainability-split-text .section-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.sustainability-split-text .section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 40px;
}

.sustainability-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

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

.feature-details h3 {
    
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-details p {
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.8;
}

.sustainability-split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Responsive adjustments for tablets and mobile */
@media (max-width: 992px) {
    .sustainability-split-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .sustainability-split-text .section-title {
        font-size: 2.4rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-author p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: var(--secondary);
    color: var(--light);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 14px 28px;
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Add these styles to existing CSS file */

/* Showcase Section */
.showcase {
    padding: 120px 0;
    background-color: #fdf6f8; /* A very light, premium-feeling accent color */
    overflow: hidden; /* Prevents animations from showing outside the section */
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 60px;
}

.showcase-text {
    /* Animation: fade in and slide up */
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

.showcase-headline {
    font-size: 4.5rem; /* Larger, more impactful font size */
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.showcase-subheading {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 500px; /* Constrains line length for readability */
    margin-bottom: 40px;
}

.showcase-actions .btn {
    margin-right: 15px; /* Spacing between buttons */
}

.showcase-actions .btn:last-child {
    margin-right: 0;
}

.showcase-visual {
    position: relative;
    /* Animation: fade in from the right */
    animation: fadeInSlideRight 0.8s ease-out 0.2s forwards;
    opacity: 0; /* Start hidden for animation */
}

.showcase-image-wrapper {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: rotate(2deg); /* A slight, playful rotation */
    transition: var(--transition);
}

.showcase-image-wrapper:hover {
    transform: rotate(0deg) scale(1.03); /* Interactivity on hover */
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .showcase-text {
        order: 2; /* Text appears below the image on mobile */
    }

    .showcase-visual {
        order: 1;
    }

    .showcase-subheading {
        margin-left: auto;
        margin-right: auto;
    }

    .showcase-headline {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .showcase-headline {
        font-size: 2.8rem;
    }

    .showcase-actions .btn {
        display: block;
        margin: 0 auto 15px; /* Stack buttons on small screens */
        max-width: 250px;
    }
}


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

@keyframes fadeInSlideRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotate(2deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(2deg);
    }
}

/* Collections Section */
.collections {
    padding: 80px 0;
    background: var(--light);
}

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

.collection-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.collection-image {
    height: 250px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.collection-info {
    padding: 20px;
}

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

.collection-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Product Sections */
.product-section {
    padding: 80px 0;
    background: var(--light);
}

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

.product-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.collection-description {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    background: var(--secondary);
    padding: 20px;
    border-radius: var(--radius);
    color: var(--light);
}

.feature h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--light);
}

.feature p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-item {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-item:hover .product-img img {
    transform: scale(1.03);
}

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-details p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.product-specs span {
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
}

/* Sustainability Products */
.materials-feature {
    padding: 120px 0;
    background-color: var(--light);
}

.materials-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.materials-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.7;
}

.materials-grid-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr; /* Image slightly larger */
    gap: 80px;
    align-items: center;
}

.materials-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

.materials-details {
    display: flex;
    flex-direction: column;
}

.feature-pillar {
    padding: 30px 0;
    border-bottom: 1px solid var(--gray);
}

.feature-pillar:first-child {
    padding-top: 0;
}

.feature-pillar:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
     margin-bottom: 40px;
}

.pillar-title {
    
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.pillar-description {
    font-size: 1.05rem;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.8;
}

.materials-details .btn-secondary {
    align-self: flex-start; /* Align button to the left */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .materials-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .materials-title {
        font-size: 2.5rem;
    }
    .materials-intro {
        margin-bottom: 60px;
    }
}

/* Care Guide */
.care-instructions {
    padding: 120px 0;
    background-color: #fdfdfd; /* A very clean off-white */
}

.care-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

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

.care-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.7;
}

.care-accordion {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
}

.accordion-item {
    border-bottom: 1px solid var(--gray);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

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

.accordion-title {
    
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--dark);
    margin: 0;
}

.accordion-indicator {
    margin-left: auto;
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
}

.accordion-content p {
    padding: 0 25px 25px 95px; /* Aligns with title text */
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.8;
}

/* Active state for accordion */
.accordion-item.active .accordion-indicator {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 460px; /* Adjust as needed for content length */
}

.warranty-info {
    text-align: center;
    max-width: 700px;
    margin: 50px auto 0 auto;
    padding: 25px;
    background-color: #fafafa;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    color: var(--secondary);
    font-size: 1.1rem;
}

.warranty-info strong {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sustainability-products .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sustainability-products .sustainability-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 60px 0;
    }
    
    .product-intro h2 {
        font-size: 2rem;
    }
    
    .care-steps {
        grid-template-columns: 1fr;
    }
}

/* Add these styles to existing CSS file */

/* Vision Hero Section */
.vision-hero {
    position: relative;
    height: 90vh; /* Viewport height for a full-screen feel */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--light);
}

.vision-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/vision-hero.webp');
    background-size: cover;
    background-position: center;
    /* The overlay effect */
    background-color: rgba(30, 30, 30, 0.5); 
    background-blend-mode: overlay;
    z-index: 1;
}

/* Add a darker overlay for contrast */
.vision-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
    z-index: 2;
}


.vision-hero .container {
    position: relative;
    z-index: 3;
}

.hero-headline {
    
    font-size: clamp(3rem, 10vw, 7rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase; /* Bold, high-fashion look */
    color: var(--light);
    margin: 0;
    margin-top: 4rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Animation for the headline */
.hero-headline .headline-line {
    display: block;
    overflow: hidden;
}

.hero-headline .headline-line span {
    display: block;
    transform: translateY(110%);
    animation: revealText 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-headline .line-2 span {
    animation-delay: 0.2s; /* Stagger the animation */
}

.hero-statement {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 30px auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeIn 1s ease-out 0.8s forwards;
    opacity: 0;
}

.hero-actions {
     animation: fadeIn 1s ease-out 1s forwards;
     opacity: 0;
}

.hero-actions .btn-primary {
    background: var(--light);
    color: var(--dark);
}

.hero-actions .btn-primary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: none;
}

.hero-actions .btn-outline {
    border-color: var(--light);
    color: var(--light);
    margin-left: 15px;
}

.hero-actions .btn-outline:hover {
    background: var(--light);
    color: var(--dark);
}

/* Keyframe Animations */
@keyframes revealText {
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vision-hero {
        height: 80vh;
    }
    .hero-statement {
        font-size: 1.1rem;
    }
}

/* Core Values */
.core-values {
    padding: 80px 0;
    background: var(--light);
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.value-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

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

/* Mission Section */
.mission-statement {
    padding: 140px 0;
    background-color: #f4f0f1; /* A soft, warm gray for a sophisticated feel */
}

.mission-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12-column grid for precise control */
    align-items: center;
    gap: 30px;
}

.mission-text-content {
    grid-column: 1 / 8; /* Text takes up the first 7 columns */
    grid-row: 1; /* Ensures it's on the same row as the image */
    background: var(--light);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    z-index: 2; /* Ensures text is on top of the image */
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.mission-quote {
    
    font-size: 2.8rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    margin: 0 0 30px 0;
    border-left: 4px solid var(--accent);
    padding-left: 30px;
}

.mission-prose p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark);
    opacity: 0.85;
    margin-bottom: 20px;
}

.mission-prose p:last-child {
    margin-bottom: 0;
}

.mission-visual {
    grid-column: 7 / 13; /* Image starts from column 7 to overlap */
    grid-row: 1; /* Same row as the text */
    z-index: 1;
}

.mission-image-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mission-image-wrapper img {
    width: 100%;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .mission-layout {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        gap: 0;
    }

    .mission-text-content,
    .mission-visual {
        grid-column: 1 / -1; /* Both elements span the full width */
    }
    
    .mission-text-content {
        padding: 40px;
        margin-bottom: -50px; /* Pull the text content up over the image */
    }

    .mission-visual {
       margin-top: 0;
    }

    .mission-quote {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .mission-quote {
        font-size: 1.8rem;
    }
}

/* Founders Section */
.founders-story {
    padding: 120px 0;
    background-color: #fdf6f8; /* A very light, premium accent color */
}

.story-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

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

.story-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.7;
}

.founders-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Provides space between columns */
    max-width: 1100px;
    margin: 0 auto;
}

.founder-profile {
    position: relative;
}

/* Asymmetrical positioning */
.founder-profile--jordan {
    margin-top: 80px;
}

.profile-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profile-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.profile-bio {
    background: var(--light);
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: var(--radius);
    width: 90%;
    margin: -60px auto 0 auto; /* Negative margin pulls the text box up */
    position: relative; /* Stacks on top of the image */
    z-index: 2;
}

.founder-name {
    
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.founder-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.profile-bio p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.9;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .founders-layout {
        grid-template-columns: 1fr;
        gap: 80px; /* Increase gap for vertical stacking */
    }

    .founder-profile--jordan {
        margin-top: 0; /* Remove the vertical offset */
    }
}

@media (max-width: 576px) {
    .profile-bio {
        width: 100%;
        margin-top: -40px;
        padding: 25px;
    }

    .founder-name {
        font-size: 1.6rem;
    }
}
/* Impact Section */
.impact {
    padding: 100px 0;
    background: var(--light);
}

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

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

.impact-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat {
    background: var(--secondary);
    padding: 20px;
    border-radius: var(--radius);
    color: var(--light);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(to left, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

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

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

.community-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.community-partners {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.community-partners li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.community-partners li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Future Section */
.future {
    padding: 100px 0;
    background: var(--light);
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.future-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.future-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.goal {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.goal h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.goal p {
    margin: 0;
    color: #555;
}

.vision-button {
    margin-top: 30px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .mission-content,
    .impact-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-image,
    .impact-image,
    .community-image {
        order: -1;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        margin: 0 auto;
    }
    
    .future-goals {
        grid-template-columns: 1fr;
    }
}

/* Add these styles to existing CSS file */

/* Materials Banner Section */
.materials-banner {
    position: relative;
    height: 95vh; /* Near full-screen height */
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light);
    overflow: hidden;
}

.banner-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* Add a subtle zoom effect on load */
    animation: scaleIn 15s ease-out forwards;
    background-image: url('images/materials-hero.webp');
}

.banner-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.materials-banner .container {
    position: relative;
    z-index: 3;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-headline {
    
    font-size: clamp(3.5rem, 10vw, 7rem); /* Responsive typography */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Animation for the headline */
.banner-headline .headline-word {
    display: block;
    overflow: hidden;
}

.banner-headline .headline-word span {
    display: block;
    transform: translateY(110%);
    animation: revealText 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Stagger the animation for the second line */
.banner-headline .headline-word:nth-child(2) span {
    animation-delay: 0.2s;
}

.banner-subheading {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 30px auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

.banner-actions {
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.banner-actions .btn-primary {
    background: var(--light);
    color: var(--dark);
    border: 2px solid var(--light);
}
.banner-actions .btn-primary:hover {
    background: transparent;
    color: var(--light);
}

.banner-actions .btn-outline {
    border-color: var(--light);
    color: var(--light);
    margin-left: 15px;
}
.banner-actions .btn-outline:hover {
    background: var(--light);
    color: var(--dark);
}


/* Keyframe Animations */
@keyframes scaleIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

@keyframes revealText {
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .materials-banner {
        height: 85vh;
    }
    .banner-subheading {
        font-size: 1.1rem;
    }
}

/* Material Philosophy */
.material-creed {
    position: relative;
    padding: 120px 0;
    color: var(--light);
    text-align: center;
}

.creed-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%; /* Focus on a good part of the image */
    z-index: 1;
    background-image: url('images/philosophy.webp');
}

.creed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(81, 45, 56, 0.95), rgba(178, 112, 146, 0.9));
    z-index: 2;
}

.material-creed .container {
    position: relative;
    z-index: 3;
}

.creed-header {
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.creed-main-title {
    
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.creed-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.creed-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: left;
}

.pillar {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05); /* Subtle glassmorphism effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    transition: var(--transition);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.pillar-title {
    
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light);
}

.pillar-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .creed-main-title {
        font-size: 2.8rem;
    }
    .creed-intro {
        font-size: 1.1rem;
    }
    .creed-pillars {
        text-align: center;
    }
}

/* Frame Materials */
.material-spotlight {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.spotlight-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

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

.spotlight-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.7;
}

/* Tab Navigation */
.material-tab-nav {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 50px;
}

.tab-link {
    
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    background: none;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

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

.tab-link.active {
    color: var(--primary);
}

/* The animated underline */
.tab-link::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Sits on top of the container's border */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.tab-link.active::after {
    transform: scaleX(1);
}

/* Tab Content */
.tab-pane {
    display: none; /* Hide panes by default */
    animation: fadeIn 0.5s ease-out; /* Smooth fade-in animation */
}

.tab-pane.active {
    display: block; /* Show the active pane */
}

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

.pane-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

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

.pane-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.9;
    margin-bottom: 30px;
}

.pane-properties {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.pane-properties span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
}
/* You would need to add icon styles if using an icon font/library */
.pane-properties .icon {
    margin-right: 10px;
    color: var(--secondary);
}


/* Fade-in animation keyframe */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pane-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .spotlight-title {
        font-size: 2.5rem;
    }
    .material-tab-nav {
        justify-content: space-around;
    }
    .tab-link {
        padding: 15px 10px;
        font-size: 1rem;
    }
}

/* Lens Technology */
.lens-technology {
    padding: 100px 0;
    background: var(--light);
}

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

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

.technology-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.technology-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.step {
    background: var(--secondary);
    padding: 20px;
    border-radius: var(--radius);
    color: var(--light);
}

.step h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--light);
}

/* Material Innovation */
.material-innovation {
    padding: 100px 0;
    background: linear-gradient(to left, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

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

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

.innovation-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.innovation-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius);
}

.innovation-item h4 {
    margin-bottom: 10px;
    color: var(--light);
}

.innovation-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.innovation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Certification */
.certification {
    padding: 80px 0;
    background: var(--light);
}

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

.certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.cert-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cert-logo {

    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cert-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cert-info p {
    color: #555;
    line-height: 1.6;
}

.transparency-note {
    background: var(--accent);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--primary);
    font-weight: 500;
}

/* Material Care */
.longevity-guide {
    padding: 120px 0;
    background-color: var(--light);
}

.guide-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

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

.guide-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.7;
}

.care-protocol {
    max-width: 800px;
    margin: 0 auto;
}

.protocol-step {
    display: grid;
    grid-template-columns: 120px 1fr; /* Column for number, column for text */
    gap: 30px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray);
}
.protocol-step:first-child{
    border-top: 1px solid var(--gray);
}

.step-ordinal {
    
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    text-align: right;
}

.step-title {
    
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.step-title svg {
    flex-shrink: 0;
    margin-right: 15px;
    color: var(--secondary);
}

.step-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.8;
}

.guide-warranty-note {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding: 25px;
    background-color: #fafafa;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    color: var(--secondary);
    font-size: 1.1rem;
}

.guide-warranty-note strong {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .protocol-step {
        grid-template-columns: 80px 1fr; /* Smaller number column */
        gap: 20px;
    }
    .step-ordinal {
        font-size: 4rem;
    }
    .guide-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .protocol-step {
        grid-template-columns: 1fr; /* Stack number on top */
        gap: 15px;
        text-align: center;
    }
    .step-ordinal {
        text-align: center;
        margin-bottom: 10px;
    }
    .step-title {
        justify-content: center; /* Center title and icon */
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .philosophy-content,
    .technology-content,
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-image,
    .technology-image,
    .innovation-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .cert-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cert-logo {
        margin: 0 auto;
    }
}

/* Add these styles to existing CSS file */


/* Craftsmanship Showcase Section */
.craftsmanship-showcase {
    position: relative;
    height: 95vh; /* Near full-screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--light);
}

.showcase-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: slowZoom 20s ease-in-out forwards;
    background-image: url('images/production-hero.webp');
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30,30,30,0.8) 0%, rgba(30,30,30,0.4) 100%);
    z-index: 2;
}

.craftsmanship-showcase .container {
    position: relative;
    z-index: 3;
}

.showcase-content {
    max-width: 850px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.showcase-headline {
    
    font-size: clamp(3.5rem, 10vw, 7rem); /* Responsive typography */
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    margin-top: 4rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* The Multi-Color Typography Effect */
.headline-gradient {
    display: block; /* Ensures it takes its own line */
    background: linear-gradient(to right, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.showcase-subheading {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 30px auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.showcase-actions .btn-primary {
    background: var(--light);
    color: var(--dark);
    border: 2px solid var(--light);
}
.showcase-actions .btn-primary:hover {
    background: transparent;
    color: var(--light);
}

.showcase-actions .btn-outline {
    border-color: var(--light);
    color: var(--light);
    margin-left: 15px;
}
.showcase-actions .btn-outline:hover {
    background: var(--light);
    color: var(--dark);
}


/* Keyframe Animations */
@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .craftsmanship-showcase {
        height: 85vh;
    }
    .showcase-subheading {
        font-size: 1.1rem;
    }
}

/* Production Philosophy */
.manufacturing-ethos {
    padding: 120px 0;
    background-color: #fdfdfd; /* A clean, sophisticated off-white */
}

.ethos-grid {
    display: grid;
    /* Defines the text-image-text layout */
    grid-template-columns: 1fr 1.1fr 1fr; 
    gap: 60px;
    align-items: center;
}

/* Left Column Styling */
.ethos-introduction .ethos-title {
    
    font-size: 2.8rem;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 25px;
}

.ethos-introduction p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.9;
}

/* Middle Column Styling */
.ethos-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Right Column Styling */
.principle {
    margin-bottom: 40px;
}
.principle:last-child {
    margin-bottom: 0;
}

.principle .principle-title {
    
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
}

.principle p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ethos-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        gap: 50px;
        text-align: center;
    }
    
    .ethos-visual {
        order: 2; /* Image appears second */
    }
    .ethos-introduction {
        order: 1; /* Intro appears first */
    }
    .ethos-principles {
        order: 3; /* Principles appear last */
    }

    .principle .principle-title {
        display: inline-block; /* Center the border-bottom */
    }
}

@media (max-width: 768px) {
    .ethos-introduction .ethos-title {
        font-size: 2.4rem;
    }
}

/* Production Process */
.process-showcase {
    padding: 120px 0;
    background-color: #fafafa;
    overflow-x: hidden; /* Important for sliders */
}

.showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.showcase-title {
    font-size: 3rem; color: var(--primary); margin-bottom: 20px;
}
.showcase-subtitle {
    font-size: 1.2rem; color: var(--secondary);
}

/* Slider Structure */
.process-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.process-slide {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Slide Content Styling */
.slide-visual {
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.slide-visual img {
    width: 100%; 
    height: 400px;
    object-fit: cover;
    display: block;
}

.slide-ordinal {
    
    font-size: 6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}
.slide-title {
    
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}
.slide-details p {
    font-size: 1.1rem; line-height: 1.8; color: var(--dark); opacity: 0.8;
}

/* Animations */
.slide-details > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.process-slide.active .slide-details > * {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered animation delays */
.process-slide.active .slide-ordinal { transition-delay: 0.2s; }
.process-slide.active .slide-title { transition-delay: 0.3s; }
.process-slide.active .slide-details p { transition-delay: 0.4s; }


/* Navigation & Pagination */
.slider-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 50px auto 0;
}
.slider-arrow {
    background: var(--light);
    border: 1px solid var(--gray);
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}
.slider-arrow:hover {
    background: var(--primary); color: var(--light);
}
.slider-arrow:disabled {
    opacity: 0.5; cursor: not-allowed;
}

.slider-pagination {
    display: flex; gap: 10px;
}
.pagination-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--gray);
    transition: var(--transition);
}
.pagination-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .process-slide {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .slide-visual { order: 1; }
    .slide-details { order: 2; }
    .slide-ordinal { font-size: 4rem; }
    .slide-title { font-size: 1.8rem; }
}
/* Manufacturing Partners */
.global-partners {
    padding: 120px 0;
    background-color: #fdf6f8; /* Soft, premium background */
}
.partners-header {
    text-align: center; max-width: 700px; margin: 0 auto 80px auto;
}
.partners-title {
    font-size: 3rem; color: var(--primary); margin-bottom: 20px;
}
.partners-subtitle {
    font-size: 1.2rem; color: var(--secondary);
}

.partners-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
/* Map Styling */
.partners-map {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Aspect ratio for the map */
}
.map-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    opacity: 0.5;
}
.map-point {
    position: absolute;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid var(--light);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}
.map-point.active {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.2);
}
.map-point .map-point-pulse {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--secondary);
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    opacity: 0;
}
.map-point.active .map-point-pulse {
    background: var(--primary);
}

/* Content Panel Styling */
.partner-details {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-height: 400px; /* Ensure consistent height */
    transition: opacity 0.4s ease-out;
}
.partner-details-content.is-changing {
    opacity: 0;
}
.partner-location {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}
.partner-name {
    
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.partner-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.9;
    margin-bottom: 25px;
}
.partner-certs {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.partner-certs span {
    background: var(--accent); padding: 5px 12px;
    border-radius: 20px; font-size: 0.9rem;
    color: var(--primary); font-weight: 500;
}

/* Animations */
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    70% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
    100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
    .partners-showcase { 
        display: block;
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .partners-map { padding-top: 70%; margin-bottom: 20px;}
}

/* Quality Assurance */
.quality-assurance {
    padding: 100px 0;
    background: linear-gradient(to left, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

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

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

.assurance-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.quality-tests {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.test {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius);
}

.test h4 {
    margin-bottom: 10px;
    color: var(--light);
}

/* Production Impact */
.impact-ledger {
    padding: 120px 0;
    background-color: var(--light);
}

.ledger-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}
.ledger-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.ledger-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
}

.ledger-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.ledger-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

/* Metrics List */
.metric-item {
    position: relative;
    padding: 30px 0 30px 40px;
    border-bottom: 1px solid var(--gray);
}
.metric-item:last-child {
    border-bottom: none;
}
.metric-item:first-child {
    padding-top: 0;
}

.metric-figure {
    
    font-size: 7rem;
    font-weight: 700;
    color: #f0f0f0; /* Very light gray */
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    z-index: 1;
    line-height: 1;
    -webkit-user-select: none; /* Make text unselectable */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.metric-details {
    position: relative;
    z-index: 2; /* Sits on top of the number */
}

.metric-title {
    
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.metric-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ledger-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .ledger-visual {
        order: 2;
        width: 80%;
        margin: 0 auto;
    }
    .ledger-metrics {
        order: 1;
    }
}
@media (max-width: 576px) {
    .metric-item {
        padding-left: 0;
        text-align: center;
    }
    .metric-figure {
        position: relative;
        transform: translateY(0);
        top: 0;
        left: 0;
        margin-bottom: 10px;
        font-size: 6rem;
    }
}

/* Transparency */
.transparency {
    padding: 100px 0;
    background: var(--light);
}

.transparency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.transparency-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.transparency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    margin: 0;
    color: #555;
}

.transparency-button {
    margin-top: 30px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .philosophy-content,
    .assurance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-image,
    .assurance-image {
        order: -1;
    }
    
    .process-step {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-logo {
        margin: 0 auto;
    }
}

/* Add these styles to existing CSS file */

/* Production Philosophy */
.production-philosophy {
    padding: 100px 0;
    background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

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

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

.philosophy-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.philosophy-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Production Process */
.production-process {
    padding: 80px 0;
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-number {
    background: var(--secondary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.step-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.step-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Manufacturing Partners */
.manufacturing-partners {
    padding: 100px 0;
    background: var(--light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.partner-logo {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-info h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.location {
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.partner-info p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.partner-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-certifications span {
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
}

/* Quality Assurance */
.quality-assurance {
    padding: 100px 0;
    background: linear-gradient(to left, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

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

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

.assurance-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.quality-tests {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.test {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius);
}

.test h4 {
    margin-bottom: 10px;
    color: var(--light);
}

/* Production Impact */
.production-impact {
    padding: 80px 0;
    background: var(--light);
}

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

.impact-initiatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.initiative {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.initiative:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.initiative-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.initiative-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.initiative h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.4rem;
}

.initiative p {
    color: #555;
    line-height: 1.6;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat {
    background: var(--secondary);
    padding: 20px;
    border-radius: var(--radius);
    color: var(--light);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Transparency */
.transparency {
    padding: 100px 0;
    background: var(--light);
}

.transparency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.transparency-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.transparency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    margin: 0;
    color: #555;
}

.transparency-button {
    margin-top: 30px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .philosophy-content,
    .assurance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-image,
    .assurance-image {
        order: -1;
    }
    
    .process-step {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-logo {
        margin: 0 auto;
    }
}

/* Add these styles to existing CSS file */

/* Review Metrics */
.review-metrics {
    padding: 80px 0;
    background: var(--light);
}

.metrics-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.metrics-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.metrics-header p {
    color: var(--secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.metric {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.rating {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.rating-label {
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}



.progress-bar {
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    margin-top: 15px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--secondary);
    border-radius: 4px;
}

/* Featured Reviews */
.featured-reviews {
    padding: 80px 0;
    background: var(--light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid var(--gray);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.location {
    color: var(--secondary);
    font-size: 0.9rem;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
}

.review-rating {
    margin-left: auto;
    color: #FFD700;
    font-size: 1.1rem;
}

.review-content {
    padding: 20px;
}

.review-content p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.review-product {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: var(--accent);
    color: var(--primary);
}

.review-product img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 15px;
    object-fit: cover;
}

/* Review Categories */
.review-categories {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

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

.category-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.category-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.category-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-style: italic;
}

.category-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.category-rating .star {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-value {
    font-weight: 700;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background: var(--light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.video-card:hover .play-button {
    background: var(--primary);
    color: white;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.video-info p:first-child {
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

/* Review Highlights */
.customer-voices {
    padding: 120px 0;
    background-color: #fdfdfd;
    overflow: hidden;
}

.voices-header {
    text-align: center; max-width: 700px; margin: 0 auto 80px auto;
}
.voices-title {
    font-size: 3rem; color: var(--primary); margin-bottom: 20px;
}
.voices-subtitle {
    font-size: 1.2rem; color: var(--secondary);
}

.voices-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

/* Word Cloud */
.praise-cloud {
    position: relative;
    height: 100%;
}
.cloud-word {
    position: absolute;
    
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    color: var(--secondary);
}
.cloud-word:nth-child(2) { color: var(--primary); animation-delay: -2s; }
.cloud-word:nth-child(3) { color: #c895b4; animation-delay: -4s; }
.cloud-word:nth-child(4) { color: var(--primary); }
.cloud-word:nth-child(5) { color: var(--secondary); animation-delay: -3s; }

.cloud-word:hover {
    color: var(--primary);
    transform: scale(1.1);
}
.cloud-word.active {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 4px;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.testimonial-card.is-changing {
    opacity: 0;
    transform: translateY(10px);
}
.testimonial-quote {
    
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--dark);
    margin: 0;
}
.testimonial-quote::before {
    content: '“';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 10px; left: 20px;
    line-height: 1;
    opacity: 0.5;
}
.testimonial-author {
    text-align: right;
    margin-top: 25px;
    font-weight: 600;
    color: var(--secondary);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 992px) {
    .voices-layout { grid-template-columns: 1fr; gap: 40px; }
    .praise-cloud { min-height: 300px; margin-bottom: 40px; }
}

/* Submit Review */
.submit-review {
    padding: 80px 0;
    background: linear-gradient(to left, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
}

.review-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    color: var(--dark);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--secondary);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    
    font-size: 1rem;
}

.rating-input {
    display: flex;
    gap: 5px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #FFD700;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
}

.checkbox input {
    margin-top: 5px;
}

.checkbox span {
    flex: 1;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .highlight-item {
        padding: 20px;
    }
}

/* Add these styles to existing CSS file */

/* Gallery Banner Section */
.gallery-banner {
    position: relative;
    height: 90vh; /* Takes up 90% of the viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    overflow: hidden;
}

.banner-background-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* The cinematic zoom effect */
    animation: ken-burns-effect 20s ease-out forwards;
    background-image: url('images/gallery-hero.webp');
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.gallery-banner .container {
    position: relative;
    z-index: 3;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out;
}

.banner-headline {
    
    font-size: clamp(3.5rem, 10vw, 6.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 25px;
}

.banner-subheading {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.banner-actions .btn-primary {
    background: var(--light);
    color: var(--dark);
    border: 2px solid var(--light);
}
.banner-actions .btn-primary:hover {
    background: transparent;
    color: var(--light);
}

.banner-actions .btn-outline {
    border-color: var(--light);
    color: var(--light);
    margin-left: 15px;
}
.banner-actions .btn-outline:hover {
    background: var(--light);
    color: var(--dark);
}

/* Keyframe Animations */
@keyframes ken-burns-effect {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-banner {
        height: 80vh;
    }
    .banner-subheading {
        font-size: 1.1rem;
    }
}

/* Gallery Introduction */
.gallery-preface {
    padding: 140px 0;
    background-color: #fdfdfd; /* A clean, premium off-white */
}

.preface-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Column */
.preface-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Text Column */
.preface-narrative {
    position: relative;
    background-color: var(--light);
    border-radius: var(--radius);
    overflow: hidden; /* Important for the pseudo-element */
}

/* The mirrored background effect */
.preface-narrative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/gallery-intro.webp');
    background-size: cover;
    background-position: center;
    transform: scaleX(-1); /* Flips the image horizontally */
    opacity: 0.04; /* Very subtle */
    filter: blur(8px) grayscale(50%);
    z-index: 1;
}

.narrative-content {
    position: relative;
    z-index: 2; /* Ensures text sits on top of the background */
    padding: 50px;
}

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

.preface-narrative p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark);
    opacity: 0.85;
    margin-bottom: 20px;
}
.preface-narrative p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .preface-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .preface-title {
        font-size: 2.4rem;
    }
}

/* Gallery Collection */
/* Visual Stories Section */
.visual-stories {
    padding: 120px 0;
    background: var(--light);
}
.stories-header {
    text-align: center; max-width: 700px; margin: 0 auto 60px auto;
}
.stories-title {
    font-size: 3rem; color: var(--primary); margin-bottom: 20px;
}
.stories-subtitle {
    font-size: 1.2rem; color: var(--secondary);
}

/* Bento Grid */
.visuals-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}
.bento-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark);
    padding: 0;
    border: none;
    cursor: pointer;
}
.bento-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.bento-item:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

/* Grid Item Sizing */
.item-large { grid-column: span 2; grid-row: span 2; }
.item-tall { grid-row: span 2; }
.item-wide { grid-column: span 2; }

/* Bento Overlay */
.bento-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light);
    background: rgba(0,0,0,0.4);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}
.bento-item:hover .bento-overlay {
    opacity: 1;
}


/* Lightbox Popup */
.lightbox-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.lightbox-popup.is-visible {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.lightbox-backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(5px);
}
.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--light);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.lightbox-popup.is-visible .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: -15px; right: -15px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.lightbox-visual {
    width: 100%;
    height: 70vh;
    max-height: 500px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}
.lightbox-visual img {
    width: 100%; height: 100%; object-fit: cover;
}
.lightbox-details {
    padding: 25px;
}
.lightbox-title {
    
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.lightbox-location {
    font-size: 1.1rem;
    color: var(--secondary);
}

/* Responsive Grid */
@media (max-width: 768px) {
    .visuals-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    /* Unset large spans for smaller screens */
    .item-large, .item-tall, .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    /* Make one or two items stand out */
    .visuals-bento-grid .bento-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }
}
/* Behind the Scenes */
.bts-showcase {
    padding: 120px 0;
    background-color: #fdf6f8; /* A soft, premium accent color */
}

.showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}
.showcase-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
}

.showcase-layout {
    display: grid;
    /* Image - Text - Image layout with a wider center column */
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.bts-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.bts-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Asymmetrical alignment */
.bts-visual--left {
    align-self: flex-start; /* Aligns this image to the top */
}
.bts-visual--right {
    align-self: flex-end; /* Aligns this image to the bottom */
}


.principle-item {
    margin-bottom: 40px;
}
.principle-item:last-child {
    margin-bottom: 0;
}

.principle-title {
    
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px; /* Space for the decorative icon */
}
/* Decorative icon before the title */
.principle-title::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: 700;
}

.principle-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.8;
    padding-left: 35px; /* Align with title */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .showcase-layout {
        grid-template-columns: 1fr; /* Stack into a single column */
        gap: 40px;
    }
    /* Reset asymmetrical alignment */
    .bts-visual--left, .bts-visual--right {
        align-self: auto;
    }
    .bts-narrative {
        order: 2; /* Text in the middle */
    }
    .bts-visual--left {
        order: 1; /* First image */
    }
    .bts-visual--right {
        order: 3; /* Second image */
    }
}

/* Photography Credits */
.collaborator-showcase {
    padding: 120px 0;
    background-color: var(--light);
}

.showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.showcase-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
}

.collaborator-reel-wrapper {
    position: relative;
    padding: 0;
}

.collaborator-reel {
    display: flex;
    gap: 30px;
    overflow-x: scroll;
    padding: 20px 0 40px;
    /* Use the container's padding for the start/end of the reel */
    padding-left: calc((100vw - 1200px) / 2 + 20px);
    padding-right: calc((100vw - 1200px) / 2 + 20px);
    scrollbar-width: none; /* For Firefox */
}
.collaborator-reel::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}


.collaborator-profile {
    flex: 0 0 280px; /* Fixed width for each card */
    background: #ffffff;
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}
.collaborator-profile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid var(--accent);
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-name {
    
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.profile-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}
.profile-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 5px;
    right: 20px;
    color: var(--secondary);
    font-style: italic;
    opacity: 0.7;
}

.showcase-note {
    text-align: center;
    max-width: 700px;
    margin: 60px auto 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--gray);
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Adjustments for padding on different screen sizes */
@media (max-width: 1240px) {
    .collaborator-reel {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .intro-content,
    .bts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image,
    .bts-images {
        order: -1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .credit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .credit-avatar {
        margin: 0 auto;
    }
    
    .gallery-item {
        height: 250px;
    }
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--light);
    padding: 80px 0 30px;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: var(--light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-links i {
    font-style: normal;
    font-weight: 600;
}

address {
    font-style: normal;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    margin-left: 20px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .sustainability .container,
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
}

/* ====================== LEGAL PAGES STYLES ====================== */

/* Legal Hero Section */
.legal-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f9f5f7 0%, #eef2f6 100%);
    text-align: center;
}

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

.legal-page-subtitle {
    font-size: 1.4rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Legal Content Section */
.legal-content {
    padding: 60px 0 100px;
    background: var(--light);
}

.legal-content-container {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    text-align: center;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

/* Legal Content Articles */
.legal-content article {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray);
}

.legal-content article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.legal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.legal-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 12px;
}

.legal-content strong {
    color: var(--primary);
    font-weight: 600;
}

.legal-content a {
    color: var(--secondary);
    text-decoration: underline;
    transition: var(--transition);
}

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

/* Contact Information */
#contact p:last-child {
    margin-bottom: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 60px;
    }
    
    .legal-page-title {
        font-size: 2.5rem;
    }
    
    .legal-page-subtitle {
        font-size: 1.2rem;
    }
    
    .legal-content h2 {
        font-size: 1.6rem;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-hero {
        padding: 80px 0 50px;
    }
    
    .legal-page-title {
        font-size: 2rem;
    }
    
    .legal-page-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-content {
        padding: 40px 0 80px;
    }
}

.utility-page-body {
            background: linear-gradient(135deg, #f9f5f7 0%, #eef2f6 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            
        }

        .thank-you-main {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .thank-you-box {
            background: white;
            border-radius: 24px;
            padding: 60px 50px;
            text-align: center;
            max-width: 600px;
            width: 100%;
            box-shadow: 0 10px 40px rgba(81, 45, 56, 0.15);
            position: relative;
            overflow: hidden;
        }

        .thank-you-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(to right, #512D38, #B27092);
        }

        .checkmark-container {
            margin-bottom: 30px;
        }

        .checkmark-svg {
            width: 100px;
            height: 100px;
            display: block;
            margin: 0 auto;
        }

        .checkmark-circle {
            stroke: #B27092;
            stroke-width: 4;
            stroke-dasharray: 166;
            stroke-dashoffset: 166;
            fill: none;
            animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
        }

        .checkmark-check {
            stroke: #512D38;
            stroke-width: 4;
            stroke-dasharray: 48;
            stroke-dashoffset: 48;
            animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
        }

        @keyframes stroke {
            100% {
                stroke-dashoffset: 0;
            }
        }

        .thank-you-box h1 {
            
            font-size: 2.5rem;
            color: #512D38;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .thank-you-box p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .order-summary {
            background: #f9f5f7;
            border-radius: 16px;
            padding: 25px;
            margin: 30px 0;
            text-align: left;
        }

        .order-summary h3 {
            
            font-size: 1.2rem;
            color: #512D38;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0e0e0;
        }

        .order-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #e0e0e0;
        }

        .order-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .order-total {
            font-weight: 600;
            color: #512D38;
            font-size: 1.1rem;
        }

        .btn-primary {
            background: #512D38;
            color: white;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid #512D38;
        }

        .btn-primary:hover {
            background: #3a2028;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(81, 45, 56, 0.2);
        }

        .sustainability-note {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #f0e6ed;
            color: #B27092;
            font-style: italic;
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .thank-you-box {
                padding: 40px 30px;
            }
            
            .thank-you-box h1 {
                font-size: 2rem;
            }
            
            .thank-you-box p {
                font-size: 1rem;
            }
            
            .checkmark-svg {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 480px) {
            .thank-you-box {
                padding: 30px 20px;
            }
            
            .thank-you-box h1 {
                font-size: 1.8rem;
            }
            
            .btn-primary {
                padding: 12px 28px;
                width: 100%;
                max-width: 280px;
            }
        }








.logo-add__link
{
    color: #fff !important;
}

.footer-contact__link
{
    text-decoration: none;
    color: #fff;
}

#show-sub
{
    color: #000;
}
#show-img
{
    height: 400px; object-fit: cover; width: 100%;
}

#impact-img
{
    height: 400px; object-fit: cover; width: 100%;
}

#comm-img
{
    height: 400px; object-fit: cover; width: 100%;
}
#tech-img
{
    height: 400px; object-fit: cover; width: 100%;
}

#partner-1
{
    top: 38%; left: 52%;
}

#partner-2
{
    top: 40%; left: 85%;
}

#partner-3
{
    top: 58%; left: 78%;
}

#assur-img
{
    width: 100%; height: 400px; object-fit: cover;
}

#review-hero__img
{
    height: 400px; object-fit: cover; width: 100%;
}

#prog
{
    width: 98%;
}

#cloud-1
{
    top: 25%; left: 15%; font-size: 2.8rem;
}
#cloud-2
{
    top: 10%; left: 50%; font-size: 1.8rem;
}
#cloud-3
{
    top: 45%; left: 5%; font-size: 3.2rem;
}
#cloud-4
{
    top: 70%; left: 10%; font-size: 2.2rem;
}
#cloud-5
{
    top: 80%; left: 60%; font-size: 2rem;
}
#cloud-6
{
    top: 5%; left: 5%; font-size: 1.5rem;
}
#cloud-7
{
    top: 55%; left: 5%; font-size: 2.5rem;
}