/* ============================================
   Rare Finds Worldwide - Premium Styles
   ============================================ */

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #d4af37;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #fafafa;
    --white: #ffffff;
    --gold: #d4af37;
    --dark-gold: #d4af37;
    --light-gold: #ffffff;
}

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

/* ============================================
   Premium Navigation Header
   ============================================ */

.navbar {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 0.85rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    padding: 0.65rem 0;
    border-bottom-color: rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled::before {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
}

.navbar.scrolled .navbar-logo {
    height: 78px;
    width: 320px;
}

.navbar .container {
    position: relative;
    z-index: 2;
    width: 1400px;
    max-width: 1400px;
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: space-between;
    gap: 1.5rem;
}

.navbar .navbar-collapse {
    justify-content: center;
    flex-grow: 1;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
    min-height: 52px;
    padding: 0;
    margin-right: 0;
    flex-shrink: 0;
}

.navbar-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-brand:hover {
    transform: none;
}

.navbar-brand:hover .navbar-logo {
    filter: none;
}

.navbar-logo {
    height: 78px;
    width: 320px;
    object-fit: contain;
    transition: none;
    filter: none;
    display: block;
    max-width: 100%;
    z-index: 10;
    position: relative;
}

.brand-text {
    letter-spacing: 2px;
    display: none;
}

.navbar-nav {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 0.25rem;
    padding: 0.5rem 0.85rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.875rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border-radius: 8px;
    background: transparent;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
    opacity: 1;
}

.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.15);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.btn-contact-nav {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-color) !important;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 0 0 0 rgba(212, 175, 55, 0);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
}

.btn-contact-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-contact-nav:hover::before {
    width: 300px;
    height: 300px;
}

.btn-contact-nav:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 0 4px rgba(212, 175, 55, 0.1);
    color: var(--primary-color) !important;
}

.btn-contact-nav.active {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.btn-contact-nav span {
    position: relative;
    z-index: 1;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* ============================================
   Hero Ultra Premium Section
   ============================================ */

.hero-ultra-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

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

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

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-premium-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 160px 20px 120px;
    max-width: 950px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
}

.hero-label-wrapper {
    margin-bottom: 2.5rem;
}

.hero-premium-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    backdrop-filter: blur(10px);
}

.hero-premium-headline {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 2.5rem;
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.02em;
}

.hero-line-1 {
    display: block;
    font-weight: 300;
    font-size: 0.7em;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.hero-line-2 {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.hero-line-3 {
    display: block;
    color: var(--gold);
    font-size: 0.65em;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-premium-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-premium-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Hero Logos Slider Section */
.hero-logos-section {
    margin-top: 0;
    padding: 0;
    overflow: hidden;
}

/* Separate logo strip section */
.logo-strip-section {
    padding-top: 80px;
    padding-bottom: 30px;
    background: #ffffff !important;
}

.hero-logos-title {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 1.2px;
    margin-bottom: 2.5rem;
    text-align: center;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 0 2rem;
}

.hero-logos-slider {
    width: 90%;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    /* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(212, 175, 55, 0.12); */
}

.hero-logos-slider::-webkit-scrollbar {
    display: none;
}

.hero-logos-track {
    display: flex;
    gap: 2rem;
    animation: scrollLogos 28s linear infinite;
    will-change: transform;
    align-items: center;
    padding: 0;
    width: max-content;
}


.hero-logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: none;
    padding: 15px;
}

.hero-logo-item:hover {
    opacity: 1;
}

.hero-logo-item img,
.hero-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: none;
    image-rendering: -webkit-optimize-contrast;
    display: block;
}

.hero-logo-item:hover {
    opacity: 1;
}

.hero-logo-item:hover img,
.hero-logo-item:hover .hero-logo-img {
    filter: none;
    transform: none;
}

.hero-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.btn-hero-main {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-main:hover::before {
    left: 100%;
}

.btn-hero-main:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
    color: var(--primary-color);
}

.btn-hero-main i {
    transition: transform 0.3s ease;
}

.btn-hero-main:hover i {
    transform: translateX(5px);
}

.btn-hero-outline {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.hero-scroll-arrow a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(5px);
}

.hero-scroll-arrow i {
    font-size: 1.5rem;
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

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

.btn-primary {
    background: var(--gold);
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 3;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Stats Bar Modern
   ============================================ */

.stats-bar-modern {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
    padding: 5rem 0;
    position: relative;
    z-index: 10;
    margin-top: 0;
    overflow: hidden;
}

.stats-bar-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.stats-bar-modern .container {
    position: relative;
    z-index: 2;
}

.stat-item-modern {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 18px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--dark-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item-modern:hover::before {
    transform: scaleX(1);
}

.stat-item-modern:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #fffef9 100%);
}

.stat-icon-modern {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.stat-item-modern:hover .stat-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.stat-number-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-bottom: 0.75rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-modern {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Stats Section Header */
.stats-header-wrapper {
    margin-bottom: 4rem;
}

.stats-section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.stats-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.01em;
}

.stats-section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 400;
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============================================
   Sections
   ============================================ */

.section-padding {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4rem;
    text-align: center;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* ============================================
   Features Section Modern
   ============================================ */

.features-section-modern {
    background: #000000;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.features-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.features-section-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    pointer-events: none;
}

.features-section-modern .container {
    position: relative;
    z-index: 2;
}

.features-header-wrapper {
    margin-bottom: 5rem;
}

.features-header-wrapper .section-label {
    color: var(--gold);
}

.features-header-wrapper .section-title {
    color: var(--white);
}

.features-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.feature-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card-modern:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.feature-image-modern {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.feature-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-overlay-modern {
    opacity: 1;
}

.feature-card-modern:hover .feature-image-modern img {
    transform: scale(1.15);
}

.feature-content-modern {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

,.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card-modern h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.feature-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    font-size: 0.9rem;
}

/* Premium Feature Cards - New Design */
.feature-card-premium {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.15);
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--dark-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-premium:hover::before {
    transform: scaleX(1);
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #fffef9 100%);
}

.feature-icon-premium {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card-premium:hover .feature-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.feature-title-premium {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.feature-description-premium {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.9rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Feature Split Layout - Image Left, Content Right */
.feature-card-split {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
    position: relative;
}

.feature-card-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.feature-card-split:hover::before {
    opacity: 1;
}

.feature-card-split:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.85) 0%, rgba(30, 30, 30, 0.95) 100%);
}

.feature-image-split {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.feature-image-split::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-card-split:hover .feature-image-split::after {
    opacity: 1;
}

.feature-image-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.feature-card-split:hover .feature-image-split img {
    transform: scale(1.08);
    filter: brightness(1);
}

.feature-content-split {
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 380px;
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.3) 0%, transparent 100%);
}

.feature-icon-split {
    width: 75px;
    height: 75px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon-split::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    filter: blur(10px);
}

.feature-card-split:hover .feature-icon-split::before {
    opacity: 0.6;
}

.feature-card-split:hover .feature-icon-split {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 
        0 18px 50px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-title-split {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.feature-card-split:hover .feature-title-split {
    color: var(--gold);
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
}

.feature-description-split {
    color: rgba(255, 255, 255, 0.85);
    line-height: 2;
    margin: 0;
    font-size: 1.1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
}

/* ============================================
   Distilleries Section Modern
   ============================================ */

.distilleries-section-modern {
    background: #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.distilleries-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.distilleries-section-modern .container {
    position: relative;
    z-index: 2;
}

.distillery-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.distillery-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.distillery-image-modern {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #2d3a4f 0%, #1a2332 50%, #0a0a0a 100%);
}

.distillery-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.distillery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.distillery-card-modern:hover .distillery-overlay {
    opacity: 1;
}

.distillery-card-modern:hover .distillery-image-modern img {
    transform: scale(1.15);
}

.distillery-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 1.5rem 1.5rem 1.8rem;
    margin: 0;
    color: var(--white);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 1px;
}

.distillery-card-modern {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.distillery-card-modern .distillery-image-modern {
    flex-shrink: 0;
}

/* ============================================
   Process Cards
   ============================================ */

.process-card {
    text-align: center;
    background: var(--white);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.process-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.process-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.process-card:hover .process-image img {
    transform: scale(1.1);
}

.process-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   Process Carousel Section
   ============================================ */

.process-carousel-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.process-carousel-section .container {
    position: relative;
    overflow: visible;
}

#processCarousel {
    position: relative;
    padding: 0 90px 80px;
    overflow: visible;
}

#processCarousel .carousel-inner {
    overflow: visible;
    position: relative;
}

#processCarousel .carousel-item {
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#processCarousel .carousel-item.active {
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#processCarousel .carousel-item-next:not(.carousel-item-start),
#processCarousel .active.carousel-item-end {
    transform: translateX(100%);
}

#processCarousel .carousel-item-prev:not(.carousel-item-end),
#processCarousel .active.carousel-item-start {
    transform: translateX(-100%);
}

.process-carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3.5rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.process-carousel-card {
    background: #f5f2ed;
    border-radius: 18px;
    padding: 3.5rem 3.5rem;
    position: relative;
    min-height: 380px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin: 40px 0 0;
    overflow: visible;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
}

.process-step-badge {
    position: absolute;
    top: -30px;
    left: 50px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    z-index: 15;
    border: 4px solid #ffffff;
}

.process-carousel-content {
    padding: 1rem 2.5rem 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.process-step-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.process-step-description {
    font-size: 1.05rem;
    color: rgba(102, 102, 102, 0.9);
    line-height: 2;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 95%;
}

.process-carousel-image {
    height: 380px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.process-carousel-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 242, 237, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.process-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.5s ease;
}

.process-carousel-card:hover .process-carousel-image img {
    transform: scale(1.02);
}

.process-carousel-control {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: absolute;
    z-index: 10;
    border: none;
}

.process-carousel-control:hover {
    background: var(--gold);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.process-carousel-control:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.process-carousel-control-prev {
    left: 0;
}

.process-carousel-control-next {
    right: 0;
}

.process-carousel-control .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
}

.process-carousel-control .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
}

.process-carousel-control:hover .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.process-carousel-control:hover .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.process-progress-container {
    width: calc(100% - 180px);
    height: 5px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    margin: 4rem auto 0;
    overflow: hidden;
    position: relative;
}

.process-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 16.66%;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

/* ============================================
   Prime Moment Section Modern
   ============================================ */

.prime-moment-section-modern {
    background: #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.prime-moment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.prime-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.prime-moment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.92) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.prime-moment-section-modern .container {
    position: relative;
    z-index: 2;
}

.prime-image-modern {
    width: 100%;
    height: 550px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    position: relative;
    background: #000;
}

.prime-image-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.prime-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.05) contrast(1.1);
    transition: transform 0.5s ease;
}

.prime-image-modern:hover img {
    transform: scale(1.03);
}

.prime-content-wrapper {
    padding: 2rem 0;
}

.prime-text {
    font-size: 1.2rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 2.5rem;
}

.prime-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.prime-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.prime-highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.prime-highlight-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 2px;
}

.prime-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.prime-highlight-text strong {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: block;
    margin-bottom: 0.25rem;
}

.prime-highlight-text span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.prime-btn {
    margin-top: 0;
}

.prime-moment-section .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 2rem;
}

.prime-moment-section .section-label {
    color: var(--gold);
}

.prime-moment-section p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
}

.btn-light:hover {
    background: var(--gold);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.faq-header-wrapper {
    margin-bottom: 5rem;
    padding: 3rem 2rem;
    position: relative;
}

.faq-header-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.faq-header-wrapper .section-label {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

.faq-header-wrapper .section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 1px;
}

.faq-section-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1.5rem;
}

.faq-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.faq-intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.95;
    margin: 0;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.accordion-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.75rem 2.5rem;
    border: none;
    box-shadow: none;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    color: var(--text-dark);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.4s ease;
    filter: brightness(0.7);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
    filter: brightness(1);
}

.accordion-body {
    padding: 1.5rem 2.5rem 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.accordion-body p {
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-buttons .btn {
    font-size: 0.9rem;
    padding: 0.85rem 2.4rem;
    letter-spacing: 1.5px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-text a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-text-small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #d4af37;
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: #000000;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    position: relative;
    z-index: 2;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ============================================
   Contact Page - Premium Design
   ============================================ */

.contact-hero-section {
    background: #000000;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

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

.contact-hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.contact-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
    letter-spacing: -1px;
}

.contact-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-main-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.contact-form-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-form-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-form-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.premium-contact-form .form-group-premium {
    margin-bottom: 0;
}

.form-label-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form-label-premium i {
    color: var(--gold);
    font-size: 0.9rem;
}

.form-label-premium .required {
    color: #e74c3c;
    margin-left: 0.25rem;
}

.form-control-premium,
.form-select-premium {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control-premium:focus,
.form-select-premium:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-control-premium::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-select-premium {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
    appearance: none;
}

.btn-contact-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-contact-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
}

.btn-contact-submit i {
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
    transform: translateX(5px);
}

.btn-contact-submit span {
    position: relative;
    z-index: 1;
}

.form-message-container {
    margin-top: 1.5rem;
}

.contact-info-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 120px;
}

.contact-info-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.contact-info-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-info-items {
    margin-bottom: 2.5rem;
}

.contact-info-item-premium {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-item-premium:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-info-content h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--gold);
}

.contact-info-features {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.contact-feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-services-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.contact-services-section .container {
    position: relative;
    z-index: 2;
}

.contact-services-section .section-label {
    color: var(--gold);
}

.contact-services-section .section-title {
    color: var(--white);
}

.contact-service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
}

.contact-service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.contact-service-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.contact-service-card:hover .contact-service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-service-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.contact-service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   Services Page - Premium Design
   ============================================ */

.services-hero-section {
    background: #000000;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

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

.services-hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.services-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
    letter-spacing: -1px;
}

.services-hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-main-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.services-listing {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    padding-top: 2rem;
}

.service-item-clean {
    position: relative;
}

.service-item-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.service-item-content {
    padding: 5rem 5.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 520px;
    position: relative;
    background: #ffffff;
}

.service-item-number {
    position: absolute;
    top: 5rem;
    right: 5.5rem;
    font-size: 4.5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.12);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1;
    z-index: 1;
    letter-spacing: -3px;
}

.service-item-reverse .service-item-number {
    right: 5.5rem;
    left: auto;
}

,.service-item-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-item-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.25rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.service-item-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 2.0;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
    max-width: 90%;
    letter-spacing: 0.2px;
}

.service-item-reverse .service-item-content {
    padding: 5rem 5.5rem 5rem 4.5rem;
}

.service-card-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.service-card-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--primary-color);
    z-index: 3;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.service-card-premium .service-image-modern {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-card-premium .service-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-premium .service-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card-premium:hover .service-overlay-modern {
    opacity: 1;
}

.service-card-premium:hover .service-image-modern img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
}

.service-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.services-process-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.services-process-section .container {
    position: relative;
    z-index: 2;
}

.process-section-header {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.process-section-header .section-label {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.process-section-header .section-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.process-steps-listing {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* margin-top: 2rem; */
}

.process-step-item {
    position: relative;
}

.process-step-content {
    padding: 0 4rem;
}

.process-step-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-process-section .process-step-title {
    color: #ffffff !important;
}

.process-step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gold);
}

.process-step-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2.0;
    margin: 0;
    font-weight: 400;
    max-width: 92%;
    letter-spacing: 0.2px;
}

.process-step-number-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 500px;
    position: relative;
    padding: 2rem;
}

.process-digit {
    font-size: 18rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -8px;
    position: relative;
    display: inline-block;
}

.process-step-reverse .process-step-content {
    padding: 0 3rem;
}


.process-step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ============================================
   Animations
   ============================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* ============================================
   Image Fallbacks
   ============================================ */

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


.feature-image-modern img::before,
.process-image-home img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(45, 58, 79, 0.8) 0%, rgba(26, 35, 50, 0.6) 100%);
}


.feature-image-modern img[src*="feature-returns"] {
    background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
}

.feature-image-modern img[src*="feature-service"] {
    background: linear-gradient(135deg, #2d3a4f 0%, #1a2332 100%);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #2d3a4f 0%, #1a2332 100%);
}

.feature-image-modern img[src*="feature-exit"] {
    background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
    background-image: 
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
}

.feature-image-modern img[src*="feature-secure"] {
    background: linear-gradient(135deg, #2d3a4f 0%, #1a2332 100%);
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #2d3a4f 0%, #1a2332 100%);
}

.feature-image-modern img[src*="feature-track-record"] {
    background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
}


.process-image-home img[src*="process-selection"] {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    background-image: 
        radial-gradient(circle at 70% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.process-image-home img[src*="process-ownership"] {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.process-image-home img[src*="process-storage"] {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    background-image: 
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.process-image-home img[src*="process-management"] {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    background-image: 
        radial-gradient(circle at 60% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.process-image-home img[src*="process-exit"] {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    background-image: 
        radial-gradient(circle at 50% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}



.service-image-modern img[src*="service-guidance"] {
    background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
}

.service-image-modern img[src*="service-storage"] {
    background: linear-gradient(135deg, #2d3a4f 0%, #1a2332 100%);
    background-image: 
        radial-gradient(circle at 50% 60%, rgba(212, 175, 55, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, #2d3a4f 0%, #1a2332 100%);
}

.service-image-modern img[src*="service-management"] {
    background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
    background-image: 
        radial-gradient(circle at 40% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
}

.service-image-modern img[src*="service-exit"] {
    background: linear-gradient(135deg, #2d3a4f 0%, #1a2332 100%);
    background-image: 
        radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, #2d3a4f 0%, #1a2332 100%);
}

.service-image-modern img[src*="service-support"] {
    background: linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #1a2332 0%, #2d3a4f 100%);
}


/* ============================================
   About Page - Premium Design
   ============================================ */

/* About Hero Section */
.about-hero-section-new {
    background: #000000;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.about-hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

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

.about-hero-badge-new {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.about-hero-title-new {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
    letter-spacing: -1px;
}

.about-hero-description-new {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Section 1: About Our Firm */
.about-firm-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.about-firm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.about-section-badge {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.about-firm-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-firm-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.95;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-firm-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.3px;
}

.btn-about-primary:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
}

.btn-about-primary i {
    transition: transform 0.3s ease;
}

.btn-about-primary:hover i {
    transform: translateX(3px);
}

.btn-about-outline {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0.3px;
}

.btn-about-outline:hover {
    background: var(--gold);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.about-firm-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-firm-image {
    width: 100%;
    max-width: 100%;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: transform 0.5s ease;
}

.about-firm-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-firm-image:hover::before {
    opacity: 1;
}

.about-firm-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.about-firm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-firm-image:hover img {
    transform: scale(1.03);
}

.about-stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--dark-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-stat-item:hover::before {
    transform: scaleX(1);
}

.about-stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1;
}

.about-stat-label {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Section 2: Unlock Our Expertise */
.about-expertise-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Section Even - Light Background (override any dark backgrounds) */
.section-even {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%) !important;
}

.section-even .section-label,
.section-even .section-title {
    color: var(--text-dark) !important;
}

.section-even .features-subtitle {
    color: var(--text-light) !important;
}

/* Section Odd - Dark Background */
.section-odd {
    background: #000000 !important;
    position: relative;
    overflow: hidden;
}

.section-odd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%); */
    pointer-events: none;
}

.section-odd .about-expertise-content,
.section-odd .about-expertise-title,
.section-odd .about-expertise-text,
.section-odd .about-section-badge {
    position: relative;
    z-index: 2;
}

.section-odd .about-expertise-title {
    color: var(--white) !important;
}

.section-odd .about-expertise-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

.section-odd .about-section-badge {
    background: rgba(212, 175, 55, 0.15) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    color: var(--gold) !important;
}

.section-odd .about-feature-item-new {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.section-odd .about-feature-item-new span {
    color: rgba(255, 255, 255, 0.9) !important;
}

.section-odd .about-feature-icon-new {
    color: var(--gold) !important;
}


.about-expertise-section .row {
    align-items: center;
}

.about-expertise-image-container {
    position: relative;
}

.about-expertise-image {
    width: 100%;
    height: 650px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-expertise-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-expertise-content {
    padding-left: 3.5rem;
}

.about-expertise-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-expertise-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-expertise-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
}

.about-feature-item-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.about-feature-item-new:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.about-feature-icon-new {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.about-feature-icon-new i {
    color: var(--white);
    font-size: 0.85rem;
}

.about-feature-item-new span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Section 3: Our Journey Milestones */
.about-milestones-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.about-milestones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.about-milestones-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.about-milestones-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.95;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-milestone-card-new {
    background: var(--white);
    border: 1.5px solid rgba(212, 175, 55, 0.12);
    border-radius: 18px;
    padding: 3rem 2.5rem 2.5rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-milestone-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-milestone-card-new:hover::before {
    opacity: 1;
}

.about-milestone-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.milestone-year {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.milestone-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

,.about-milestone-icon-new {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-milestone-icon-new::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-milestone-card-new:hover ,.about-milestone-icon-new {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.45);
}

.about-milestone-card-new:hover .about-milestone-icon-new::after {
    opacity: 1;
}

.milestone-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.milestone-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.85;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
}

.milestone-card-featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.milestone-card-featured::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 1;
}

.milestone-card-featured:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.3);
}

.milestone-card-featured ,.about-milestone-icon-new {
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.milestone-card-featured .milestone-year {
    color: var(--dark-gold);
    font-weight: 700;
}

/* About Hero Section - Modern Design */
.about-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.about-hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.about-hero-highlight {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    color: var(--gold);
    font-size: 4rem;
    display: block;
    margin-top: 0.5rem;
}

.about-hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 95%;
}

.about-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

,.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.about-feature-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.about-feature-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.about-hero-image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.about-hero-overlay-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    pointer-events: none;
}

.about-overlay-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.about-overlay-card i {
    color: var(--gold);
    font-size: 1.2rem;
}

.about-intro-section-modern {
    background: var(--white);
}

.page-header-about {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 150px 0 100px;
}

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

.page-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header-about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 50%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
}

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

.page-title-about {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -1px;
}

.page-subtitle-about {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 2px;
}

.about-intro-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 100px 0;
}

.section-label-about {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
}

.about-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-image-modern {
    width: 100%;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-modern:hover .about-image-overlay {
    opacity: 1;
}

.about-image-modern:hover img {
    transform: scale(1.05);
}

.team-section-modern {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2c2c2c 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.team-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.team-section-modern .container {
    position: relative;
    z-index: 2;
}

/* Values Section - Premium Redesign */
.values-section-premium {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #0f0f0f 70%, #0a0a0a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.values-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.values-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.values-section-premium .container {
    position: relative;
    z-index: 2;
}

.values-premium-header {
    margin-bottom: 5rem;
}

.values-premium-badge {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.values-premium-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.values-premium-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.85;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.values-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card-premium {
    position: relative;
    height: 100%;
    min-height: 380px;
}

.value-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(212, 175, 55, 0.15);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.value-card-premium:hover .value-card-inner {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.value-card-premium:hover .value-card-inner::before {
    opacity: 1;
}

.value-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: all 0.6s ease;
    z-index: 2;
}

.value-card-premium:hover .value-number {
    color: rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

,.value-icon-premium {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.value-card-premium:hover ,.value-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.value-title-premium {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: color 0.6s ease;
}

.value-card-premium:hover .value-title-premium {
    color: var(--gold);
}

.value-description-premium {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.value-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.value-card-premium:hover .value-accent-line {
    transform: scaleX(1);
}

.value-card-featured-premium {
    grid-column: span 1;
}

.value-card-featured-premium .value-card-inner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.value-card-featured-premium .value-card-inner::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
}

.value-card-featured-premium:hover .value-card-inner {
    box-shadow: 0 35px 90px rgba(212, 175, 55, 0.35);
}


.value-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-icon-modern {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.distillery-card-modern p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   Page Header with Background
   ============================================ */

.page-header-bg {
    background-image: url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 50%, rgba(212, 175, 55, 0.1) 100%);
}

.page-header-bg .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   Services Section with Gradient
   ============================================ */

.services-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.service-image-modern {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-card-modern:hover .service-image-modern img {
    transform: scale(1.15);
}

.service-content-modern {
    padding: 2rem;
}

,.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card-modern h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.service-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   Process Section Modern
   ============================================ */

.process-section-modern {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    position: relative;
}

.process-card-modern {
    background: var(--white);
    border-radius: 18px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--gold), var(--dark-gold)) border-box;
}

.process-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.process-number-modern {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.process-card-modern h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.process-card-modern p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   Benefits Section Modern
   ============================================ */

.benefits-section-modern {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
}

.benefits-section-modern .container {
    position: relative;
    z-index: 2;
}

.benefit-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
}

.benefit-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon-modern {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.benefit-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.benefit-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   Market Stats Section
   ============================================ */

.market-stats-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.market-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.market-stat-item {
    background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--gold), var(--dark-gold));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.market-stat-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-stat-item p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.market-image {
    width: 100%;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.market-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-image-premium {
    width: 100%;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    position: relative;
}

.market-image-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.1);
}

.market-stat-premium {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2rem 1.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

.market-stat-premium:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.market-stat-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.market-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.market-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* ============================================
   Returns Section Modern
   ============================================ */

.returns-section-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.returns-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.returns-section-modern .container {
    position: relative;
    z-index: 2;
}

.return-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.return-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.return-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.return-value {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.return-card-modern p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.return-card-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.return-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--dark-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.return-card-premium:hover::before {
    transform: scaleX(1);
}

.return-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.return-distillery {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.return-value-premium {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.return-label {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.return-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1rem;
}

/* ============================================
   Ultra Premium Styles for Market Page
   ============================================ */

/* Ultra Premium Benefit Cards */
.benefit-card-ultra-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2rem 1.75rem;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.benefit-number-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    z-index: 2;
}

.benefit-icon-modern-ultra {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.benefit-title-ultra {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.benefit-text-ultra {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.benefit-accent-line {
    display: none;
}

/* Ultra Premium Market Stats */
.market-stat-ultra-premium {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2rem 1.75rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.market-stat-ultra-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--dark-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.market-stat-ultra-premium:hover::before {
    transform: scaleX(1);
}

.market-stat-ultra-premium:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #fffef9 100%);
}

.market-stat-year-ultra {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.market-stat-value-ultra {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0.5rem 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
}

.market-stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.market-stat-trend i {
    color: var(--gold);
    font-size: 0.9rem;
}

.market-intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.market-content-box {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.market-content-item {
    padding: 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 18px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.market-content-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.market-content-title i {
    color: var(--gold);
    font-size: 1.3rem;
}

.market-image-ultra-premium {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    background: #000;
}

.market-image-ultra-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 28px;
    z-index: 1;
    pointer-events: none;
}

.market-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.market-image-ultra-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.1);
    transition: transform 0.6s ease;
}

.market-image-ultra-premium:hover img {
    transform: scale(1.05);
}

.market-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 147, 27, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.market-image-badge i {
    font-size: 1.1rem;
}

/* ============================================
   Market Stats Section - New Dark Redesign
   ============================================ */

.market-section-header-new {
    margin-bottom: 2.5rem;
}

.market-badge-new {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-bottom: 1rem;
}

.market-title-new {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.market-intro-new {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.2px;
    margin: 0;
}

.market-stats-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.market-stat-card-new {
    min-height: 180px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.market-stat-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.market-stat-card-new:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.25);
}

.market-stat-card-new:hover::before {
    opacity: 1;
}

.market-stat-label-new {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    padding-bottom: 0.75rem;
}

.market-stat-label-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(212, 175, 55, 0.4);
}

.market-stat-value-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.market-stat-icon-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-top: auto;
}

.market-stat-icon-new i {
    color: var(--gold);
    font-size: 1.1rem;
    background: rgba(212, 175, 55, 0.15);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.market-stat-card-new:hover .market-stat-icon-new i {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.1);
}

.market-content-box-new {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.market-content-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
}

.market-content-header-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.market-content-header-new i {
    color: var(--gold);
    font-size: 1.3rem;
}

.market-content-text-new {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.market-image-new {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #000;
    display: flex;
    align-items: stretch;
}

.market-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

.market-image-badge-new {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 147, 27, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.market-image-badge-new i {
    font-size: 1.1rem;
}

/* Ultra Premium Return Cards */
.return-card-ultra-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.return-card-ultra-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--dark-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 1;
}

.return-card-ultra-premium:hover::before {
    transform: scaleX(1);
}

.return-card-ultra-premium:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 35px 90px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.return-card-featured {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.return-featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.return-distillery-badge {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    z-index: 2;
}

.return-value-ultra {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.return-label-ultra {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.return-details-ultra {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.return-details-ultra i {
    color: var(--gold);
    font-size: 1.2rem;
}

.return-accent-gold {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.return-card-ultra-premium:hover .return-accent-gold {
    opacity: 1;
}

/* ============================================
   Benefit Carousel Styles
   ============================================ */

#benefitCarousel {
    position: relative;
    padding: 0 90px 80px;
    overflow: visible;
}

#benefitCarousel .carousel-inner {
    overflow: visible;
    position: relative;
}

.benefit-carousel-control {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 10;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.benefit-carousel-control:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.benefit-carousel-control:focus {
    outline: none;
}

.benefit-carousel-control-prev {
    left: 0;
}

.benefit-carousel-control-next {
    right: 0;
}

.benefit-carousel-control .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
}

.benefit-carousel-control .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
}


.benefit-carousel-indicators {
    position: relative;
    margin: 4rem 0 0;
    bottom: 0;
    gap: 1rem;
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
}

.benefit-carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 0.5rem;
}

.benefit-carousel-indicators li.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 40px;
    border-radius: 6px;
}

.benefit-carousel-indicators li:hover {
    background: rgba(212, 175, 55, 0.6);
    border-color: var(--gold);
}

#benefitCarousel .carousel-item {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Light Benefit Cards */
.benefit-card-light {
    background: #f5f2ed;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    min-height: 380px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin: 40px 0 0;
    overflow: visible;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.benefit-number-badge-light {
    position: absolute;
    top: -30px;
    left: 50px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    border: 4px solid #f5f2ed;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.benefit-icon-light {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.benefit-title-light {
    font-size: 1.7rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.benefit-text-light {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 100%;
}

.benefit-carousel-control {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: absolute;
    z-index: 10;
    border: none;
}

.benefit-carousel-control:hover {
    background: var(--gold);
}

.benefit-carousel-control .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
}

.benefit-carousel-control .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
}

.benefit-carousel-control:hover .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.benefit-carousel-control:hover .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


/* ============================================
   Exit Strategies Section Modern
   ============================================ */

.exit-strategies-section-modern {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.exit-strategies-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
}

.exit-strategies-section-modern .container {
    position: relative;
    z-index: 2;
}

.exit-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
}

.exit-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.exit-icon-modern {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.exit-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.exit-card-modern p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.exit-list-modern {
    list-style: none;
    padding: 0;
    text-align: left;
}

.exit-list-modern li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.exit-list-modern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ============================================
   Support Section Modern
   ============================================ */

.support-section-modern {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.support-card-modern {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--gold), var(--dark-gold));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.support-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.support-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.support-card-modern h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.support-card-modern p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
    .navbar .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .navbar-actions {
        display: none;
    }

    .navbar .navbar-collapse {
        flex-grow: 1;
    }

    .navbar-nav {
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .contact-hero-section {
        padding: 150px 0 80px;
    }

    .contact-hero-title {
        font-size: 3.5rem;
    }

    .contact-hero-description {
        font-size: 1.15rem;
    }

    .contact-main-section {
        padding: 80px 0;
    }

    .contact-form-premium {
        padding: 2rem 1.75rem;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .contact-info-premium {
        padding: 2.5rem;
        position: relative;
        top: 0;
        margin-top: 3rem;
    }

    .contact-services-section {
        padding: 80px 0;
    }

    .services-hero-section {
        padding: 150px 0 80px;
    }

    .services-hero-title {
        font-size: 3.5rem;
    }

    .services-hero-description {
        font-size: 1.15rem;
    }

    .services-main-section {
        padding: 80px 0;
    }

    .service-card-content {
        padding: 2rem;
    }

    .service-card-content h3 {
        font-size: 1.6rem;
    }

    .services-process-section {
        padding: 80px 0;
    }

    .process-step-card {
        padding: 2.5rem 1.5rem;
    }

    .process-carousel-section {
        padding: 60px 0;
    }

    .process-carousel-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    #processCarousel {
        padding: 0 75px 60px;
    }

    .process-carousel-card {
        margin: 35px 0 0;
        padding: 2rem 1.75rem;
        min-height: 350px;
    }

    .process-step-badge {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
        top: -25px;
        left: 40px;
        border-width: 3px;
    }

    .process-carousel-content {
        padding: 1rem 2rem 1rem 0;
    }

    .process-step-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .process-step-description {
        font-size: 1.1rem;
    }

    .process-carousel-image {
        height: 450px;
    }

    .process-carousel-control {
        width: 55px;
        height: 55px;
    }

    .process-carousel-control-prev {
        left: 0;
    }

    .process-carousel-control-next {
        right: 0;
    }

    .process-progress-container {
        width: calc(100% - 150px);
        margin-top: 3rem;
    }

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

    .stats-bar {
        margin-top: 0;
        border-radius: 0;
    }

    /* Navbar Responsive - Desktop Small */
    .navbar-nav {
        padding: 1.5rem 0;
        gap: 0.5rem;
        align-items: stretch;
    }

    .navbar-nav .nav-link {
        padding: 0.85rem 1.5rem !important;
        margin: 0.25rem 0;
        width: 100%;
        text-align: center;
        border-radius: 10px;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .btn-contact-nav {
        margin: 0.75rem 0 0.5rem 0 !important;
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        margin-top: 1rem;
        padding: 1.5rem 1rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.2rem 0;
    }

    .navbar.scrolled {
        padding: 0.9rem 0;
    }

    .navbar-logo {
        height: 52px;
        width: 200px;
    }

    .navbar.scrolled .navbar-logo {
        height: 48px;
        width: 180px;
    }

    .navbar-nav .nav-link {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        padding: 0.7rem 1.25rem !important;
    }

    .btn-contact-nav {
        padding: 0.7rem 1.75rem;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .hero-minimal-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-minimal-description {
        font-size: 0.9rem;
    }

    .hero-minimal-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    /* Hero Ultra Premium Responsive - Tablet */
    .hero-ultra-premium {
        min-height: 80vh;
        padding: 120px 0 60px;
    }

    .hero-premium-headline {
        font-size: 3.5rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }

    .hero-premium-text {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }

    .hero-premium-buttons {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }

    .btn-hero-main,
    .btn-hero-outline {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .hero-minimal-form {
        flex-direction: column;
        border-radius: 15px;
        padding: 8px;
        max-width: 100%;
    }

    .hero-email-input {
        border-radius: 10px;
        margin-bottom: 8px;
        padding: 1rem 1.5rem;
    }

    .hero-submit-btn {
        border-radius: 10px;
        width: 100%;
        padding: 1rem 2rem;
    }

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

    .page-title-about {
        font-size: 3rem;
    }

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

    .about-image-modern {
        height: 350px;
        margin-bottom: 2rem;
    }

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

    /* Hero Ultra Premium Responsive - Tablet */
    .hero-premium-headline {
        font-size: 3.5rem;
    }

    .hero-premium-text {
        font-size: 1.05rem;
    }

    /* Stats Bar Responsive - Tablet */
    .stats-bar-modern {
        padding: 4rem 0;
    }

    .stats-header-wrapper {
        margin-bottom: 3rem;
    }

    .stats-section-title {
        font-size: 2.8rem;
    }

    .stats-section-subtitle {
        font-size: 1.05rem;
    }

    .stat-number-modern {
        font-size: 2.8rem;
    }

    .stat-item-modern {
        padding: 2.5rem 1.25rem;
    }

    .stat-icon-modern {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    /* Features Section Responsive - Tablet */
    .feature-image-modern {
        height: 220px;
    }

    /* Prime Moment Section Responsive - Tablet */
    .prime-moment-section-modern {
        padding: 80px 0;
    }

    .prime-image-modern {
        height: 400px;
    }

    .prime-content-wrapper {
        padding: 1rem 0;
    }

    .prime-text {
        font-size: 1.05rem;
    }

    /* FAQ Section Responsive - Tablet */
    .faq-section {
        padding: 80px 0;
    }

    /* Benefits Section Responsive - Tablet */
    .benefit-card-modern {
        padding: 2rem 1.75rem;
    }

    /* Market Stats Responsive - Tablet */
    .market-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* Exit Strategies Responsive - Tablet */
    .exit-card-modern {
        padding: 2rem 1.75rem;
    }

    /* Services Section Responsive - Tablet */
    .service-card-content {
        padding: 2rem;
    }

    .service-card-content h3 {
        font-size: 1.6rem;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .prime-image {
        height: 300px;
        margin-bottom: 2rem;
    }

    .page-title-about {
        font-size: 3rem;
    }

    /* About Hero Section Responsive */
    .about-hero-section-new {
        padding: 140px 0 80px;
    }

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

    .about-hero-description-new {
        font-size: 1.15rem;
    }

    .about-firm-image {
        height: 400px;
    }

    .about-expertise-content {
        padding-left: 0;
        margin-top: 3rem;
    }


    .about-expertise-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .about-image-modern {
        height: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.8rem 0;
    }

    .navbar-logo {
        height: 45px;
        width: 170px;
    }

    .navbar.scrolled .navbar-logo {
        height: 42px;
        width: 160px;
    }

    .navbar-nav .nav-link {
        font-size: 0.75rem;
        letter-spacing: 1.2px;
        padding: 0.65rem 1rem !important;
    }

    .btn-contact-nav {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .navbar-nav {
        padding: 1.25rem 0;
        gap: 0.4rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.8rem;
    }

    .navbar-collapse {
        padding: 1.25rem 0.75rem;
        margin-top: 0.75rem;
    }
    .hero-minimal-title {
        font-size: 2rem;
        letter-spacing: -0.3px;
        line-height: 1.3;
    }

    .hero-minimal-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero-minimal-description {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
    }

    .hero-minimal-content {
        padding: 100px 15px 60px;
    }

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

    .about-hero-section-new {
        padding: 120px 0 60px;
    }

    .about-hero-title-new {
        font-size: 2rem;
    }

    .about-hero-description-new {
        font-size: 0.9rem;
    }

    .about-firm-image {
        height: 350px;
    }

    .about-expertise-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-expertise-title {
        font-size: 2rem;
    }

    .about-expertise-text {
        font-size: 1.05rem;
    }

    .about-expertise-image {
        height: 350px;
    }

    .about-expertise-image {
        height: 400px;
    }

    .about-expertise-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .about-feature-item-new {
        padding: 0.75rem 0.875rem;
    }

    .about-feature-item-new span {
        font-size: 0.9rem;
    }

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

    .process-carousel-section {
        padding: 60px 0;
    }

    .process-carousel-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    #processCarousel {
        padding: 0 55px 50px;
    }

    .process-carousel-card {
        margin: 30px 0 0;
        padding: 3rem 2rem;
        min-height: auto;
        flex-direction: column;
    }

    .process-step-badge {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        top: -22px;
        left: 25px;
        border-width: 3px;
    }

    .process-carousel-content {
        padding: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .process-step-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .process-step-description {
        font-size: 0.9rem;
    }

    .process-carousel-image {
        height: 250px;
        width: 100%;
    }

    .process-carousel-control {
        width: 45px;
        height: 45px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .process-carousel-control .carousel-control-prev-icon,
    .process-carousel-control .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }

    .process-carousel-control-prev {
        left: 0;
    }

    .process-carousel-control-next {
        right: 0;
    }

    .process-progress-container {
        width: calc(100% - 110px);
        margin-top: 2.5rem;
        height: 4px;
    }

    /* Benefit Carousel Responsive */
    #benefitCarousel {
        padding: 0 55px 60px;
    }

    .benefit-carousel-control {
        width: 50px;
        height: 50px;
    }

    .benefit-carousel-control .carousel-control-prev-icon,
    .benefit-carousel-control .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }

    .benefit-carousel-indicators {
        margin: 3rem 0 0;
    }

    .benefit-card-light {
        padding: 3rem 2rem;
        min-height: 380px;
    }

    .benefit-title-light {
        font-size: 2rem;
    }

    .benefit-text-light {
        font-size: 0.9rem;
    }

    /* Market Stats New - Responsive */
    .market-title-new {
        font-size: 2rem;
    }

    .market-stats-grid-new {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .market-stat-card-new {
    min-height: 180px;
        padding: 2rem 1.5rem;
    }

    .market-stat-value-new {
        font-size: 2rem;
    }

    .market-content-card-new {
        padding: 1.75rem;
    }

    .market-image-new {
        height: 450px;
        margin-top: 2rem;
    }

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

    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .market-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .return-value {
        font-size: 2rem;
    }

    .page-header-bg {
        background-attachment: scroll;
    }

    .page-title-about {
        font-size: 2rem;
    }

    /* Ultra Premium Styles Responsive */
    .benefit-card-ultra-premium {
        padding: 2rem 1.75rem;
        margin-bottom: 2rem;
    }

    .benefit-icon-modern-ultra {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .benefit-title-ultra {
        font-size: 1.3rem;
    }

    .benefit-text-ultra {
        font-size: 0.9rem;
    }

    .market-stat-ultra-premium {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }

    .market-stat-value-ultra {
        font-size: 2rem;
    }

    .market-image-ultra-premium {
        height: 400px;
        margin-top: 2rem;
    }

    .market-content-item {
        padding: 1.5rem;
    }

    .return-card-ultra-premium {
        padding: 3rem 2rem;
        margin-bottom: 2rem;
    }

    .return-value-ultra {
        font-size: 4rem;
    }

    .return-distillery-badge {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .return-details-ultra {
        font-size: 0.9rem;
    }

    .about-section-title {
        font-size: 1.7rem;
    }

    .about-image-modern {
        height: 300px;
    }

    .contact-hero-section {
        padding: 130px 0 60px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-description {
        font-size: 0.9rem;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-form-premium {
        padding: 2rem 1.75rem;
    }

    .contact-form-title {
        font-size: 1.7rem;
    }

    .contact-form-subtitle {
        font-size: 0.9rem;
    }

    .contact-info-premium {
        padding: 2rem;
        margin-top: 2rem;
    }

    .contact-info-title {
        font-size: 1.7rem;
    }

    .contact-services-section {
        padding: 60px 0;
    }

    .contact-service-card {
        padding: 2rem 1.75rem;
    }

    .services-hero-section {
        padding: 130px 0 60px;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-description {
        font-size: 0.9rem;
    }

    .services-main-section {
        padding: 60px 0;
    }

    .service-item-content {
        padding: 3rem 2rem !important;
        height: auto !important;
    }

    .service-item-number {
        top: 2rem !important;
        left: 2rem !important;
        font-size: 3.5rem !important;
    }

    ,.service-item-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-item-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .service-item-description {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .service-item-image {
        height: 350px;
    }

    .service-item-reverse .service-item-content {
        padding: 3rem 2rem !important;
    }

    .services-process-section {
        padding: 60px 0;
    }

    .process-step-card {
        padding: 2rem 1.5rem;
    }

    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .process-step-card h5 {
        font-size: 1.2rem;
    }

    /* Hero Ultra Premium Responsive */
    .hero-premium-headline {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-line-1,
    .hero-line-2,
    .hero-line-3 {
        display: block;
    }

    .hero-premium-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-premium-buttons {
        flex-direction: row;
        gap: 0.75rem;
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .btn-hero-main,
    .btn-hero-outline {
        flex: 1;
        min-width: 0;
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
        text-align: center;
        white-space: nowrap;
    }

    .btn-hero-main span,
    .btn-hero-outline span {
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-premium-buttons {
        margin-bottom: 3rem;
    }

    .hero-logos-section {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .hero-logos-title {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-logo-item {
        width: 120px;
        height: 60px;
    }

    .hero-logos-track {
        gap: 3rem;
        animation: scrollLogos 36s linear infinite;
    }

    /* Stats Bar Responsive */
    .stats-bar-modern {
        padding: 3rem 0;
    }

    .stats-header-wrapper {
        margin-bottom: 2.5rem;
    }

    .stats-section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .stats-section-subtitle {
        font-size: 0.9rem;
    }

    .stat-item-modern {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }

    .stat-number-modern {
        font-size: 2rem;
    }

    .stat-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Features Section Responsive */
    .feature-card-modern {
        margin-bottom: 2rem;
    }

    .feature-image-modern {
        height: 200px;
    }

    .feature-card-split {
        margin-bottom: 2rem;
    }

    .feature-image-split {
        height: 300px;
    }

    .feature-content-split {
        padding: 2rem 1.75rem;
    }

    .feature-title-split {
        font-size: 2rem;
    }

    .feature-description-split {
        font-size: 0.9rem;
    }

    /* Prime Moment Section Responsive */
    .prime-moment-section-modern {
        padding: 60px 0;
    }

    .prime-image-modern {
        height: 350px;
        margin-bottom: 2.5rem;
        border-radius: 15px;
    }

    .prime-image-modern img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

    .prime-content-wrapper {
        padding: 0;
        text-align: center;
    }

    .prime-content-wrapper .section-title {
        text-align: center !important;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .prime-content-wrapper .section-label {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }

    .prime-text {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 1rem;
    }

    .prime-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    /* FAQ Section Responsive */
    .faq-section {
        padding: 60px 0;
    }

    .faq-header-wrapper {
        margin-bottom: 3rem;
        padding: 2rem 1rem;
    }

    .faq-header-wrapper .section-label {
        padding: 0.55rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .faq-section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .faq-section-title::after {
        width: 60px;
    }

    .faq-intro-text {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.85;
        margin-top: 1rem;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 1.25rem 1.5rem;
    }

    .accordion-body {
        font-size: 0.9rem;
        padding: 0 1.5rem 1.5rem;
    }

    /* Benefits Section Responsive */
    .benefit-card-modern {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .benefit-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Market Stats Responsive */
    .market-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .market-image {
        margin-top: 2rem;
    }

    .market-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .market-image-premium {
        height: 350px;
        margin-top: 2rem;
        border-radius: 18px;
    }

    .market-stat-premium {
        padding: 1.5rem 1rem;
    }

    .market-stat-value {
        font-size: 1.7rem;
    }

    .market-description {
        font-size: 0.9rem;
    }

    /* Returns Section Responsive */
    .return-card-modern {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .return-value {
        font-size: 2rem;
    }

    .return-card-premium {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }

    .return-value-premium {
        font-size: 3rem;
    }

    .return-distillery {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .return-details {
        font-size: 0.85rem;
    }

    /* Exit Strategies Responsive */
    .exit-card-modern {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .exit-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    /* Support Cards Responsive */
    .support-card-modern {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .support-icon {
        font-size: 2rem;
    }

    /* Services Section Responsive */
    .service-card-premium {
        margin-bottom: 2rem;
    }

    .service-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* About Hero Section Responsive */
    .about-hero-section {
        padding: 100px 0 60px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-highlight {
        font-size: 3rem;
    }

    .about-hero-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .about-hero-features {
        gap: 1.25rem;
    }

    ,.about-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }

    .about-feature-content h6 {
        font-size: 0.9rem;
    }

    .about-feature-content p {
        font-size: 0.9rem;
    }

    .about-overlay-card {
        padding: 0.85rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Milestones Section Responsive */
    .about-milestones-section {
        padding: 70px 0;
    }

    .about-milestones-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .about-milestones-text {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .about-milestone-card-new {
        padding: 2.5rem 2rem 2rem;
        margin-bottom: 1rem;
    }

    .milestone-year {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
    }

    ,.about-milestone-icon-new {
        width: 75px;
        height: 75px;
        font-size: 1.9rem;
        border-radius: 18px;
    }

    .milestone-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .milestone-description {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    /* About Section Responsive */
    .about-intro-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .value-card-modern {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .value-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Values Premium Section Responsive */
    .values-section-premium {
        padding: 80px 0;
    }

    .values-premium-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .values-premium-subtitle {
        font-size: 1.05rem;
        padding: 0 1rem;
    }

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

    .value-card-premium {
    }

    .value-card-inner {
        padding: 2rem 1.75rem;
    }

    .value-number {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.25rem;
    }

    ,.value-icon-premium {
        width: 75px;
        height: 75px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .value-title-premium {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .value-description-premium {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .value-card-featured-premium {
        grid-column: span 1;
    }

    /* Contact Form Responsive */
    .premium-contact-form .row {
        margin: 0;
    }

    .form-group-premium {
        margin-bottom: 1rem;
    }

    .form-control-premium,
    .form-select-premium {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .contact-info-item-premium {
        margin-bottom: 1rem;
    }

    /* Footer Responsive */
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .footer-links {
        font-size: 0.9rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .hero-premium-headline {
        font-size: 2rem;
    }

    .hero-premium-label {
        font-size: 0.6rem;
        padding: 0.4rem 1rem;
    }

    .hero-premium-buttons {
        flex-direction: row;
        gap: 0.6rem;
        flex-wrap: nowrap;
    }

    .btn-hero-main,
    .btn-hero-outline {
        padding: 0.85rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.7rem 1rem !important;
        font-size: 0.75rem;
    }

    .about-hero-section-new {
        padding: 100px 0 50px;
    }

    .about-hero-title-new {
        font-size: 2rem;
    }

    .about-hero-description-new {
        font-size: 0.9rem;
    }

    .about-firm-image {
        height: 300px;
    }

    .about-expertise-image {
        height: 350px;
    }

    .about-expertise-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-expertise-title {
        font-size: 2rem;
    }

    .about-expertise-features-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .btn-contact-nav {
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
    }

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

    .stat-number-modern {
        font-size: 2rem;
    }

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

    .faq-header-wrapper {
        padding: 1.5rem 0.5rem;
    }

    .faq-header-wrapper .section-label {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.25rem;
    }

    .faq-section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }

    .faq-section-title::after {
        width: 50px;
        height: 2px;
    }

    .faq-intro-text {
        font-size: 0.9rem;
        padding: 0;
        margin-top: 1rem;
        line-height: 1.8;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 1.1rem 1.25rem;
    }

    .accordion-body {
        font-size: 0.9rem;
        padding: 0 1.25rem 1.25rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}
/* Market Overview & Outlook Section - Light */
.market-content-card-new-light {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--gold);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.market-content-card-new-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--dark-gold) 100%);
    z-index: 1;
}

.market-content-card-new-light:hover {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.market-content-header-new-light {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    z-index: 2;
}

.market-content-header-new-light i {
    color: var(--gold);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.market-content-text-new-light {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for market overview section */
@media (max-width: 992px) {
    .market-content-card-new-light {
        padding: 2rem;
    }
    .market-content-header-new-light {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .market-content-header-new-light i {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }
    .market-content-text-new-light {
        font-size: 0.9rem;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .market-content-card-new-light {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .market-content-card-new-light {
        padding: 1.5rem;
        border-radius: 18px;
        border-left-width: 4px;
    }
    .market-content-header-new-light {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    .market-content-header-new-light i {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
        margin-right: 0.5rem;
    }
    .market-content-text-new-light {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ============================================
   Page Loader
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Benefit Carousel - Equal Heights */
#benefitCarousel .row {
    display: flex;
    align-items: stretch;
}

#benefitCarousel .col-md-6 {
    display: flex;
}

#benefitCarousel .benefit-card-light {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#benefitCarousel .benefit-text-light {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefit Carousel - Enhanced Equal Heights */
#benefitCarousel .row {
    display: flex;
    align-items: stretch;
    min-height: 450px;
}

#benefitCarousel .col-md-6 {
    display: flex;
    align-items: stretch;
}

#benefitCarousel .benefit-card-light {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#benefitCarousel .benefit-icon-light {
    flex-shrink: 0;
}

#benefitCarousel .benefit-title-light {
    flex-shrink: 0;
}

#benefitCarousel .benefit-text-light {
    text-align: center;
}
