/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --bg-cream: #FFF8F0;
    --accent-gold: #D4A373;
    --primary-red: #D34836;
    --text-dark: #333;
    --text-light: #555;
    --burgundy: #560319;
}

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

body { 
    background-color: var(--bg-cream); 
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden; 
}

h1, h2, h3, h4 { 
    color: var(--primary-red); 
    font-family: 'Playfair Display', serif; 
    font-weight: 700; 
}

/* =========================================
   1.1 CUSTOM FONTS
   ========================================= */
@font-face {
    font-family: 'FlyFlower';
    src: url('fonts/FeiHuaSongTi-2.ttf'); 
    font-weight: normal;
    font-style: normal;
}

/* =========================================
   2. GLOBAL ANIMATIONS
   ========================================= */
.reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 1s ease; 
}

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

@keyframes iconPulse { 
    0% { transform: scale(1); }
    50% { transform: scale(1.15); color: var(--primary-red); background: #fff0f0; box-shadow: 0 0 15px rgba(211, 72, 54, 0.2); }
    100% { transform: scale(1); }
}

/* =========================================
   3. HERO SECTION (Main Slider) - ENHANCED
   ========================================= */
.hero {
    position: relative;
    height: 86vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--burgundy); /* The "Frame" color */
    z-index: 1;
}

/* The Slide Container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide - IMPROVED */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* WEBSITE ONLY: Show full photo, no zoom */
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--burgundy); 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* ENHANCED Arrow Buttons - More Visible & Clickable */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--burgundy);
    border: 2px solid var(--accent-gold);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 9999 !important;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(211, 72, 54, 0.4);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.prev { left: 25px; }
.next { right: 25px; }

/* Mobile Adjustment for Arrows */
@media (max-width: 768px) {
    .hero { height: 450px; }
    .slider-arrow { 
        width: 45px; 
        height: 45px; 
        font-size: 1rem; 
    }
    .prev { left: 15px; }
    .next { right: 15px; }
}

/* Full Slide Link (Clickable Background) */
.full-slide-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    cursor: pointer;
}

/* Container positioning */
.slider-promo-container {
    position: absolute;
    bottom: 90px;
    left: 10%;
    z-index: 10;
    pointer-events: none;
}

.slider-promo-container * {
    pointer-events: auto;
}

/* THE LUXURY BUTTON - ENHANCED */
.btn-luxury-cute {
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, #e5b2a4 0%, #d18e82 50%, #b57367 100%);
    color: white;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 20px rgba(181, 115, 103, 0.4), 
                inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.btn-luxury-cute::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.btn-luxury-cute:hover::before {
    left: 100%;
}

.btn-luxury-cute:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(181, 115, 103, 0.6);
    background: linear-gradient(135deg, #e5765b 0%, #d18e82 100%);
}

.sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: luxurySparkle 2s infinite;
}

@keyframes luxurySparkle {
    0% { transform: scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* SLIDER 1: Brand Essence */
.brand-essence-wrapper {
    position: absolute;
    bottom: 40px;
    left: 5%;
    background: rgba(255, 252, 249, 0.85);
    padding: 30px 40px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 163, 115, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.tiny-gold-title {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.luxury-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--burgundy);
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.highlight-script {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    color: var(--primary-red);
    text-transform: none;
    display: block;
    margin-top: -5px;
    line-height: 1;
}

/* SLIDER 2: Promotional */
.promo-slide .brand-essence-wrapper {
    position: absolute !important;
    left: 19% !important; /* This matches your current Slide 2 horizontal position */
    bottom: 30% !important;
    max-width: 850px !important;
    padding: 80px !important;
    text-align: center !important;
    
    /* The Box Styling */
    background: rgba(255, 252, 249, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--burgundy);
}

/* Specific text color for Slide 2 if background is dark */
.promo-slide .luxury-hero-title {
    color: var(--burgundy) !important; 
}

/* SLIDER 3: Services Centered Rectangle */
.services-slide-center .slider-promo-container.s3-rectangular {
    position: absolute !important;
    left: 50% !important;
    top: 42% !important;
    transform: translate(-50%, -50%) !important;
    bottom: auto !important;
    max-width: 600px !important;
    width: 90% !important;
    padding: 40px 60px !important;
    background: rgba(255, 252, 249, 0.5) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(212, 163, 115, 0.5) !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.s3-rectangular .luxury-hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.s3-rectangular .highlight-script {
    font-size: 4rem;
    margin-top: -15px;
}

/* SLIDER 4: Magazine Layout - SMALLER & CENTERED */
.s4-magazine-pos {
    position: absolute !important;
    left: 50% !important;
    top: 45% !important; 
    transform: translate(-50%, -50%) !important;
    
    /* 1. SMALLER WIDTH: Reduced from 700px to 550px */
    max-width: 550px !important; 
    width: 60% !important;
    
    /* 2. SMALLER PADDING: Reduced from 30px 60px to 20px 40px */
    padding: 20px 40px !important; 
    
    text-align: center !important;
    background: rgba(255, 252, 249, 0.2) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* 3. BUTTON FIX: Keep the lower margin so it still clears the photos */
.s4-magazine-pos .btn-luxury-cute {
    margin-top: 30px !important; /* Reduced slightly to match smaller box */
    display: inline-block;
}

.s4-magazine-pos .luxury-hero-title {
    color: white !important;
    font-size: 2.5rem !important; /* Reduced font size to fit smaller box */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.s4-magazine-pos .highlight-script {
    color: var(--accent-gold) !important;
    font-size: 3.8rem !important; /* Reduced script size */
    margin-top: -10px;
}

.magazine-desc {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 20px 0 30px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    /* 1. Keep your existing solid color rule for all slides */
    .slide {
        background-image: none !important; 
        background-color: var(--burgundy) !important; 
    }

    /* 2. ADD THIS: Force Slider 1 to show the image on mobile */
    .slide:nth-child(1) {
        background-image: url('images/slider1.png') !important;
        background-size: cover !important; /* This keeps it full screen/zoomed */
        background-position: center !important;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .slider-promo-container {
        bottom: 30px;
        left: 50% !important;
        transform: translateX(-50%);
        width: 85%;
        text-align: center;
    }
    
    .brand-essence-wrapper {
        padding: 20px 25px;
    }
    
    .luxury-hero-title {
        font-size: 2rem;
    }
    
    .highlight-script {
        font-size: 3rem;
    }
    
    .btn-luxury-cute {
        font-size: 0.75rem;
        padding: 14px 25px;
        width: 100%;
    }
    
    .s4-magazine-pos {
        right: 5% !important;
        padding: 30px !important;
        max-width: 90%;
    }
}

/* =========================================
   4. RED CTA STRIP 
   ========================================= */
.cta-strip {
    position: relative;
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #560319 0%, #D34836 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.cta-text {
    color: white;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 0;
}

.btn-white {
    background-color: white;
    color: var(--burgundy);
    padding: 12px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    border: 1px solid white;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-white:hover {
    background-color: transparent;
    color: white;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* =========================================
   5. EDITORIAL TEXT SECTION
   ========================================= */
.intro-text-section {
    padding: 100px 10% 60px 10%;
    background-color: white;
    display: flex;
    justify-content: center;
}

.intro-top {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1100px;
    width: 100%;
}

.chinese-side {
    display: flex;
    gap: 5px;
    padding-top: 15px;
    flex-shrink: 0;
    opacity: 0.7;
}

.vertical-text {
    font-family: 'FlyFlower', serif;
    font-size: 2rem;
    color: var(--burgundy);
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: 700;
    letter-spacing: 30px;
    border-right: 1px solid rgba(212, 163, 115, 0.3);
    padding-right: 2px;
}

.intro-content {
    flex-grow: 1;
    padding-top: 10px;
}

.badge-gold {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-gold);
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 25px;
}

.quote-box {
    margin: 35px 0;
    border-left: 4px solid var(--primary-red);
    padding-left: 20px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--burgundy);
    font-style: italic;
    margin: 0;
}

.intro-desc p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
}

/* =========================================
   6. ACCORDION CARDS SECTION
   ========================================= */
.intro-cards-section {
    padding: 0 10% 80px 10%;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.intro-bottom {
    width: 100%;
    max-width: 1000px;
    margin-top: 50px;
}

.accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(226, 89, 71, 0.2);
}

.accordion-header {
    width: 100%;
    background: white;
    border: none;
    text-align: left;
    padding: 25px 35px;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header.active {
    color: var(--primary-red);
}

.icon-rotate {
    background: var(--bg-cream);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.accordion-header.active .icon-rotate {
    transform: rotate(180deg);
    background: var(--primary-red);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 35px;
}

.accordion-content p {
    padding-bottom: 30px;
    color: var(--text-light);
}

.more-info-container {
    width: 100%;
    text-align: center;
    margin-top: -60px;
    margin-bottom: 30px;
}

.btn-white-contact {
    display: inline-block;
    background-color: white;
    color: var(--burgundy);
    padding: 15px 40px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 163, 115, 0.3);
    transition: all 0.3s ease;
}

.btn-white-contact:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 72, 54, 0.3);
    border-color: var(--primary-red);
}

/* =========================================
   7. BRAND MANIFESTO (MODERN OVERLAY)
   ========================================= */
.brand-manifesto-section {
    padding: 100px 5%;
    padding-bottom: 150px;
    background-color: white;
    display: flex;
    justify-content: center;
}

.manifesto-luxury-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.manifesto-image-bg {
    width: 55%;
    height: 600px;
    position: relative;
    z-index: 1;
}

.manifesto-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.manifesto-text-card {
    width: 55%;
    background: white;
    padding: 60px;
    position: absolute;
    right: 0;
    z-index: 2;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.08);
    border-radius: 5px;
    margin-left: -100px;
}

.manifesto-title-card {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--burgundy);
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 30px;
}

.card-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.manifesto-highlight {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.3rem !important;
    color: var(--text-dark) !important;
    font-style: italic;
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--accent-gold);
}

.signature-card {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: rgba(211, 72, 54, 0.08);
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: -1;
}

@media (max-width: 1024px) {
    .brand-manifesto-section { padding: 60px 5%; }
    
    .manifesto-luxury-wrapper {
        flex-direction: column;
        height: auto;
    }

    .manifesto-image-bg {
        width: 100%;
        height: 400px;
        margin-bottom: -50px;
    }

    .manifesto-text-card {
        width: 90%;
        position: relative;
        right: auto;
        margin-left: 0;
        padding: 40px;
    }
    
    .manifesto-title-card { font-size: 2.2rem; }
}

/* =========================================
   8. BANNER (THE DIVIDER)
   ========================================= */
.motivation-banner {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--primary-red) 100%);
    padding: 40px 5%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 0px;
}

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

.banner-script {
    font-family: 'Great Vibes';
    font-size: 4.5rem;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
}

/* =========================================
   10. WHAT WE DO (MAGAZINE LAYOUT)
   ========================================= */
.what-we-do-section {
    padding: 100px 10%;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.watermark-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Great Vibes', cursive;
    font-size: 15rem;
    color: var(--primary-red);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.content-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-top: 15px;
}

.italic-burgundy {
    font-style: italic;
    color: var(--burgundy);
}

.magazine-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    text-align: justify;
}

.col-left, .col-right {
    flex: 1;
}

.magazine-columns p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.drop-cap {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 0.8;
    color: var(--primary-red);
    padding-right: 10px;
    padding-top: 5px;
    font-weight: 700;
}

.commitment-box {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px dashed var(--accent-gold);
    max-width: 800px;
    margin: 0 auto;
}

.star-icon {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.commitment-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--burgundy);
    line-height: 1.6;
}

/* =========================================
   11. TREATMENT SHOWCASE
   ========================================= */
.treatment-showcase-section {
    padding: 80px 10%;
    background-color: var(--bg-cream);
}

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

.showcase-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.showcase-subtitle {
    font-family: 'Lato', sans-serif;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.showcase-card {
    background: white;
    padding: 0 0 30px 0;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-10px);
}

.img-holder {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 25px;
}

.img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .img-holder img {
    transform: scale(1.1);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.card-question {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.card-answer {
    padding: 0 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.highlight-red {
    color: var(--primary-red);
    font-weight: 700;
}

/* =========================================
   12 & 13. REASONS GRID & BANNERS
   ========================================= */
.reasons-banner-top, .reasons-banner-bottom {
    background: linear-gradient(90deg, var(--burgundy) 0%, var(--primary-red) 100%);
    padding: 30px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.banner-text-wide {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.4;
}

.text-white-bold {
    color: white;
    font-weight: 700;
    font-style: italic;
    text-underline-offset: 5px;
}

.reasons-grid-section {
    background-color: var(--bg-cream);
    padding: 80px 5%;
}

.reasons-header {
    text-align: center;
    margin-bottom: 60px;
}

.reasons-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--burgundy);
    margin-top: 15px;
    line-height: 1.3;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(211, 72, 54, 0.3);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 1px solid rgba(212, 163, 115, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto;
    font-size: 2.5rem;
    color: var(--burgundy);
    transition: all 0.3s ease;
}

.reason-card:hover .icon-circle {
    background-color: var(--burgundy);
    color: white;
    border-color: var(--burgundy);
    transform: scale(1.1);
}

.reason-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.reason-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* =========================================
   14. PARTNERSHIPS SLIDER
   ========================================= */
.partners-section {
    padding: 80px 0;
    background-color: white;
    overflow: hidden;
}

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

.partners-header {
    padding: 0 5%;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partners-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--primary-red);
    margin-top: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.partners-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 15px;
}

.slider-area {
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: transparent;
}

.slider-area::before, .slider-area::after {
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
    content: "";
    height: 150px;
    position: absolute;
    width: 100px;
    z-index: 2;
}

.slider-area::before { left: 0; top: 0; }
.slider-area::after { right: 0; top: 0; transform: rotate(180deg); }

.slide-track {
    display: flex;
    width: 3500px;
    animation: scrollDesktop 20s linear infinite;
}

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

.partner-slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.partner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-slide img:hover {
    transform: scale(1.1);
}

/* =========================================
   AWARDS SECTION
   ========================================= */
.awards-section-deco {
    padding: 120px 10%;
    background-color: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.watermark-awards {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-family: 'Great Vibes', cursive;
    font-size: 18rem;
    color: var(--primary-red);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.awards-container-deco {
    position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
}

.awards-header-deco { text-align: center; margin-bottom: 80px; }

.awards-title-deco {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem; color: var(--primary-red);
    margin-top: 20px; text-transform: uppercase; line-height: 1.2;
}

.gold-divider-short {
    width: 50px; height: 2px; background-color: var(--accent-gold);
    margin: 25px auto 0 auto;
}

.awards-grid-deco {
    display: flex; justify-content: space-between; gap: 60px;
    margin-bottom: 20px;
}

.awards-col-left, .awards-col-right {
    flex: 1; display: flex; flex-direction: column; gap: 80px;
}

.margin-top-stagger { margin-top: 100px; }

.award-card-deco { text-align: center; transition: transform 0.3s ease; }
.award-card-deco:hover { transform: translateY(-10px); }

.img-frame {
    background: white; padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: 4px; margin-bottom: 30px; position: relative;
}

.img-frame::after {
    content: ''; position: absolute;
    top: -10px; left: -10px;
    width: 100%; height: 100%;
    border: 1px solid rgba(212, 163, 115, 0.3);
    z-index: -1; transition: all 0.3s ease;
}

.award-card-deco:hover .img-frame::after {
    top: -15px; left: -15px; border-color: var(--accent-gold);
}

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

.award-name-deco {
    font-family: 'Playfair Display', serif; font-size: 1.4rem;
    color: var(--burgundy); font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    max-width: 80%; margin: 0 auto;
}

.view-more-container { text-align: center; margin-top: 60px; }

.btn-text-gold {
    background: none; border: none;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--accent-gold);
    cursor: pointer; letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.btn-text-gold:hover {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
    letter-spacing: 3px;
}

.btn-text-gold i { margin-left: 10px; transition: transform 0.3s ease; }
.btn-text-gold.open i { transform: rotate(180deg); }

@media (max-width: 1024px) { .margin-top-stagger { margin-top: 50px; } }
@media (max-width: 768px) {
    .awards-grid-deco { flex-direction: column; gap: 50px; }
    .margin-top-stagger { margin-top: 0; }
    .img-frame::after { display: none; }
}

/* =========================================
   SIGNATURE SECTION
   ========================================= */
.signature-luxury-frame {
    padding: 100px 5%;
    background-color: white;
    display: flex;
    justify-content: center;
}

.luxury-frame-container {
    max-width: 900px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    border: 1px solid #D4A373;
    outline: 1px solid #D4A373;
    outline-offset: 10px;
    background-color: #FFFCF9;
}

.crown-icon {
    font-size: 2rem;
    color: #D34836;
    background: #FFFCF9;
    padding: 0 30px;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.signature-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #333;
    line-height: 1.3;
    margin-bottom: 25px;
}

.text-burgundy-italic {
    color: #560319;
    font-style: italic;
    font-weight: 700;
}

.divider-line-gold {
    width: 80px;
    height: 3px;
    background-color: #D34836;
    margin: 0 auto 30px auto;
}

.signature-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.signature-footer-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #D4A373;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 768px) {
    .luxury-frame-container {
        padding: 40px 20px;
        outline-offset: 6px;
    }
    .signature-heading { font-size: 2rem; }
}

/* =========================================
   PROMO POP-UP (MODAL)
   ========================================= */

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: white;
    padding: 5px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.4s ease-out;
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #D34836;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.1);
}

@keyframes zoomIn {
    from {transform: scale(0.5); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* =========================================
   +++ MOBILE & TABLET RESPONSIVE +++
   ========================================= */

@media (max-width: 1024px) {
    .editorial-title { font-size: 2.8rem; }
    .highlight-script { font-size: 3.5rem; }
    .chinese-side { display: none; }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .intro-top { flex-direction: column; gap: 30px; }
    .editorial-title { font-size: 2.5rem; }
    .highlight-script { font-size: 3rem; }
    .cta-text { font-size: 1.2rem; }
    .cta-strip { padding: 30px 15px; }
    .btn-white { padding: 12px 25px; font-size: 0.8rem; }
    
    .intro-bottom { margin-top: 20px; }
    .accordion-header { font-size: 1.1rem; padding: 20px; }
    .intro-text-section { padding: 60px 5%; }
    .intro-cards-section { padding: 0 5% 60px 5%; }

    .motivation-banner { padding: 40px 20px; }
    .banner-script { font-size: 2.5rem; }

    .magazine-columns { flex-direction: column; gap: 20px; }
    .watermark-bg { font-size: 8rem; }
    .section-title { font-size: 2.2rem; }

    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-title { font-size: 2.2rem; }

    .reasons-grid { grid-template-columns: 1fr; }
    .reasons-title { font-size: 2rem; }
    .banner-text-wide { font-size: 1rem; }

    .partners-title { font-size: 1.5rem; }
    .slider-area { height: 100px; }
    
    .partner-slide {
        width: 150px;
        padding: 0 15px;
    }
    
    .slide-track {
        width: calc(150px * 12);
        animation: scrollMobile 10s linear infinite;
    }
}

/* =========================================
   SLIDER KEYFRAMES
   ========================================= */

@keyframes scrollDesktop {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 4)); }
}

@keyframes scrollMobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 4)); }
}

/* =========================================
   MOBILE FIX FOR PROMOTION SLIDE (SLIDE 2)
   ========================================= */
@media (max-width: 768px) {
    
    /* 1. Reset the position to be perfectly centered */
    .promo-slide .slider-promo-container {
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important; /* Moves it to dead center */
        top: 50% !important;
        width: 90% !important; /* Forces it to fit inside the phone screen */
        max-width: 350px !important; /* Prevents it from getting too big */
        padding: 0 !important;
    }

    /* 2. Reset the box size so it doesn't overflow */
    .promo-slide .brand-essence-wrapper {
        min-width: 0 !important; /* Removes the "Longer Box" rule from desktop */
        width: 100% !important;
        padding: 30px 20px !important; /* Smaller padding for mobile */
        text-align: center !important; /* Center the text */
    }

    /* 3. Make the text smaller so it fits */
    .promo-slide .luxury-hero-title {
        font-size: 2rem !important; /* Smaller title */
        line-height: 1.2 !important;
    }

    .promo-slide .highlight-script {
        font-size: 3.5rem !important; /* Smaller script font */
    }
}

/* =========================================
   MOBILE REDESIGN: SLIDE 1 (BRAND ESSENCE)
   ========================================= */
@media (max-width: 768px) {
    /* 1. Center the box perfectly */
    .slide.active .slider-promo-container {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 85% !important;
        max-width: 350px !important;
        display: block !important;
        z-index: 100;
    }

    /* 2. Style the Slide 1 Box */
    .brand-essence-wrapper {
        position: relative !important;
        left: 0 !important;
        bottom: 0 !important;
        padding: 35px 20px !important;
        background: rgba(255, 252, 249, 0.95) !important; /* Brighter for mobile */
        border: 1px solid var(--accent-gold) !important;
        border-radius: 15px !important;
        text-align: center !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }

    /* 3. Text Scaling */
    .brand-essence-wrapper .tiny-gold-title {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 10px !important;
    }

    .brand-essence-wrapper .luxury-hero-title {
        font-size: 1.8rem !important;
        color: var(--burgundy) !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .brand-essence-wrapper .highlight-script {
        font-size: 2.8rem !important;
        display: block !important;
        margin-top: 5px !important;
    }

    /* 4. Button Scaling */
    .brand-essence-wrapper .btn-luxury-cute {
        padding: 14px 25px !important;
        font-size: 0.8rem !important;
        display: inline-block !important;
        width: 100% !important;
    }
}

/*  =========================================
    MOBILE REDESIGN: SLIDER 2 (PROMOTION)
    ========================================= */
    @media (max-width: 768px) {
    /* 1. Ensure the Slide container fills the height properly */
    .promo-slide {
        background-image: none !important;
        background-color: var(--burgundy) !important;
        height: 500px !important; /* Matches your hero height */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* 2. Center the content box and fix bottom-heavy spacing */
    .promo-slide .brand-essence-wrapper {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important; /* Reset these so Flexbox can center it */
        width: 100% !important;
        padding: 45px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        text-align: center !important;
    }

    /* 3. Tighten the text spacing */
    .promo-slide .luxury-hero-title {
        color: white !important;
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin: 10px 0 !important; /* Smaller margin to lift the button up */
    }

    .promo-slide .highlight-script {
        font-size: 3.5rem !important;
        margin-bottom: 20px !important; /* Space between text and button */
    }

    /* 4. Fix Button positioning */
    .promo-slide .btn-luxury-cute {
        display: inline-block !important;
        background: white !important;
        color: var(--burgundy) !important;
        padding: 14px 30px !important;
        border-radius: 50px !important; /* Rounded pill style looks cleaner here */
        width: auto !important;
        min-width: 200px;
    }
}
    /* =========================================
       MOBILE REDESIGN: SLIDER 3 (SOLID BG)
       ========================================= */
    @media (max-width: 768px){
    /* 1. Remove the messy background photo */
    .services-slide-center {
        background-image: none !important;
        background-color: var(--bg-cream) !important; /* Elegant Cream background */
        height: 500px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* 2. Style the Slide 3 Box */
    .services-slide-center .slider-promo-container.s3-rectangular {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 50px 30px !important;
        text-align: center !important;
    }

    /* 3. Text Colors (Dark Burgundy on Cream) */
    .s3-rectangular .tiny-gold-title {
        color: var(--accent-gold) !important;
        font-size: 0.8rem !important;
        letter-spacing: 3px !important;
    }

    .s3-rectangular .luxury-hero-title {
        color: var(--burgundy) !important;
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin: 10px 0 !important;
    }

    .s3-rectangular .highlight-script {
        color: var(--primary-red) !important;
        font-size: 3.5rem !important;
        margin-top: 0 !important;
        display: block !important;
    }

    /* 4. Button Fix */
    .s3-rectangular .btn-luxury-cute {
        display: inline-block !important;
        background: var(--burgundy) !important; /* Burgundy button pops on Cream */
        color: white !important;
        border-radius: 50px !important;
        width: auto !important;
        min-width: 220px;
        margin-top: 20px;
    }
}

/* =========================================
   SLIDE 4: THE "TARIK ATAS" NUCLEAR FIX
   ========================================= */
@media (max-width: 768px) {
    /* 1. Force Slide 4 to align everything to the TOP */
    .hero-slider .slide:nth-child(4) {
        background-image: none !important; 
        background-color: var(--burgundy) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important; /* Pulls content to the top */
        align-items: center !important;
        height: 550px !important;
        /* Increase this number to move it down, decrease to move it UP */
        padding-top: 150px !important; 
    }

    /* 2. Reset the box so it stops following the desktop "Center" rules */
    .hero-slider .slide:nth-child(4) .s4-magazine-pos {
        position: relative !important;
        top: 0 !important;            /* Kills the desktop 50% drop */
        transform: none !important;    /* Kills the desktop centering shift */
        left: 0 !important;
        right: auto !important;
        margin: 0 auto !important;
        width: 90% !important;
        max-width: 320px !important;
        background: transparent !important;
        border: none !important;
        text-align: center !important;
        padding: 0 !important;
    }

    /* 3. Spacing for Slide 4 text */
    .s4-magazine-pos .luxury-hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 0 !important;
    }

    .s4-magazine-pos .highlight-script {
        font-size: 3rem !important;
        margin-top: -5px !important;
    }

    .s4-magazine-pos .magazine-desc {
        margin: 10px auto 20px !important;
        line-height: 1.4 !important;
        font-size: 0.9rem !important;
    }

    /* 4. Ensure button is visible and not cut off */
    .s4-magazine-pos .btn-luxury-cute {
        display: inline-block !important;
        width: 100% !important;
        max-width: 240px !important;
        padding: 12px 20px !important;
    }
}

