/*
Theme Name: Anael Souki
Theme URI: https://anaelsouki.com
Author: Antigravity
Author URI: https://anaelsouki.com
Description: A premium, minimalist WordPress theme for Anael Souki Nail Beauty Studio.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anaelsouki
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;700&display=swap');

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Custom Properties */
:root {
    --brand-black: #000000;
    --brand-white: #FFFFFF;
    --brand-ivory: #D6CEAE;
    --brand-gold-solid: #C5A059;
    --brand-gold-gradient: linear-gradient(135deg, #C5A059 0%, #F5E0A3 50%, #C5A059 100%);
    --brand-accent: var(--brand-ivory);
    --font-heading: 'Playfair Display', serif;
    --font-tagline: 'Century Gothic', 'AppleGothic', sans-serif;
    --font-body: 'Calibri', 'Candara', 'Segoe UI', sans-serif;
    --font-secondary-title: 'Calibri Bold', 'Calibri', sans-serif;
}

/* Header Styles */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.ana-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-tagline {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--brand-ivory);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-btn {
    font-family: var(--font-tagline);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
}

.nav-btn:hover {
    background: #fff;
    color: #000;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.icon-btn {
    background: #fff;
    color: #000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.menu-btn {
    width: auto;
    padding: 0 15px;
    border-radius: 50px;
    gap: 10px;
}

.menu-label {
    font-size: 0.7rem;
    font-weight: 800;
}

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

/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    border-bottom-left-radius: 80px !important;
    border-bottom-right-radius: 80px !important;
    margin-bottom: -60px;
    z-index: 10;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
    border-bottom-left-radius: 80px !important;
    border-bottom-right-radius: 80px !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 95%;
    padding: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 0px;
    line-height: 1;
    background: var(--brand-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-tagline-main {
    font-family: var(--font-tagline);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: var(--brand-ivory);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.gradient-text {
    background: var(--brand-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-subtitle p {
    margin-bottom: 10px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-primary {
    background: var(--brand-gold-gradient);
    color: #000;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.4);
}

.cta-secondary {
    background: var(--brand-ivory);
    color: #000;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.cta-secondary:hover {
    background: #fff;
    transform: scale(1.05);
}

.hero-trust-microcopy {
    font-family: var(--font-tagline);
    font-size: 0.8rem;
    color: var(--brand-ivory);
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .header-nav .nav-btn {
        display: none;
    }
    .hero-title {
        font-size: 3rem;
    }
}

/* About Section V2 - Editorial */
.about-section-v2 {
    background-color: #fff;
    color: #0e0e0e;
    padding: 160px 0 0;
    position: relative;
    z-index: 1;
}

.about-v2-main {
    max-width: 1200px;
    padding: 0 40px 0 80px;
}

.about-v2-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

/* Left: Image Column */
.about-v2-image-col {
    position: relative;
}

.about-v2-image-wrapper {
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
    background: #1a1919;
}

.about-v2-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.25);
    transition: transform 0.7s ease;
}

.about-v2-image-col:hover .about-v2-image-wrapper img {
    transform: scale(1.05);
}

.about-v2-frame-fragment {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 96px;
    height: 96px;
    border-left: 2px solid var(--brand-ivory);
    border-bottom: 2px solid var(--brand-ivory);
    pointer-events: none;
}

/* Right: Content Column */
.about-v2-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-v2-accent-line {
    width: 48px;
    height: 2px;
    background: var(--brand-gold-solid);
    margin-bottom: 32px;
}

.about-v2-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 40px;
    color: #0e0e0e;
}

.about-v2-dot {
    color: var(--brand-gold-solid);
}

.about-v2-body {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-v2-lead {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(14, 14, 14, 0.9);
}

.about-v2-underline {
    border-bottom: 2px solid var(--brand-gold-solid);
    padding-bottom: 1px;
}

.about-v2-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(14, 14, 14, 0.7);
}

.about-v2-quote {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
    color: rgba(14, 14, 14, 0.7);
    border-left: 2px solid #ddd;
    padding-left: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* CTA Actions */
.about-v2-ctas {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
}

.about-v2-cta-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0e0e0e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-v2-cta-primary svg {
    transition: transform 0.3s ease;
}

.about-v2-cta-primary:hover {
    color: var(--brand-gold-solid);
}

.about-v2-cta-primary:hover svg {
    transform: translateX(8px);
}

.about-v2-cta-secondary {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(14, 14, 14, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-v2-cta-secondary:hover {
    color: #0e0e0e;
}

/* Strategic Pillars */
.about-v2-pillars-wrapper {
    max-width: 1200px;
    margin-top: 96px;
    padding-top: 80px;
    border-top: 1px solid rgba(14, 14, 14, 0.1);
    padding-bottom: 100px;
}

.about-v2-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.about-v2-pillar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-v2-pillar-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.about-v2-pillar-num {
    font-family: var(--font-tagline);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-gold-solid);
    letter-spacing: -1px;
}

.about-v2-pillar-header h3 {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #0e0e0e;
}

.about-v2-pillar p {
    font-size: 0.9rem;
    color: rgba(14, 14, 14, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-v2-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-v2-image-col {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-v2-content-col {
        order: 1;
    }

    .about-v2-title {
        font-size: 3.5rem;
    }

    .about-v2-main {
        padding: 0 20px;
    }

    .about-v2-pillars {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Education Section */
/* Atelier Services Section */
.services-atelier {
    background-color: #000;
    color: #fff;
    padding: 180px 0;
    overflow: hidden;
}

.atelier-header {
    text-align: left;
    margin-bottom: 120px;
    max-width: 600px;
}

/* Signature Mosaic Section */
.services-mosaic {
    background: #000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.mosaic-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.mosaic-label {
    font-family: var(--font-tagline);
    font-size: 0.8rem;
    color: var(--brand-gold-solid);
    letter-spacing: 5px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mosaic-main-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.1;
}

.mosaic-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #888;
    line-height: 1.7;
    max-width: 600px;
}

.mosaic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 80px;
}

.mosaic-item {
    position: relative;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}

.item-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
}

.item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.item-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--brand-gold-solid);
    opacity: 0.5;
    letter-spacing: 2px;
}

.item-info {
    padding: 30px;
}

.item-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #fff;
}

.item-tag {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    color: var(--brand-gold-solid);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.item-desc {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Mosaic logic - Staggered heights and widths */
.item-lg { width: 55%; }
.item-md { width: 40%; }
.item-sm { width: 30%; }

.item-lg .item-visual { aspect-ratio: 16/9; }
.item-md .item-visual { aspect-ratio: 1/1; }
.item-sm .item-visual { aspect-ratio: 4/5; }

/* Asymmetry offset */
.item-offset {
    margin-top: 100px;
}

/* Interactions */
.mosaic-item:hover {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    transform: translateY(-15px);
}

.mosaic-item:hover .item-visual img {
    transform: scale(1.1);
}

.mosaic-item:hover .item-overlay {
    opacity: 0.3;
}

.mosaic-item:hover .item-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 20px;
}

.atelier-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}

.atelier-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
}

.cta-pre {
    font-family: var(--font-tagline);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--brand-gold-solid);
    margin-bottom: 10px;
}

.cta-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.cta-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.atelier-cta:hover .cta-arrow {
    background: var(--brand-gold-solid);
    border-color: var(--brand-gold-solid);
    color: #000;
    transform: rotate(45deg);
}

.atelier-cta:hover .cta-text {
    color: var(--brand-gold-solid);
}

@media (max-width: 992px) {
    .mosaic-item {
        width: 100% !important;
        margin-top: 0 !important;
    }
    
    .mosaic-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .atelier-footer {
        justify-content: center;
    }
    
    .atelier-cta {
        align-items: center;
    }
}

@media (max-width: 1200px) {
    .atelier-grid {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    
    .atelier-card {
        position: relative;
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .atelier-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .atelier-footer {
        justify-content: center;
        text-align: center;
    }
    
    .atelier-cta {
        align-items: center;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: var(--brand-gold-gradient);
    color: #000;
    padding: 120px 0;
    position: relative;
}

.newsletter-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.newsletter-left {
    flex: 1;
}

.newsletter-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    max-width: 500px;
}

.newsletter-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 480px;
}

.newsletter-description p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    max-width: 480px;
}

.cta-question {
    font-weight: 700;
    font-size: 1.5rem !important;
}

.newsletter-right {
    flex: 1;
    background: transparent;
}

.newsletter-form-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.newsletter-form-header p {
    font-size: 1.2rem;
    font-weight: 700;
    max-width: 200px;
}

.form-mini-portrait {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
}

.optin-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
}

.form-group input {
    padding: 18px 25px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    outline: none;
}

.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.form-terms input {
    margin-top: 5px;
}

.form-terms a {
    text-decoration: underline;
    font-weight: 700;
}

.btn-submit {
    background: #111;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #000;
    transform: translateX(10px);
}

.floating-up-btn {
    position: absolute;
    right: 20px;
    bottom: 40px;
    background: #0066cc;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: transform 0.3s;
}

.floating-up-btn:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .newsletter-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .btn-submit {
        align-self: flex-start;
    }
}

/* Encyclopedia Section */
.encyclopedia-section {
    background-color: #fff;
    color: #333;
    padding: 120px 0;
    overflow: hidden;
}

.encyclopedia-title {
    font-size: clamp(3rem, 9.5vw, 9rem);
    font-weight: 100;
    line-height: 0.82;
    text-transform: uppercase;
    letter-spacing: -4px;
    z-index: 2;
    position: relative;
    margin-bottom: 50px;
    color: #111;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    padding: 0 16px;
    height: 38px;
    border-radius: 40px;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
    margin: 0 8px;
    position: relative;
    top: -6px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

.badge-blue { background-color: #5fb4e5; }
.badge-green { background-color: #51f280; color: #000; }
.badge-black { background-color: #111; }

.badge:hover {
    transform: scale(1.1) rotate(3deg);
}

/* Goal Reference Placement */
.badge-pos-1 { top: -12px; }
.badge-pos-2 { top: -25px; margin-left: 15px; }
.badge-pos-3 { top: -8px; margin-right: 0px; margin-left: -5px; }
.badge-pos-4 { top: -12px; margin-left: 10px; }
.badge-pos-5 { top: -5px; margin-left: 15px; }
.badge-pos-6 { 
    display: inline-flex;
    margin: 40px auto; 
    transform: rotate(2deg);
    position: relative;
    left: 45%;
}

.encyclopedia-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    margin-top: -40px;
}

.encyclopedia-text {
    flex: 1;
    max-width: 440px;
    padding-top: 60px;
}

.encyclopedia-text p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 300;
    line-height: 1.6;
    color: #555;
}

.encyclopedia-visual {
    flex: 1.6;
    position: relative;
    z-index: 10;
}

.laptop-mockup {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.1));
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
    margin-right: -20%;
}

.laptop-screen-content {
    position: absolute;
    top: 20%;
    left: 2%;
    width: 55%;
    height: 55%;
    overflow: hidden;
    padding: 10px;
    font-size: 0.5rem;
    color: #999;
    line-height: 1.6;
    z-index: 2;
    background: transparent;
    pointer-events: none;
    text-align: left;
    transform: perspective(1500px) rotateY(-12deg) rotateX(2deg);
    opacity: 0.8;
}

.laptop-screen-content p {
    margin-bottom: 8px;
}

/* Merging/Bleed Effect */
.encyclopedia-section {
    padding-bottom: 0;
    background-color: #fff;
}

.recent-articles-section {
    background-color: #fff;
    padding: 40px 0 100px;
    position: relative;
    z-index: 5;
}

.recent-articles-title {
    font-size: 2.22rem;
    font-weight: 400;
    color: #111;
    letter-spacing: -1px;
}

.recent-articles-title strong {
    font-weight: 800;
}

@media (max-width: 992px) {
    .encyclopedia-content-wrapper {
        flex-direction: column;
    }
    .laptop-mockup {
        width: 100%;
        margin-left: 0;
        transform: none;
    }
    .laptop-screen-content {
        display: none;
    }
    .encyclopedia-title {
        font-size: 3.5rem;
    }
}

/* ===================== */
/* Services Grid Section */
/* ===================== */
.services-grid-section {
    background: #000;
    color: #fff;
    padding: 140px 0 80px;
    position: relative;
}

.services-grid-container {
    max-width: 1200px;
}

/* Header */
.sg-header {
    margin-bottom: 60px;
}

.sg-label {
    font-family: var(--font-tagline);
    font-size: 0.75rem;
    color: var(--brand-gold-solid);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 700;
    margin-bottom: 16px;
}

.sg-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 24px;
}

.sg-divider {
    width: 96px;
    height: 1px;
    background: rgba(197, 160, 89, 0.4);
}

/* Grid Layout */
.sg-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.sg-featured {
    grid-column: 1 / 9;
    grid-row: 1 / 2;
}

.sg-side {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.sg-bottom-left {
    grid-column: 1 / 7;
    grid-row: 2 / 3;
}

.sg-bottom-right {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
}

/* Card Base */
.sg-card {
    background: #0f0f0f;
    overflow: hidden;
    transition: border-color 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sg-card:hover {
    border-color: rgba(197, 160, 89, 0.2);
}

/* Featured Card (Signature Manicure) */
.sg-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sg-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: transform 0.7s ease, filter 0.7s ease, opacity 0.7s ease;
}

.sg-featured:hover .sg-card-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 0.7;
}

.sg-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, transparent 60%);
}

.sg-card-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px 40px;
    z-index: 2;
}

.sg-card-image-caption h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.sg-card-tag {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    color: var(--brand-gold-solid);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.sg-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 36px 40px;
}

.sg-card-desc {
    font-size: 1.05rem;
    color: #999;
    line-height: 1.7;
}

.sg-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sg-feature-list li {
    font-family: var(--font-tagline);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sg-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-gold-solid);
    display: inline-block;
    flex-shrink: 0;
}

/* Side Card (Consultation) */
.sg-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(197, 160, 89, 0.1);
}

.sg-side-content {
    padding: 40px;
}

.sg-side-icon {
    color: var(--brand-gold-solid);
    margin-bottom: 32px;
}

.sg-side-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.sg-side-content p {
    font-size: 1rem;
    color: #999;
    line-height: 1.7;
}

.sg-side-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.sg-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.5s ease, filter 0.5s ease;
}

.sg-side:hover .sg-side-image img {
    opacity: 0.6;
    filter: grayscale(0%);
}

/* Bottom Left (Luxury Pedicure) */
.sg-bottom-left {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sg-bottom-header {
    padding: 40px 40px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sg-bottom-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.sg-bottom-header p {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.5;
}

.sg-bottom-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sg-bottom-list {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.sg-care-label {
    font-family: var(--font-tagline);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-gold-solid);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sg-care-label svg {
    color: var(--brand-gold-solid);
    stroke: var(--brand-gold-solid);
}

.sg-bottom-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sg-bottom-list li {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
}

.sg-bottom-img {
    overflow: hidden;
    background: #000;
}

.sg-bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 1s ease, opacity 0.5s ease;
}

.sg-bottom-left:hover .sg-bottom-img img {
    transform: scale(1.1);
    opacity: 0.7;
}

/* Bottom Right (Artistic Design) */
.sg-bottom-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    min-height: 380px;
    overflow: hidden;
}

.sg-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

.sg-bottom-right:hover .sg-bg-image {
    opacity: 0.4;
}

.sg-bottom-right-content {
    position: relative;
    z-index: 2;
}

.sg-bottom-right-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.sg-bottom-right-content .sg-card-tag {
    display: block;
    margin-bottom: 20px;
}

.sg-bottom-right-desc {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 24px;
}

.sg-style-tags {
    display: flex;
    gap: 12px;
}

.sg-style-tags span {
    padding: 6px 16px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    font-family: var(--font-tagline);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-gold-solid);
    transition: background 0.3s ease;
}

.sg-style-tags span:hover {
    background: rgba(197, 160, 89, 0.1);
}

/* CTA Section */
.sg-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 120px;
}

.sg-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.1;
}

.sg-cta-title em {
    font-style: italic;
}

.sg-cta-btn {
    display: inline-block;
    background: var(--brand-gold-gradient);
    color: #000;
    padding: 22px 56px;
    font-family: var(--font-tagline);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sg-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .sg-grid {
        grid-template-columns: 1fr;
    }
    .sg-featured,
    .sg-side,
    .sg-bottom-left,
    .sg-bottom-right {
        grid-column: 1 / -1;
    }
    .sg-card-details {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 24px;
    }
    .sg-card-image-caption {
        padding: 20px 24px;
    }
    .sg-side-content {
        padding: 28px 24px;
    }
    .sg-bottom-header {
        padding: 28px 24px 24px;
    }
    .sg-bottom-list {
        padding: 24px;
    }
    .sg-bottom-right {
        padding: 28px 24px;
    }
}

@media (max-width: 600px) {
    .sg-bottom-split {
        grid-template-columns: 1fr;
    }
    .sg-bottom-img {
        aspect-ratio: 16 / 9;
    }
    .services-grid-section {
        padding: 80px 0 60px;
    }
}

/* ================================ */
/* The El Souki Experience Section  */
/* ================================ */
.experience-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F6F2 45%, #E7C5A9 100%);
    background-attachment: fixed;
    color: #1a1a1a;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.experience-container {
    max-width: 1200px;
}

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

/* Left Column: Narrative */
.exp-narrative {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.exp-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.exp-label-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exp-label {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    color: var(--brand-gold-solid);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 700;
    opacity: 0.8;
}

.exp-label-line {
    width: 48px;
    height: 1px;
    background: rgba(197, 160, 89, 0.4);
}

.exp-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 0.95;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.exp-title-italic {
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}

.exp-intro {
    font-size: 1.1rem;
    color: #6B6B6B;
    line-height: 1.7;
    max-width: 420px;
    font-weight: 300;
    font-style: italic;
}

/* Features Grid */
.exp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.exp-feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.exp-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.exp-feature-icon {
    color: var(--brand-gold-solid);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.exp-feature-header h3 {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #1a1a1a;
    font-weight: 400;
}

.exp-feature p {
    font-size: 0.8rem;
    color: #6B6B6B;
    line-height: 1.7;
    font-weight: 300;
    padding-left: 40px;
    border-left: 1px solid rgba(197, 160, 89, 0.2);
}

/* Right Column: Visual */
.exp-visual {
    position: relative;
}

.exp-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.exp-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1s ease;
}

.exp-visual:hover .exp-image-wrapper img {
    transform: scale(1);
}

.exp-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

/* Overlapping Glass Form */
.exp-form-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.exp-form-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    max-width: 360px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.exp-form-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.exp-form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.exp-form-divider {
    width: 32px;
    height: 1px;
    background: var(--brand-gold-solid);
    opacity: 0.5;
}

/* Form Styles */
.exp-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.exp-form-fields {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.exp-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 0.5px solid rgba(197, 160, 89, 0.3);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: 0.1em;
    outline: none;
    transition: border-color 0.3s ease;
}

.exp-input::placeholder {
    color: rgba(107, 107, 107, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.exp-input:focus {
    border-bottom-color: var(--brand-gold-solid);
}

.exp-form-terms {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.exp-form-terms input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--brand-gold-solid);
    cursor: pointer;
    flex-shrink: 0;
}

.exp-form-terms label {
    font-family: var(--font-tagline);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(107, 107, 107, 0.7);
    line-height: 1.6;
    cursor: pointer;
}

.exp-submit-btn {
    width: 100%;
    background: var(--brand-gold-gradient);
    color: #fff;
    border: none;
    padding: 20px;
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.5s ease;
}

.exp-submit-btn:hover {
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.3);
    opacity: 0.95;
    transform: translateY(-2px);
}

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

    .exp-title {
        font-size: 3.5rem;
    }

    .exp-visual {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .experience-section {
        padding: 80px 0;
    }

    .exp-features {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .exp-form-card {
        padding: 32px 24px;
    }

    .exp-title {
        font-size: 2.8rem;
    }
}

/* ============================== */
/* Portfolio Editorial Section    */
/* ============================== */
.portfolio-section {
    background: linear-gradient(135deg, #1a1919 0%, #0e0e0e 100%);
    color: #fff;
    padding: 140px 24px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Ambient Glow */
.portfolio-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.portfolio-glow-top {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(197, 160, 89, 0.05);
}

.portfolio-glow-bottom {
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgba(214, 206, 174, 0.05);
}

/* Header */
.portfolio-header {
    max-width: 900px;
    margin: 0 auto 96px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.portfolio-label {
    font-family: var(--font-tagline);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--brand-gold-solid);
    display: block;
    margin-bottom: 24px;
    font-weight: 700;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 32px;
}

.portfolio-intro {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #aaa;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Asymmetric Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Gallery Item Base */
.pf-item {
    position: relative;
    overflow: hidden;
    background: #151515;
    cursor: pointer;
}

.pf-item-visual {
    width: 100%;
    overflow: hidden;
    transition: transform 0.7s ease;
}

.pf-item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
    transition: opacity 0.5s ease, transform 0.7s ease;
}

.pf-item:hover .pf-item-visual img {
    opacity: 1;
    transform: scale(1.05);
}

/* Hover Overlay */
.pf-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pf-item:hover .pf-item-overlay {
    opacity: 1;
}

.pf-overlay-wide {
    padding: 48px;
}

.pf-item-tag {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--brand-gold-solid);
    margin-bottom: 8px;
    font-weight: 700;
}

.pf-item-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
}

.pf-title-lg {
    font-size: 2rem;
}

/* Grid Placement - Desktop */
.pf-item-1 {
    grid-column: 1 / 8;
}
.pf-item-1 .pf-item-visual {
    aspect-ratio: 4 / 5;
}

.pf-item-2 {
    grid-column: 8 / 13;
    margin-top: 96px;
}
.pf-item-2 .pf-item-visual {
    aspect-ratio: 1 / 1;
}

.pf-item-3 {
    grid-column: 2 / 12;
    margin-top: -48px;
}
.pf-item-3 .pf-item-visual,
.pf-item-3 .pf-visual-wide {
    aspect-ratio: 21 / 9;
}

.pf-item-4 {
    grid-column: 1 / 6;
    margin-bottom: 48px;
}
.pf-item-4 .pf-item-visual {
    aspect-ratio: 3 / 4;
}

.pf-item-5 {
    grid-column: 7 / 13;
    margin-top: -128px;
}
.pf-item-5 .pf-item-visual {
    aspect-ratio: 4 / 3;
}

/* Floating CTA */
.portfolio-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 128px;
    position: relative;
    z-index: 1;
}

.portfolio-cta-line {
    width: 1px;
    height: 96px;
    background: linear-gradient(to bottom, var(--brand-gold-solid), transparent);
}

.portfolio-cta-text {
    font-family: var(--font-tagline);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: #aaa;
}

.portfolio-cta-btn {
    display: inline-block;
    background: var(--brand-gold-gradient);
    color: #000;
    padding: 20px 48px;
    font-family: var(--font-tagline);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}

.portfolio-cta-btn:active {
    transform: scale(0.95);
}

/* Responsive Portfolio */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .pf-item-1 { grid-column: 1 / -1; margin-top: 0; }
    .pf-item-2 { grid-column: 1 / -1; margin-top: 0; }
    .pf-item-3 { grid-column: 1 / -1; margin-top: 0; }
    .pf-item-4 { grid-column: 1 / 2; margin-top: 0; margin-bottom: 0; }
    .pf-item-5 { grid-column: 2 / 3; margin-top: 0; }

    .pf-item-1 .pf-item-visual { aspect-ratio: 16 / 9; }

    .portfolio-title { font-size: 3rem; }
    .portfolio-cta { margin-top: 80px; }
}

@media (max-width: 600px) {
    .portfolio-section {
        padding: 80px 16px;
    }

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

    .pf-item-4 { grid-column: 1 / -1; }
    .pf-item-5 { grid-column: 1 / -1; }

    .portfolio-title {
        font-size: 2.5rem;
    }

    .portfolio-header {
        margin-bottom: 60px;
    }
}

/* ============================== */
/* Training Section               */
/* ============================== */
.training-section {
    background: #fff;
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.training-content {
    grid-column: 1 / 6;
    display: flex;
    flex-direction: column;
}

/* Label */
.training-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.training-label-line {
    display: block;
    width: 48px;
    height: 1px;
    background: #0e0e0e;
}

.training-label-text {
    font-family: var(--font-tagline);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: #0e0e0e;
}

/* Title */
.training-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #0e0e0e;
}

.training-title-italic {
    font-style: italic;
    font-weight: 400;
}

.training-intro {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 480px;
}

/* Curriculum Grid */
.training-curriculum {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-bottom: 48px;
}

.curriculum-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.curriculum-icon {
    color: var(--brand-gold-solid);
    margin-top: 2px;
    flex-shrink: 0;
}

.curriculum-item h4 {
    font-family: var(--font-tagline);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
    color: #0e0e0e;
}

.curriculum-item p {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
}

/* CTA */
.training-cta {
    display: inline-block;
    background: var(--brand-gold-gradient);
    color: #000;
    font-family: var(--font-tagline);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 20px 48px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.training-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.2);
}

.training-cta:active {
    transform: scale(0.95);
}

/* Right: Imagery */
.training-imagery {
    grid-column: 6 / 13;
    position: relative;
}

.training-image-main {
    position: relative;
    overflow: visible;
}

.training-image-main > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.training-image-main:hover > img {
    transform: scale(1.03);
}

/* Floating Badge */
.training-accent-badge {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 180px;
    height: 180px;
    background: #fff;
    padding: 24px;
    z-index: 2;
    display: none;
}

.training-accent-inner {
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.training-accent-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--brand-gold-solid);
    line-height: 1;
}

.training-accent-label {
    font-family: var(--font-tagline);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #aaa;
    margin-top: 8px;
    line-height: 1.3;
}

/* Background Geometry */
.training-bg-geometry {
    position: absolute;
    top: -48px;
    right: -48px;
    width: 256px;
    height: 256px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 769px) {
    .training-accent-badge {
        display: block;
    }
}

/* Responsive Training */
@media (max-width: 992px) {
    .training-grid {
        grid-template-columns: 1fr;
    }

    .training-content {
        grid-column: 1 / -1;
        order: 2;
    }

    .training-imagery {
        grid-column: 1 / -1;
        order: 1;
    }

    .training-image-main > img {
        aspect-ratio: 16 / 9;
    }

    .training-bg-geometry {
        display: none;
    }
}

@media (max-width: 600px) {
    .training-section {
        padding: 64px 16px;
    }

    .training-title {
        font-size: 2.5rem;
    }

    .training-curriculum {
        grid-template-columns: 1fr;
    }
}

/* ============================== */
/* Quote Section                  */
/* ============================== */
.quote-section {
    background: #fff;
    padding: 0 24px 96px;
}

.quote-container {
    display: flex;
    align-items: flex-end;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-image {
    flex: 0 0 33%;
}

.quote-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.quote-image:hover img {
    filter: grayscale(0%);
}

.quote-content {
    flex: 1;
    padding-bottom: 48px;
}

.quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #aaa;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 400;
}

.quote-author {
    font-family: var(--font-tagline);
    font-style: normal;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #0e0e0e;
}

/* Responsive Quote */
@media (max-width: 992px) {
    .quote-container {
        flex-direction: column;
        align-items: stretch;
    }

    .quote-image {
        flex: none;
        max-width: 400px;
    }

    .quote-content {
        padding-bottom: 0;
    }
}

@media (max-width: 600px) {
    .quote-section {
        padding: 0 16px 64px;
    }

    .quote-text {
        font-size: 1.5rem;
    }
}

/* ============================== */
/* Vision Section                 */
/* ============================== */
.vision-section {
    background-color: var(--brand-ivory);
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}

.vision-hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.vision-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.vision-content-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px 0;
    text-align: center;
    z-index: 10;
}

.vision-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(10rem, 30vw, 30rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: -1;
    user-select: none;
}

.vision-header {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.vision-label {
    font-family: var(--font-tagline);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-gold-solid);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.vision-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.vision-title-highlight {
    background-color: #1a1a1a;
    color: var(--brand-gold-solid);
    padding: 4px 16px;
    display: inline-block;
}

.vision-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.vision-est {
    font-family: var(--font-tagline);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--brand-gold-solid);
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.vision-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #555;
    margin-bottom: 16px;
}

.vision-description {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
    max-width: 650px;
}

.vision-highlight-text {
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid var(--brand-gold-solid);
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 40px 0;
}

.vision-pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vision-pillar-item p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.vision-pillar-line {
    height: 3px;
    width: 32px;
    background-color: var(--brand-gold-solid);
    margin-top: 12px;
}

.vision-body {
    max-width: 650px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vision-body-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: #444;
}

.vision-body-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.vision-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.vision-cta {
    background-color: #1a1a1a;
    color: var(--brand-gold-solid);
    padding: 24px 48px;
    font-family: var(--font-tagline);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.vision-cta:hover {
    opacity: 0.9;
}

.vision-since {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #555;
}

.vision-since-line {
    height: 1px;
    width: 48px;
    background-color: var(--brand-gold-solid);
}

.vision-since-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@media (max-width: 768px) {
    .vision-pillars {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vision-title {
        font-size: 2.5rem;
    }

    .vision-hero {
        height: 50vh;
    }
}

/* ============================== */
/* Testimonials Section V3        */
/* ============================== */
.testimonials-section-v3 {
    position: relative;
    padding: 96px 24px;
    background-color: #fff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(min-width: 768px) {
    .testimonials-section-v3 {
        padding: 160px 48px;
    }
}

.testim-v3-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.05);
    transform: skewX(-12deg) translateX(50%);
    pointer-events: none;
}

.testim-v3-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Header */
.testim-v3-header {
    margin-bottom: 80px;
}
@media(min-width: 768px) {
    .testim-v3-header { margin-bottom: 128px; }
}

.testim-v3-label {
    display: inline-block;
    font-family: var(--font-tagline);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--brand-gold-solid);
    font-weight: 700;
    margin-bottom: 24px;
}

.testim-v3-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2px;
    color: #1a1a1a;
    max-width: 800px;
}

.testim-v3-title-highlight {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #1a1a1a, var(--brand-gold-solid));
}

/* Grid */
.testim-v3-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-left: 1px solid rgba(26,26,26,0.1);
}

@media(min-width: 768px) {
    .testim-v3-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testim-v3-card {
    padding: 32px;
    border-bottom: 1px solid rgba(26,26,26,0.1);
    transition: all 0.5s ease;
    background-color: transparent;
    color: #1a1a1a;
}

@media(min-width: 768px) {
    .testim-v3-card {
        padding: 48px;
        border-bottom: none;
        border-right: 1px solid rgba(26,26,26,0.1);
    }
}

.testim-v3-card:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.testim-v3-card-accent {
    background-color: rgba(212, 175, 55, 0.05);
}

.testim-v3-card-accent:hover {
    background-color: var(--brand-gold-solid);
    color: #1a1a1a;
}

.testim-v3-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testim-v3-quote-icon {
    margin-bottom: 40px;
    color: var(--brand-gold-solid);
}
.testim-v3-quote-icon.dark {
    color: #1a1a1a;
}

.testim-v3-quote-icon .material-symbols-outlined {
    font-size: 2.25rem;
    font-variation-settings: 'FILL' 1;
}

.testim-v3-card:hover .testim-v3-quote-icon {
    color: var(--brand-gold-solid);
}

.testim-v3-card.testim-v3-card-accent:hover .testim-v3-quote-icon {
    color: #1a1a1a;
}


.testim-v3-quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}
.testim-v3-quote-text.italic {
    font-style: italic;
}

.testim-v3-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(26,26,26,0.1);
}

.testim-v3-card:hover .testim-v3-meta {
    border-top-color: rgba(255,255,255,0.1);
}
.testim-v3-card-accent:hover .testim-v3-meta {
    border-top-color: rgba(26,26,26,0.1);
}

.testim-v3-author {
    display: flex;
    flex-direction: column;
}

.testim-v3-author-name {
    font-family: var(--font-tagline);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 900;
}
.testim-v3-author-desc {
    font-size: 0.75rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-top: 4px;
}

.testim-v3-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(26,26,26,0.2);
    fill: currentColor;
    border-radius: 0;
    transition: all 0.3s ease;
}

.testim-v3-card:hover .testim-v3-social-icon {
    border-color: rgba(255,255,255,0.2);
}

.testim-v3-card-accent:hover .testim-v3-social-icon {
    border-color: rgba(26,26,26,0.2);
}

.testim-v3-social-icon svg {
    width: 20px;
    height: 20px;
}

/* CTA Row */
.testim-v3-cta-row {
    margin-top: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid rgba(26,26,26,0.05);
}

@media(min-width: 768px) {
    .testim-v3-cta-row {
        flex-direction: row;
    }
}

.testim-v3-avatars {
    display: flex;
    align-items: center;
}

.testim-v3-avatars > * {
    margin-left: -16px;
}
.testim-v3-avatars > *:first-child {
    margin-left: 0;
}

.testim-v3-avatar-img {
    display: inline-block;
    height: 48px;
    width: 48px;
    border: 2px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.testim-v3-avatar-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: var(--brand-gold-solid);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
}

.testim-v3-cta-text-group {
    display: flex;
    flex-direction: column;
    text-align: center;
}
@media(min-width: 768px) {
    .testim-v3-cta-text-group { text-align: right; align-items: flex-end; }
}

.testim-v3-cta-label {
    font-family: var(--font-tagline);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(26,26,26,0.4);
    margin-bottom: 8px;
}

.testim-v3-cta-link {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    border-bottom: 2px solid var(--brand-gold-solid);
    padding-bottom: 4px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.testim-v3-cta-link:hover {
    gap: 24px;
}

.testim-v3-cta-arrow {
    font-family: 'Material Symbols Outlined' !important;
    color: var(--brand-gold-solid);
    transition: transform 0.3s ease;
    text-transform: none;
    font-size: 1.5rem;
}

.testim-v3-cta-link:hover .testim-v3-cta-arrow {
    transform: translateX(4px);
}

.testim-v3-graphic-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(26,26,26,0.05);
}

.testim-v3-graphic-block {
    position: absolute;
    bottom: 0;
    left: 48px;
    width: 128px;
    height: 80px;
    background-color: var(--brand-gold-solid);
}

/* ============================== */
/* Booking / Contact CTA Section  */
/* ============================== */
.booking-cta-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1a1a; /* deep charcoal */
}

.booking-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.booking-cta-bg-color {
    position: absolute;
    inset: 0;
    background-color: #000;
}

.booking-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%);
    transform: scale(1.05);
}

.booking-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1a1a1a 0%, #1a1a1a 45%, rgba(26, 26, 26, 0.9) 60%, rgba(26, 26, 26, 0.4) 100%);
}

@media(max-width: 992px) {
    .booking-cta-overlay {
        background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 40%, rgba(26, 26, 26, 0.8) 70%, rgba(26, 26, 26, 0.4) 100%);
    }
}

.booking-cta-orb {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.orb-top-right {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-color: rgba(197, 160, 89, 0.05); /* very faint gold */
}

.orb-bottom-left {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.05); /* very faint ivory */
}

.booking-cta-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}

@media(min-width: 992px) {
    .booking-cta-container {
        padding-top: 140px;
        padding-bottom: 140px;
        /* Removed width: 50% so it stops centering in the flex parent */
    }
}

.booking-cta-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
}

.booking-cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.booking-cta-line {
    height: 1px;
    width: 48px;
    background-color: var(--brand-gold-solid);
}

.booking-cta-label {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: rgba(248, 248, 248, 0.6);
}

.booking-cta-headline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: #f8f8f8;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

.booking-cta-highlight {
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(to right, #e0c388, var(--brand-gold-solid));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.booking-cta-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: rgba(248, 248, 248, 0.8);
    line-height: 1.625;
    max-width: 500px;
    margin-bottom: 48px;
}

.booking-cta-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

@media(min-width: 600px) {
    .booking-cta-buttons {
        flex-direction: row;
        align-items: center;
        width: auto;
    }
}

.booking-btn-main {
    background: linear-gradient(45deg, #e0c388 0%, #c5a059 100%);
    color: #1a1a1a;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 24px 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
    transition: all 0.5s ease;
    white-space: nowrap;
    text-decoration: none;
    border: none;
}

.booking-btn-main:hover {
    transform: scale(1.02);
    color: #1a1a1a;
}

.booking-btn-main:active {
    transform: scale(0.98);
}

.booking-btn-arrow {
    transition: transform 0.3s ease;
}

.booking-btn-main:hover .booking-btn-arrow {
    transform: translateX(4px);
}

.booking-btn-whatsapp {
    background-color: transparent;
    border: 1px solid rgba(248, 248, 248, 0.1);
    color: rgba(248, 248, 248, 0.6);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 24px 32px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.booking-btn-whatsapp:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #f8f8f8;
    border-color: rgba(248, 248, 248, 0.4);
}

.booking-cta-trust {
    padding-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.7;
    margin-top: 16px;
}

.booking-cta-trust svg {
    color: var(--brand-gold-solid);
    width: 30px;
    height: 30px;
}

.booking-cta-trust-text {
    text-align: left;
    border-left: 1px solid rgba(248, 248, 248, 0.2);
    padding-left: 16px;
}

.booking-cta-trust-title {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f8f8f8;
    font-weight: 700;
}

.booking-cta-trust-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px;
    color: rgba(248, 248, 248, 0.6);
    margin-top: 0;
}

/* ============================== */
/* Footer Section V2              */
/* ============================== */
.site-footer {
    background-color: #0e0e0e;
    color: #ffffff;
    width: 100%;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    border-top: none;
}

@media(min-width: 768px) {
    .site-footer {
        padding: 80px 48px;
    }
}

.footer-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Top Section */
.footer-v2-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 96px;
    width: 100%;
}

@media(min-width: 768px) {
    .footer-v2-top {
        flex-direction: row;
    }
}

.footer-v2-logo {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #ffffff;
    transition: all 0.5s ease;
    cursor: default;
    line-height: 1;
}

.footer-v2-brand:hover .footer-v2-logo {
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.footer-v2-tagline {
    font-family: 'Manrope', sans-serif;
    color: var(--brand-gold-solid);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-top: 16px;
    font-weight: 700;
}

.footer-v2-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-v2-btn {
    background: linear-gradient(to right, #e0c388, #c5a059);
    color: #1a1a1a;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 20px 40px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.footer-v2-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.footer-v2-btn:active {
    transform: scale(0.95);
}

.footer-v2-socials {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.footer-v2-socials a {
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-v2-socials a:hover {
    color: var(--brand-gold-solid);
    transform: scale(1.25);
}

/* Middle Section Grid */
.footer-v2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100%;
    margin-bottom: 96px;
}

@media(min-width: 768px) {
    .footer-v2-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.footer-v2-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-v2-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-gold-solid);
}

.footer-v2-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    color: #adaaaa;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
}

.footer-v2-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-v2-nav a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    color: #6b7280;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    position: relative;
    width: fit-content;
    text-transform: uppercase;
}

.footer-v2-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--brand-gold-solid);
    transition: width 0.3s ease;
}

.footer-v2-nav a:hover {
    color: #ffffff;
}

.footer-v2-nav a:hover::after {
    width: 100%;
}

/* Bottom Section */
.footer-v2-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 24px;
}

@media(min-width: 768px) {
    .footer-v2-bottom {
        flex-direction: row;
    }
}

.footer-v2-copyright {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #6b7280;
    text-transform: uppercase;
}

.footer-v2-signature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-v2-line {
    height: 1px;
    width: 48px;
    background-color: var(--brand-gold-solid);
    opacity: 0.3;
}

.footer-v2-motto {
    font-family: 'Manrope', sans-serif;
    font-style: italic;
    font-weight: 300;
    color: #adaaaa;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Decorative Glow */
.footer-v2-glow {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 384px;
    height: 384px;
    background-color: rgba(197, 160, 89, 0.05);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}
