:root {
    /* Color Palette */
    --color-bg: #d9c8ae;
    --color-text-main: #3E2723;
    /* Dark Chocolate */
    --color-accent: #C5A059;
    /* Soft Gold */
    --color-white: #ffffff;
    --color-black: #1a1a1a;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    /* For headings to give premium feel */

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* About Hero */
.about-hero {
    position: relative;
    padding: var(--spacing-lg) 0;
    color: var(--color-white);
    background-color: var(--color-text-main);
    overflow: hidden;
    text-align: center;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Utility for premium feel */
.text-accent {
    color: var(--color-accent);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-text-main);
    color: var(--color-bg);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 4px;
    /* Slight softening, not too round */
}

.btn:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Section minimal styling */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* Sections Backgrounds */
.bg-light {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-dark {
    background-color: var(--color-text-main);
    color: var(--color-bg);
}

/* --- HERO SECTION --- */
.hero {
    overflow: hidden;
}

/* --- CATEGORIES GRID --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.category-card {
    position: relative;
    height: 400px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 4px;
    /* Soft edges */
    cursor: pointer;
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.category-content {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    width: auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--color-text-main);
    transform: translateY(0);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.category-title {
    font-size: 1.2rem;
    font-family: var(--font-display);
    margin-bottom: 0.2rem;
    color: var(--color-text-main);
}

.category-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
    /* Always visible to hint interactiveness */
    color: var(--color-accent);
    display: inline-block;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.category-card:hover .category-link {
    transform: translateX(5px);
}

/* --- SERVICES OVERVIEW --- */
.services-section {
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 cols on desk */
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    padding: var(--spacing-md);
    background-color: #fff;
    /* Solid white */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle border */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

/* Gold decorative line at bottom */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--color-accent);
    transition: width 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    /* Start dark */
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--color-bg);
    /* Beige bg for icon */
    border-radius: 50%;
}

.service-card:hover .service-icon {
    color: var(--color-accent);
    /* Turn gold on hover */
    background-color: #f7f1e6;
    /* Slightly lighter beige */
}

/* --- NEW ARRIVALS SLIDER (Dark) --- */
.product-slide {
    cursor: pointer;
}

.slide-img {
    height: 350px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    /* Soft shading */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keep product visible */
    background: #fcfcfc;
    transition: transform 0.6s ease;
}

.product-slide:hover .slide-img img {
    transform: scale(1.08);
}

.slide-title {
    color: var(--color-bg);
    /* Beige text on dark bg */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-slide:hover .slide-title {
    color: var(--color-accent);
}

.slide-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.product-slide:hover .slide-link {
    color: var(--color-white);
    border-color: var(--color-white);
}

/* Custom Nav Buttons */
.btn-nav {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(217, 200, 174, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.btn-nav:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text-main);
}

/* --- ADVANTAGES GRID --- */
.advantages-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    color: var(--color-white);
}

.adv-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.adv-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.adv-large {
    background-color: #2a1c19;
    /* Fallback */
    height: 100%;
    min-height: 500px;
}

.adv-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 0.8s ease;
}

.adv-large:hover .adv-bg-img {
    transform: scale(1.05);
    /* Zoom effect */
    opacity: 0.5;
}

.adv-small {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.adv-small:hover {
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.05);
}

.adv-content {
    position: relative;
    z-index: 2;
}

.adv-number {
    display: block;
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--color-accent);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 1rem;
}

.adv-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: inherit;
}

.adv-card p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 400px;
}


/* Mobile Tweaks */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .adv-large {
        min-height: 400px;
        order: -1;
    }

    /* ... existing mobile rules ... */
    :root {
        --spacing-xl: 4rem;
    }

    /* Hero Responsiveness */
    .hero .container {
        grid-template-columns: 1fr !important;
        /* Stack vertically */
        text-align: center;
        gap: 2rem !important;
    }

    .hero-content {
        align-items: center;
        /* Center text */
        order: 2;
        /* Visuals first? Or text first? Let's keep Text first as per HTML, but maybe Visuals should be smaller. */
    }

    .hero-visual {
        height: 300px !important;
        /* Fix height on mobile */
        order: 1;
        /* Show 3D first on mobile for wow effect */
    }

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

    .hero h1 {
        font-size: 2.5rem !important;
    }

    /* About Block Responsiveness */
    .about-layout {
        flex-direction: column;
        gap: 0 !important;
    }

    .about-content {
        transform: none !important;
        /* Remove overlap offset on mobile */
        margin-top: -2rem;
        /* Slight overlap upwards instead */
        z-index: 2;
        width: 90%;
    }

    .about-visual {
        width: 100%;
    }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- ABOUT PAGE SPECIFIC --- */

/* About Hero */
.about-hero {
    position: relative;
    padding: 5rem 0;
    /* Reduced from original lg/xl */
    color: var(--color-white);
    background-color: var(--color-text-main);
    overflow: hidden;
    text-align: center;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    /* Dark overlay effect */
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.about-lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* Story Section */
.story-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.story-content {
    background: #fff;
    padding: var(--spacing-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-main);
}

.story-content p {
    margin-bottom: 1rem;
    color: #555;
}

.story-image {
    position: relative;
    z-index: 1;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--color-accent);
}

/* Values Section */
.values-section {
    padding: var(--spacing-xl) 0;
    background-color: #f7f1e6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.value-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Team Section Improvements */
.team-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.team-card {
    background: #fff;
    padding: 2rem;
    transition: all 0.4s ease;
    border-bottom: 2px solid transparent;
}

.team-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--color-accent);
    transform: translateY(-5px);
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
    transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrapper {
    transform: scale(1.05);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    color: var(--color-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Mobile Tweaks for About */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

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

    .story-content {
        order: 2;
        margin-top: -2rem;
        /* Overlap effect on mobile */
    }

    .story-image {
        order: 1;
    }

    .story-image img {
        box-shadow: 10px 10px 0 var(--color-accent);
    }
}
/* --- SERVICES PAGE --- */

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.service-row:nth-child(even) {
    direction: rtl; /* Flip order visually */
}

.service-row:nth-child(even) .service-text {
    direction: ltr; /* Reset text direction */
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-main);
}

.service-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.service-features li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.price-label {
    display: flex;
    flex-direction: column;
}

.price-val {
    font-size: 1.8rem;
    font-family: var(--font-display);
    color: var(--color-accent);
    font-weight: 700;
}

.price-desc {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.service-img-wrapper {
    position: relative;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-row:hover .service-img-wrapper img {
    transform: scale(1.05);
}

/* Service Mobile */
@media (max-width: 900px) {
    .service-row, .service-row:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: var(--spacing-md);
    }
    
    .service-img-wrapper {
        height: 300px;
        order: -1; /* Image always first on mobile */
    }
    
    .price-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}


/* --- CATALOG PAGE --- */

.catalog-container {
    display: flex;
    gap: 3rem;
}

/* Sidebar */
.catalog-sidebar {
    width: 250px;
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.filter-group {
    margin-bottom: 2.5rem;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-accent);
    display: inline-block;
}

.filter-list li {
    margin-bottom: 0.8rem;
}

.filter-link {
    font-size: 0.95rem;
    color: #666;
    transition: all 0.3s;
}

.filter-link:hover, .filter-link.active {
    color: var(--color-accent);
    padding-left: 5px;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: #eee;
    margin-right: 10px;
    border-radius: 2px;
    position: relative;
    transition: all 0.2s;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--color-accent);
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Grid */
.products-grid-wrapper {
    flex: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    transition: all 0.3s ease;
}

.product-img-wrapper {
    position: relative;
    padding-bottom: 100%; /* Square */
    margin-bottom: 1rem;
    background: #fcfcfc;
    overflow: hidden;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Contain to show full product */
    padding: 2rem;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

/* Overlay Button */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    padding: 0.8rem 1.5rem;
    background: #fff;
    color: var(--color-text-main);
    border: none;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.product-card:hover .btn-view {
    transform: translateY(0);
}

.product-details {
    text-align: center;
}

.product-details h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-details .price {
    font-family: var(--font-display);
    color: var(--color-accent);
    font-size: 1.1rem;
}

/* Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8); 
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto; 
    padding: 0;
    width: 90%;
    max-width: 900px;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.4s ease;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-img {
    background: #f9f9f9;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.price-lg {
    font-size: 2rem;
    font-family: var(--font-display);
    margin-bottom: 2rem;
}

.modal-features ul {
    margin-top: 2rem;
    list-style: none;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.modal-features li {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Catalog Mobile */
@media (max-width: 768px) {
    .catalog-container {
        flex-direction: column;
    }
    
    .catalog-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-img {
        padding: 1rem;
    }
}


/* --- ANIMATED HERO BACKGROUND --- */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero {
    background: linear-gradient(-45deg, #d9c8ae, #e6dace, #f0e6d9, #d9c8ae);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}


/* --- CATALOG SIDEBAR & LAYOUT --- */
.catalog-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start; /* Critical for sticky sidebar */
}

.catalog-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 120px; /* Header height + spacing */
    height: fit-content;
    padding: 1.5rem;
    background: #fff;
    border-right: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
}

/* --- BRANDS TICKER --- */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: inline-flex;
    align-items: center;
}

.brand-item {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #d0d0d0;
    margin: 0 3rem;
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.brand-item:hover {
    color: var(--color-bg); /* Dark */
    -webkit-text-stroke: 1px var(--color-bg);
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Shift by half since we have 2 groups */
}

@media (max-width: 768px) {
    .brand-item {
        font-size: 2rem;
        margin: 0 1.5rem;
    }
}


/* Enhanced Value Cards */
.value-card {
    border: 1px solid var(--color-accent);
    border-radius: 8px;
    background: #fff;
    padding: 2rem; /* Re-affirm padding */
}

.value-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* Service Features List Icons */
.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.service-features li::before {
    content: '\2726';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-accent);
    font-size: 1rem;
}


/* --- ENHANCED ABOUT HERO --- */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: inset(0);
}
.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 992px) {
    .about-hero {
        height: 75vh;
        min-height: 600px;
    }
    .about-hero-bg img {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        z-index: -1;
        will-change: transform;
        pointer-events: none;
    }
}
.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    z-index: 0;
}
.about-hero .container {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.about-lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}
