/* --- Global Content Constraints & Base Styling --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.h1-serif {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 24px 0;
    font-weight: 500;
}

.h2-serif {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 16px 0;
    font-weight: 500;
}

/* --- Section 1: Global Hero Banner CSS Engine --- */
.global-hero-section {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: flex-end; /* Layout mimics image anchor configuration */
    padding-bottom: 80px;
    background-color: #000;
    overflow: hidden;
}

/* Flex frame rendering container for raw images */
.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Absolute containment rule - Forces any resolution/size asset to adapt safely */
.fluid-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* Vignette overlay shading block for seamless layout blend */
.hero-vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 75%, #000000 100%);
}

.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-block {
    max-width: 580px;
}

.hero-subtext {
    font-size: 15px;
    line-height: 1.65;
    color: #b3b3b3;
    margin: 0 0 40px 0;
}

/* Action Component Micro Layouts */
.hero-action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-brand-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #d4a74a; /* Precise Brand Theme Accent Gold */
    color: #000;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-brand-solid:hover {
    background-color: #f1c462;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 167, 74, 0.2);
}

.btn-brand-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #fff;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-brand-outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

/* --- Section 2: Markets We Serve CSS Engine --- */
.markets-serve-section {
    background-color: #000;
    padding: 100px 0 120px 0;
}

.markets-header-block {
    max-width: 620px;
    margin-bottom: 64px;
}

.markets-intro-text {
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

/* Balanced Grid Control */
.regions-matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.region-column {
    display: flex;
    flex-direction: column;
}

.region-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #555;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #141414;
    padding-bottom: 10px;
}

/* Flex Cloud arrangement engine for pills */
.pill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.market-pill {
    background-color: #0d0d0d;
    color: #cccccc;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #1a1a1a;
    transition: all 0.25s ease;
    cursor: default;
}

.market-pill:hover {
    border-color: rgba(212, 167, 74, 0.3);
    color: #fff;
    background-color: #111;
}

/* --- Dynamic Responsive Engine Media Query Breakdowns --- */

@media (max-width: 1024px) {
    .h1-serif {
        font-size: 42px;
    }
    
    .regions-matrix-grid {
        grid-template-columns: repeat(2, 1fr); /* Clean 2x2 grid shift for tablets */
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .global-hero-section {
        min-height: 540px;
        padding-bottom: 60px;
    }

    .h1-serif {
        font-size: 36px;
    }

    .h2-serif {
        font-size: 30px;
    }

    .markets-serve-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .global-hero-section {
        min-height: 500px;
        align-items: center; /* Center aligning context content for compact viewports */
        padding-bottom: 0;
    }

    .hero-text-block {
        text-align: center;
    }

    .hero-action-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-brand-solid, .btn-brand-outline {
        width: 100%;
        box-sizing: border-box;
    }

    .regions-matrix-grid {
        grid-template-columns: 1fr; /* Full width execution stack layout for modern mobile devices */
        gap: 35px;
    }
    
    .region-title {
        margin-bottom: 15px;
    }
}
/* --- Section 3: Why Global Buyers Trust Us Styles --- */
.trust-factors-section {
    background-color: #000;
    padding: 120px 0 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

.trust-header-column {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
}

.trust-features-column {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.trust-feature-row {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.trust-icon-box {
    width: 44px;
    height: 44px;
    background-color: #0d0d0d;
    border: 1px solid #141414;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a74a; /* Brand Theme Yellow Gold */
    font-size: 16px;
    flex-shrink: 0;
}

.trust-feature-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
}

.trust-feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

/* --- Section 4: International Client Feedback Styles --- */
.feedback-slider-section {
    background-color: #000;
    padding: 100px 0;
}

.feedback-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.feedback-subtext {
    font-size: 15px;
    color: #666;
    margin: 10px 0 0 0;
}

.feedback-slider-nav {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0d0d0d;
    border: 1px solid #141414;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    border-color: #d4a74a;
    color: #fff;
    background-color: #111;
}

.feedback-cards-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feedback-card {
    background-color: #080808;
    border: 1px solid #111;
    border-radius: 16px;
    padding: 35px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    transition: border-color 0.3s ease;
}

.feedback-card:hover {
    border-color: #1a1a1a;
}

.card-top-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.region-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #888;
    background-color: #111;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #1a1a1a;
}

.feedback-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.feedback-user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #121212;
    padding-top: 20px;
}

.profile-avatar-initials {
    width: 36px;
    height: 36px;
    background-color: #141414;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #777;
    border: 1px solid #222;
}

.profile-info-meta h5 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 3px 0;
}

.profile-info-meta span {
    font-size: 12px;
    color: #555;
    display: block;
}

/* --- Section 5: Premium Call To Action Box Styles --- */
.luxury-cta-section {
    background-color: #000;
    padding: 60px 0 120px 0;
}

.cta-glowing-wrapper {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #060606 0%, #0b0b0b 100%);
    border: 1px solid #121212;
    border-radius: 24px;
    padding: 90px 40px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Large integrated high-end editorial background watermark tracking */
.cta-watermark-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 160px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    letter-spacing: 15px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.cta-inner-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.cta-heading-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #fff;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.gold-text-accent {
    color: #d4a74a;
}

.cta-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 35px 0;
}

.btn-cta-gold {
    display: inline-flex;
    background-color: #d4a74a;
    color: #000;
    padding: 14px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-cta-gold:hover {
    background-color: #f1c462;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 167, 74, 0.25);
}

/* --- Dynamic Responsive Layout Engine Breakdowns --- */

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .trust-header-column {
        position: relative;
        top: 0;
    }

    .feedback-cards-track {
        grid-template-columns: repeat(2, 1fr); /* Swaps grid structure evenly for mid-size devices */
    }

    /* Third column drops cleanly below or fills naturally */
    .feedback-cards-track .feedback-card:last-child {
        grid-column: span 2;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .feedback-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .feedback-slider-nav {
        display: none; /* Hide visual mock arrows on pure mobile components to favor natural scrolling */
    }

    .feedback-cards-track {
        grid-template-columns: 1fr;
    }

    .feedback-cards-track .feedback-card:last-child {
        grid-column: span 1;
    }

    .cta-glowing-wrapper {
        padding: 70px 24px;
    }

    .cta-heading-title {
        font-size: 30px;
    }

    .cta-watermark-text {
        font-size: 100px;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .trust-feature-row {
        flex-direction: column;
        gap: 15px;
    }

    .trust-factors-section {
        padding: 80px 0 50px 0;
    }

    .feedback-slider-section {
        padding: 60px 0;
    }

    .feedback-card {
        padding: 25px;
    }
}