/* Custom Font Import */
@font-face {
    font-family: 'TOPLUXURY';
    src: url('TOPLUXURY.woff2') format('woff2'),
         url('TOPLUXURY.woff') format('woff'),
         url('TOPLUXURY.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-leather: #8B4513;
    --secondary-leather: #654321;
    --warm-cream: #F5F1E8;
    --natural-beige: #E8DCC0;
    --earth-brown: #A0522D;
    --deep-mahogany: #4A2C2A;
    --text-dark: #2C1810;
    --text-light: #6B4423;
    --accent-gold: #D4AF37;
    --subtle-tan: #D2B48C;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--natural-beige) 100%);
    background-attachment: fixed;
}

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

/* Typography */
.section-title {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 2.8rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--deep-mahogany);
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-leather) 0%, var(--earth-brown) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--earth-brown) 0%, var(--deep-mahogany) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffffff 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 24, 16, 0.7) 0%,
        rgba(139, 69, 19, 0.5) 30%,
        rgba(160, 82, 45, 0.4) 60%,
        rgba(210, 180, 140, 0.3) 100%
    );
    z-index: 2;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.9);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.hero-text {
    max-width: 1000px;
    margin: 0;
}

.hero-text-layout {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-left {
    text-align: left;
}

.hero-divider {
    width: 2px;
    height: 120px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%
    );
    margin: 0 auto;
}

.hero-right {
    text-align: left;
}

.hero-main-title {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 4.5rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.02em;
}

.hero-tagline {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 2rem;
    font-weight: normal;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.01em;
    opacity: 0.95;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.6rem;
    color: #f5f5f5;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

/* About Section - Redesigned */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--natural-beige) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-texture" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.8" fill="%23A0522D" opacity="0.04"/><circle cx="7" cy="7" r="0.3" fill="%23D2B48C" opacity="0.06"/><circle cx="23" cy="23" r="0.3" fill="%23D2B48C" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23about-texture)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

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

.about-description {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-description p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Mission and Values Layout */
.mission-values-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0;
}

/* Mission Section */
.mission-section {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 132, 92, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-icon {
    margin-bottom: 1rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.section-icon svg {
    color: var(--accent-gold);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.1));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mission-title, .values-title {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 2rem;
    font-weight: normal;
    color: var(--primary-leather);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.mission-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #DAA520 100%);
    border-radius: 25px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: scale(1.05);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    color: #ffffff;
}

/* Section Divider */
.section-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
}

.divider-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--accent-gold) 20%,
        var(--primary-leather) 50%,
        var(--accent-gold) 80%,
        transparent 100%
    );
    margin: 0.5rem 0;
}

.divider-icon {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: dividerPulse 2s ease-in-out infinite;
}

.divider-icon svg {
    color: var(--accent-gold);
}

@keyframes dividerPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
    50% { transform: scale(1.1); box-shadow: 0 12px 35px rgba(218, 165, 32, 0.3); }
}

/* Values Section */
.values-section {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 132, 92, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(160, 132, 92, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.value-icon svg {
    color: var(--accent-gold);
}

.value-text {
    text-align: left;
}

.value-text h4 {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: normal;
    color: var(--primary-leather);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.3px;
}

.value-text p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

/* About Image with Overlay */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(139, 69, 19, 0.9) 0%,
        rgba(139, 69, 19, 0.7) 50%,
        transparent 100%
    );
    padding: 2rem;
    color: #ffffff;
}

.overlay-text h4 {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-text p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .mission-values-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-divider {
        min-height: auto;
        flex-direction: row;
        padding: 1rem 0;
    }
    
    .divider-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(
            to right,
            transparent 0%,
            var(--accent-gold) 20%,
            var(--primary-leather) 50%,
            var(--accent-gold) 80%,
            transparent 100%
        );
        margin: 0 0.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .mission-section, .values-section {
        padding: 1.5rem;
    }
    
    .mission-title, .values-title {
        font-size: 1.6rem;
    }
    
    .about-img {
        height: 300px;
    }
    
    .highlight-item {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--natural-beige) 0%, var(--warm-cream) 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="product-texture" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.8" fill="%23D2B48C" opacity="0.06"/><circle cx="10" cy="10" r="0.3" fill="%23A0522D" opacity="0.04"/><circle cx="30" cy="30" r="0.3" fill="%23A0522D" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23product-texture)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 241, 232, 0.9) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--subtle-tan);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
    border-color: var(--accent-gold);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    will-change: transform;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    color: var(--deep-mahogany);
    letter-spacing: 0.01em;
}

.product-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-cta {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-leather) 0%, var(--earth-brown) 100%);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background: linear-gradient(135deg, var(--earth-brown) 0%, var(--deep-mahogany) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* Production Process Section */
.production-process {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--natural-beige) 0%, var(--warm-cream) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid var(--subtle-tan);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-leather) 0%, var(--earth-brown) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: normal;
    color: var(--deep-mahogany);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Section - Individual Topic Slides */
.why-choose {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.why-choose-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.why-choose-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 69, 19, 0.8) 0%,
        rgba(160, 82, 45, 0.7) 25%,
        rgba(210, 180, 140, 0.6) 50%,
        rgba(139, 69, 19, 0.85) 100%
    );
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}

.slide-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.slide-icon {
    margin-bottom: 2rem;
    display: block;
    animation: slideIconPulse 2s ease-in-out infinite;
}

.slide-icon svg {
    color: #ffffff;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
}

@keyframes slideIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.slide-title {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.02em;
    line-height: 1.2;
    animation: slideInUp 1s ease-out 0.3s both;
}

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

.slide-description {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.4rem;
    color: #f5f5f5;
    line-height: 1.8;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0;
    animation: slideInUp 1s ease-out 0.6s both;
}

/* Navigation Controls */
.why-choose-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 4;
    pointer-events: none;
}

.slide-nav {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    transform: scale(1.1);
}

.slide-nav:active {
    transform: scale(0.95);
}

/* Slide Indicators */
.why-choose-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.slide-indicator {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.slide-indicator:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.slide-indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.indicator-text {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 0.9rem;
    font-weight: normal;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.slide-indicator.active .indicator-text {
    color: var(--primary-leather);
    text-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose {
        height: 100vh;
    }
    
    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .slide-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .why-choose-controls {
        padding: 0 1.5rem;
    }
    
    .slide-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .why-choose-indicators {
        flex-direction: column;
        right: 20px;
        left: auto;
        transform: none;
        gap: 0.5rem;
    }
    
    .slide-indicator {
        padding: 0.6rem 1rem;
    }
    
    .indicator-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slide-text {
        padding: 0 1rem;
    }
}

/* Blog/Tips Section */
.blog-tips {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--natural-beige) 100%);
    position: relative;
}

.blog-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23a0845c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.tips-category {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 132, 92, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tips-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tips-title {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--primary-leather);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.tips-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-leather));
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.tips-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.tips-list li strong {
    color: var(--primary-leather);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--natural-beige) 0%, var(--warm-cream) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-texture" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23A0522D" opacity="0.03"/><circle cx="12" cy="12" r="0.5" fill="%23D2B48C" opacity="0.05"/><circle cx="38" cy="38" r="0.5" fill="%23D2B48C" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-texture)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--deep-mahogany);
    letter-spacing: 0.01em;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #DAA520 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

.contact-icon svg {
    color: #ffffff;
}

.contact-item h4 {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-weight: normal;
    color: var(--deep-mahogany);
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item small {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.9) 0%, rgba(232, 220, 192, 0.8) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--subtle-tan);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-leather);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-mahogany) 0%, var(--earth-brown) 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-texture" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="15" cy="15" r="0.5" fill="%23D2B48C" opacity="0.15"/><circle cx="45" cy="45" r="0.5" fill="%23D2B48C" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-texture)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'TOPLUXURY', 'Playfair Display', 'Georgia', serif;
    font-weight: normal;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: 0.01em;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-logo .logo {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-text-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .hero-divider {
        width: 100px;
        height: 2px;
        background: linear-gradient(
            to right,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent 100%
        );
        margin: 1rem 0;
    }

    .hero-main-title {
        font-size: 3.2rem;
    }

    .hero-tagline {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        justify-content: flex-start;
        gap: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text-layout {
        gap: 1.5rem;
    }

    .hero-divider {
        width: 80px;
        margin: 0.8rem 0;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content {
    animation: fadeInScale 1.2s ease-out;
}

.about-content,
.capability-card,
.product-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Hero background animation */
.hero-bg-img {
    animation: fadeInScale 1.5s ease-out;
} 
} 