@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #121418;
    /* Saf siyah yerine derin antrasit */
    --bg-dark-light: #181b21;
    /* Bölüm geçişleri için ikincil ton */
    --bg-card: rgba(30, 34, 40, 0.7);
    /* Şeffaf kart yapısı */
    --gold: #c5a059;
    --gold-bright: #e6c280;
    --gold-hover: #b38f4d;
    --text-main: #e2e8f0;
    /* Daha okunabilir gri-beyaz */
    --text-muted: #94a3b8;
    --anthracite: #1e2229;
    --border-color: rgba(197, 160, 89, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Global Reset for Underlines */
a,
a:hover,
a:focus,
.btn,
.nav-link,
.dropdown-item {
    text-decoration: none !important;
}

/* Typography & Contrast Fixes */
p {
    color: var(--text-main);
}

.text-muted {
    color: #a1a8b0 !important;
}

.lead {
    color: #cbd2d9;
    font-weight: 300;
}

/* Fixing text on light backgrounds (References etc.) */
.bg-white,
.bg-light {
    color: #1a1c1e !important;
}

.bg-white p,
.bg-light p,
.bg-white h5,
.bg-light h5 {
    color: #1a1c1e !important;
}

.bg-white .text-muted,
.bg-light .text-muted {
    color: #64748b !important;
}

/* Content Areas (Text from DB/TinyMCE) */
.page-content,
.hizmet-icerik,
.medya-detay-icerik,
.proje-detay-icerik {
    color: var(--text-main);
}

.bg-anthracite {
    background-color: var(--anthracite) !important;
}

.page-content p,
.hizmet-icerik p,
.medya-detay-icerik p,
.proje-detay-icerik p {
    margin-bottom: 20px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.hizmet-icerik h1,
.hizmet-icerik h2,
.hizmet-icerik h3 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content ul,
.hizmet-icerik ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.page-content li,
.hizmet-icerik li {
    margin-bottom: 10px;
}

/* Breadcrumbs & Page Headers */
.page-header-refined {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
}

.page-header-refined::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 16, 18, 0.95), rgba(15, 16, 18, 0.7));
    z-index: 1;
}

.page-header-refined .container {
    position: relative;
    z-index: 2;
}

/* Compact Page Header Styles (Modern & Elegant) */
.page-hero-compact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #111;
}

@media (max-width: 768px) {
    .page-hero-compact {
        padding: 90px 0 35px !important;
    }

    .page-hero-compact h1 {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
        letter-spacing: 0.5px;
    }

    .breadcrumb-compact {
        display: flex !important;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 6px;
        font-size: 0.7rem !important;
        opacity: 0.7;
    }
}

/* Elegant Minimal Breadcrumb Style */
.breadcrumb-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.breadcrumb-compact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-compact a:hover {
    color: var(--gold);
}

.breadcrumb-compact span {
    color: rgba(197, 160, 89, 0.4);
}

.breadcrumb-compact span:last-child {
    color: var(--gold);
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-overlay-subtle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.small-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 18px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
    letter-spacing: 2px;
}

.breadcrumb-compact {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}

.breadcrumb-compact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-compact a:hover {
    color: var(--gold);
}

.breadcrumb-compact span:not(.mx-2) {
    color: var(--gold);
}

@media (max-width: 991px) {
    .page-hero-compact {
        padding: 120px 0 50px !important;
    }

    .page-hero-compact h1 {
        font-size: 2rem !important;
    }
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav i {
    font-size: 0.6rem;
    color: var(--gold);
    opacity: 0.5;
}

.breadcrumb-nav span {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-title-refined {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

/* Buttons */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--anthracite);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--gold) !important;
}

/* Navbar */
.navbar {
    background: #0f1012;
    /* Tam opak koyu renk */
    padding: 20px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition);
    z-index: 9999 !important;
    /* Navbar her zaman en üstte */
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(18, 20, 24, 0.96) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar-brand .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 15px;
    position: relative;
    opacity: 0.8;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    opacity: 1;
    color: var(--gold) !important;
}

/* Hover Dropdown for Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        pointer-events: none;
        margin-top: 0;
        background: #16181b !important;
        border: 1px solid rgba(197, 160, 89, 0.2) !important;
        border-radius: 8px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        padding: 10px 0;
    }
}

.dropdown-item {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 25px;
    color: #fff !important;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.dropdown-item:hover {
    background: var(--gold) !important;
    color: #000 !important;
    padding-left: 30px;
}

.dropdown-toggle::after {
    display: none;
}


/* Mobile Call Button */
.mobile-call-btn {
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    /* Square/Kibar look */
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid var(--gold);
}

.mobile-call-btn:hover {
    background: transparent;
    color: var(--gold) !important;
}

.navbar-toggler {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar {
        padding: 15px 0;
    }

    .navbar>.container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-brand .logo-text {
        font-size: 1.2rem;
    }

    .navbar-collapse {
        background: #0f1012;
        margin-top: 10px;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }

    .nav-link {
        margin: 10px 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link::after {
        display: none;
    }

    /* Premium App Bar - Stats */
    .modern-stats-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        padding: 0 10px !important;
        justify-content: space-between !important;
    }

    .modern-stat-item {
        flex: 1 !important;
        min-width: 0 !important;
        /* Allow shrinking */
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(188, 155, 72, 0.1);
        border-radius: 15px;
        padding: 15px 5px !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
    }

    .milestone-count {
        font-size: 1.5rem !important;
        font-weight: 800 !important;
        color: var(--gold) !important;
        line-height: 1;
    }

    .modern-stat-item h6 {
        font-size: 0.55rem !important;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.6) !important;
        text-transform: uppercase;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }

    /* Restoring & Refining Mobile Titles */
    .section-title.text-center.mb-5 {
        margin-bottom: 35px !important;
        display: block !important;
    }

    .section-title h2 {
        font-size: 1.5rem !important;
        font-weight: 600;
        letter-spacing: 0;
        margin-top: 5px;
    }

    .section-title>span {
        font-size: 0.7rem !important;
        color: var(--gold);
        letter-spacing: 3px !important;
    }

    /* Ultra-Robust Mobile About Fix */
    .about-visual-grid {
        height: 300px !important;
        margin: -40px 0 60px !important;
        /* Negative margin to pull up and unify with text */
        position: relative !important;
        display: block !important;
        width: 100% !important;
    }

    .about-img-large {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 4px !important;
        display: block !important;
        filter: brightness(0.9);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .about-img-small {
        display: none !important;
    }

    .luxury-stats-pill {
        position: absolute !important;
        right: -10px !important;
        bottom: -20px !important;
        background: #c5a059 !important;
        padding: 25px 35px !important;
        min-width: 140px !important;
        z-index: 10 !important;
        box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.5) !important;
        border-radius: 0 !important;
    }

    .luxury-stats-pill h2 {
        font-size: 2.2rem !important;
        margin: 0 !important;
        font-weight: 900 !important;
        color: #000 !important;
    }

    .luxury-stats-pill p {
        font-size: 0.6rem !important;
        margin: 5px 0 0 !important;
        letter-spacing: 1px !important;
        color: #000 !important;
        font-weight: 800 !important;
    }

    .feature-item-premium {
        padding: 20px !important;
        margin-bottom: 10px !important;
        border-left: 2px solid var(--gold) !important;
    }
}

/* Refined Corporate Classic - Elegant & Professional */
.hero-slider {
    height: 100vh;
    background: #111;
    position: relative;
    overflow: hidden;
}

.hero-item {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg-img,
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease;
    z-index: 1;
}

.swiper-slide-active .hero-bg-img,
.swiper-slide-active .video-background {
    transform: scale(1);
}

/* Elegant Soft Overlay */
.hero-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

/* Polished Content Layout */
.hero-content-refined {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 800px;
    padding-left: 10%;
}

.hero-content-refined .pre-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.hero-content-refined .pre-title::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.swiper-slide-active .hero-content-refined .pre-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-content-refined h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: capitalize;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.2s ease;
}

.swiper-slide-active .hero-content-refined h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-content-refined h1 span {
    color: var(--gold);
    font-weight: 300;
    display: block;
    margin-top: 5px;
}

.hero-content-refined p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s 0.4s ease;
}

.swiper-slide-active .hero-content-refined p {
    opacity: 1;
    transform: translateY(0);
}

/* Elegant Buttons */
.btn-refined {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: var(--gold);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: none !important;
    font-variant: normal !important;
    text-decoration: none !important;
    border-radius: 0;
    transition: all 0.4s ease;
}

.btn-refined:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hero Slider Specific Animations */
.hero-slider .btn-refined {
    opacity: 0;
    transform: translateY(20px);
}

.hero-slider .swiper-slide-active .btn-refined {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Standard Premium Controls */
.refined-controls {
    position: absolute;
    bottom: 50px;
    right: 10%;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
}

.refined-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

.refined-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.refined-pagination {
    position: absolute;
    bottom: 50px;
    left: 10%;
    z-index: 20;
    display: flex;
    gap: 10px;
}

.swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    transition: all 0.4s ease;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 60px;
}

/* Safe & Clean Mobile Responsive */
@media (max-width: 991px) {
    .hero-slider {
        height: auto;
        min-height: 500px;
    }

    .hero-item {
        height: auto;
        min-height: 500px;
        padding: 120px 0 80px;
        /* Safe padding for header */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content-refined {
        padding: 0 20px;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .hero-content-refined .pre-title {
        justify-content: center;
        font-size: 0.8rem;
    }

    .hero-content-refined h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content-refined p {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .btn-refined {
        display: inline-flex;
        width: auto;
        padding: 10px 25px;
        font-size: 0.75rem;
    }

    .refined-controls {
        display: none;
    }

    .refined-pagination {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .swiper-pagination-bullet {
        width: 25px;
    }

    .swiper-pagination-bullet-active {
        width: 40px;
    }
}

/* About Section - Luxury Elite Refinement */
.about-visual-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 600px;
}

.about-img-large {
    grid-column: 3 / -1;
    grid-row: 1 / 11;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.85);
}

.about-img-small {
    grid-column: 1 / 7;
    grid-row: 4 / 12;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 12px solid var(--bg-dark);
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.section-title h2 .small-tag {
    font-size: 0.75rem;
    letter-spacing: 5px;
    font-weight: 700;
    display: block;
    margin: 5px 0;
    opacity: 0.8;
}

.luxury-stats-pill {
    position: absolute;
    bottom: 50px;
    right: -30px;
    background: #c5a059;
    /* Solid Gold */
    padding: 30px 40px;
    z-index: 10;
    color: #000;
    text-align: center;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
}

.luxury-stats-pill h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0;
    color: #000;
    line-height: 1;
}

.luxury-stats-pill p {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.65rem;
    margin: 5px 0 0;
    color: #000 !important;
    line-height: 1.2;
}

/* Feature Items Refined */
.feature-item-premium {
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 1px solid var(--gold);
    transition: var(--transition);
}

.feature-item-premium:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.feature-item-premium i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.feature-item-premium h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 1px;
}

.feature-item-premium p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.7;
}

/* Gold Horizon - Desktop 3 Column Premium */
.modern-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.modern-stat-item {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(188, 155, 72, 0.1);
    text-align: center;
    transition: var(--transition);
}

.modern-stat-item:hover {
    background: rgba(188, 155, 72, 0.05);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.milestone-count {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.modern-stat-item h6 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/* Premium Corporate Button */
.btn-sovereign {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 18px 45px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.btn-sovereign::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-sovereign:hover {
    border-color: var(--gold);
    color: #000;
}

.btn-sovereign:hover::before {
    transform: translateX(100%);
}

/* Sidebar Pagination Indicators */
.corp-pagination {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.corp-pagination .pg-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;

    .hero-vertical-index {
        display: none;
    }

    .arch-controls {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
}

/* Scroll Animation */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Base Sections Styling Updates */

/* Modern Section Contrast */
section:nth-of-type(even) {
    background-color: var(--bg-dark-light) !important;
}

section {
    position: relative;
    background-color: var(--bg-dark);
}

.section-padding {
    padding: 120px 0;
    position: relative;
}

.section-title {
    margin-bottom: 80px;
    position: relative;
}

.section-title>span {
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 3rem;
    position: relative;
    line-height: 1.1;
}

/* Cards (Services, Projects) */
.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.premium-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

.premium-card h4 {
    margin-bottom: 15px;
}

.service-card-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card:hover .service-card-img-box img {
    transform: scale(1.1);
}

.sci-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.sci-overlay i {
    font-size: 2rem !important;
    margin-bottom: 0 !important;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Project Card */
/* Architectural Project Cards - Modernist Elite */
.project-card {
    position: relative;
    overflow: hidden;
    height: 550px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.8;
}

.project-card:hover .project-img {
    transform: scale(1.1);
    opacity: 1;
}

.project-meta-top {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.project-meta-top .badge {
    background: rgba(188, 155, 72, 0.9);
    backdrop-filter: blur(5px);
    color: #000;
    border-radius: 0;
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.project-content-refined {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 5;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card:hover .project-content-refined {
    transform: translateY(0);
}

.project-content-refined span.location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.project-content-refined h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #fff;
    text-transform: capitalize;
}

.btn-project-view {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-project-view::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #fff;
    transition: width 0.4s ease;
}

.project-card:hover .btn-project-view::after {
    width: 60px;
    background: var(--gold);
}

/* Featured Header Fixes */
.project-header-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.project-header-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Gold Button Style */
.btn-gold {
    background: var(--gold) !important;
    color: #000 !important;
    border: none !important;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold-bright) !important;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}


/* Filter Button Refinement */
.project-filters {
    display: flex;
    gap: 30px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.filter-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.filter-btn.active {
    color: var(--gold);
}

.filter-btn.active::after {
    width: 100%;
}

/* Explore All Projects - Premium Link */
.btn-sovereign-all {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
    transition: all 0.4s ease;
}

.btn-sovereign-all::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.btn-sovereign-all i {
    font-size: 0.7rem;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.btn-sovereign-all:hover {
    color: var(--gold);
}

.btn-sovereign-all:hover::after {
    width: 100%;
}

.btn-sovereign-all:hover i {
    transform: translateX(5px);
}

.project-item {
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-item.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
}

@media (max-width: 991px) {
    .project-filters {
        gap: 15px;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-top: 20px;
    }

    .filter-btn {
        font-size: 0.7rem;
        white-space: nowrap;
    }
}

/* Buttons */
.btn-premium {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-premium.gold {
    background: var(--gold);
    color: #000;
}

.btn-premium.gold:hover {
    background: #000;
    color: var(--gold);
}

.btn-premium.outline {
    background: transparent;
    color: var(--gold);
}

.btn-premium.outline:hover {
    background: var(--gold);
    color: #000;
}

/* Footer */
footer {
    background: #08090a;
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-widget h5 {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.social-links a:hover {
    color: #000;
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.social-links a:hover::before {
    transform: translateY(0);
}


/* Premium Mobile Contact Widget - Mobile Only & Left Side */
.mobile-contact-widget {
    position: fixed;
    bottom: 25px;
    left: 20px;
    /* Solda olması için */
    display: none;
    /* Masaüstünde gizli */
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

@media (max-width: 991px) {
    .mobile-contact-widget {
        display: flex;
        /* Sadece mobilde görünür */
    }
}

.mcw-item {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mcw-item.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.mcw-item.phone {
    background: linear-gradient(135deg, #c5a059, #8e6d2f);
}

.mcw-item:active {
    transform: scale(1.1) rotate(10deg);
}

.mcw-item span {
    position: absolute;
    left: 65px;
    /* Soldayken yazı sağa açılır */
    background: rgba(15, 16, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s ease;
    pointer-events: none;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold);
}

.mcw-item:active span {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats */
.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Solution Partners Premium Styling - Optimized for Quality */
.partners-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 80px 40px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    margin-top: 40px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
}

.partner-logo-box {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    transition: var(--transition);
}

.partner-img {
    max-height: 110px;
    width: auto;
    max-width: 250px;
    filter: brightness(1.2) contrast(1.1);
    opacity: 0.9;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-slide:hover .partner-img {
    filter: brightness(1.4) contrast(1.2);
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
}

@media (max-width: 991px) {
    .partners-wrapper {
        padding: 60px 20px;
        margin: 30px 0;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
    }

    .partner-logo-box {
        height: 180px;
    }

    .partner-img {
        max-height: 130px;
        max-width: 280px;
    }
}

/* Premium Experience Badge */
.experience-badge-refined {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.eb-circle {
    width: 150px;
    height: 150px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 8px solid var(--bg-dark);
    transition: var(--transition);
}

.eb-circle:hover {
    transform: scale(1.05) rotate(5deg);
}

.eb-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: #000;
    margin-bottom: 2px;
}

.eb-text {
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .experience-badge-refined {
        bottom: 20px;
        right: 20px;
    }

    .eb-circle {
        width: 110px;
        height: 110px;
        border-width: 5px;
    }

    .eb-number {
        font-size: 2rem;
    }

    .eb-text {
        font-size: 0.55rem;
    }
}

/* Modern Refined Header */
.page-hero-luxury {
    height: 40vh;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0b0c0d;
}

.hero-bg-zoom {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.5;
}

.page-hero-luxury::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 16, 18, 0.5), rgba(15, 16, 18, 0.95));
    z-index: 1;
}

.hero-luxury-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    opacity: 0.7;
}

.hero-title-main {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-premium {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
    gap: 12px;
    align-items: center;
}

.breadcrumb-premium a,
.breadcrumb-premium span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.5;
    transition: var(--transition);
    color: #fff;
    text-decoration: none;
}

.breadcrumb-premium a:hover {
    color: var(--gold);
    opacity: 1;
}

.breadcrumb-premium .text-gold {
    color: var(--gold);
    opacity: 0.9;
}

.breadcrumb-premium i {
    font-size: 0.5rem;
    opacity: 0.3;
    color: var(--gold);
}

/* Stylish Zig-Zag Timeline Refinement */
.stylish-timeline {
    position: relative;
    max-width: 1200px;
    margin: 100px auto;
}

.stylish-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item-elite {
    padding: 20px 60px;
    position: relative;
    width: 50%;
}

.timeline-item-elite::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background: var(--bg-dark);
    border: 2px solid var(--gold);
    top: 25px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.left-item {
    left: 0;
    text-align: right;
}

.right-item {
    left: 50%;
    text-align: left;
}

.left-item::after {
    right: -15px;
}

.right-item::after {
    left: -15px;
}

.timeline-content-elite {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-content-elite:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-year-text {
    font-size: 3rem;
    font-weight: 950;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .page-hero-luxury {
        height: 40vh;
    }

    .hero-title-main {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .stylish-timeline::after {
        left: 31px;
    }

    .timeline-item-elite {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left !important;
    }

    .timeline-item-elite::after {
        left: 16px;
    }

    .right-item {
        left: 0;
    }
}

/* Inner Page Content Styles */
.inner-about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 4px;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.value-icon {
    width: 65px;
    height: 65px;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 15px rgba(197, 160, 89, 0.05);
}

.premium-card:hover .value-icon {
    background: var(--gold);
    color: #000;
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Luxury Image Stack (About/Services) */
.luxury-image-stack {
    position: relative;
    padding-bottom: 80px;
}

.img-stack-one {
    width: 85%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.img-stack-two {
    position: absolute;
    width: 65%;
    height: 350px;
    object-fit: cover;
    bottom: -40px;
    right: 0;
    border: 15px solid #000;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

@media (max-width: 991px) {
    .luxury-image-stack {
        margin-bottom: 80px;
    }

    .img-stack-one {
        width: 100%;
        height: 400px;
    }

    .img-stack-two {
        width: 70%;
        height: 250px;
        bottom: -30px;
    }
}

/* ==========================================================================
   THE EXHIBITION - Avant-Garde Architectural Narrative
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,900;1,700&family=Outfit:wght@200;400;700&display=swap');

.exhibition-page {
    background: #000;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* 1. Dramatic Intro */
.exhibition-intro {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10vh;
    position: relative;
    background: #000;
}

.ex-label {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 8px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.ex-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -5px;
    margin: 0;
    color: #fff;
    mix-blend-mode: difference;
    z-index: 10;
}

/* 2. Linear Visual Archive (The Core) */
.ex-visual-archive {
    padding: 0;
}

.ex-item {
    width: 100%;
    margin-bottom: 5px;
    /* Minimalist clean separation */
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.ex-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ex-item:hover img {
    transform: scale(1.02);
}

/* 3. The Dossier (Project Context) */
.ex-dossier {
    padding: 200px 0;
}

.ex-story-block {
    max-width: 900px;
}

.ex-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 60px;
    font-style: italic;
}

.ex-desc {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 200;
}

/* Specs Grid */
.ex-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 80px;
}

.spec-node {
    display: flex;
    flex-direction: column;
}

.sn-label {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sn-value {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
}

/* 4. Final CTA */
.ex-footer-cta {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.ex-footer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    margin-bottom: 50px;
}

.ex-btn {
    display: inline-block;
    padding: 30px 100px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 0.8rem;
    transition: all 0.5s;
}

.ex-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 100px rgba(197, 160, 89, 0.2);
}

@media (max-width: 991px) {
    .ex-specs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ex-title {
        font-size: 4.5rem;
        letter-spacing: -2px;
    }

    .ex-quote {
        font-size: 2.2rem;
    }

    .ex-dossier {
        padding: 100px 0;
    }

}

/* --------------------------------------------------------------------------
   GLOBAL CTA & BRAND UTILITIES (Dark Architectural Edition)
-------------------------------------------------------------------------- */
.bg-gold {
    background-color: var(--gold) !important;
}

.bg-black {
    background-color: #000 !important;
}

.section-padding {
    padding: 140px 0;
}

/* New Dark CTA Standard */
.cta-premium-standard {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.cta-premium-standard::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1503387762-592dee58c460?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    /* Ultra-subtle architectural footprint */
    z-index: -1;
    filter: grayscale(100%);
}

.btn-gold-premium {
    background: var(--gold) !important;
    color: #000 !important;
    border: 2px solid var(--gold) !important;
    padding: 18px 45px !important;
    font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-gold-premium:hover {
    background: transparent !important;
    color: var(--gold) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.3);
}

.btn-white-outline-premium {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    padding: 18px 45px !important;
    font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-white-outline-premium:hover {
    background: #fff !important;
    color: #000 !important;
    transform: translateY(-5px);
    border-color: #fff !important;
}

.cta-button-group .btn {
    min-width: 280px;
    font-size: 0.95rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-900 {
    font-weight: 900;
}

.max-w-700 {
    max-width: 700px;
}

@media (max-width: 576px) {
    .cta-button-group .btn {
        width: 100%;
        min-width: 100%;
        padding: 15px 15px;
    }
}