/* 
   TEKÄ°N EMLAK - PREMIUM STYLE SHEET 
   v2.3.0
   Author: Tekin Digital Team
*/

:root {
    --primary-color: #E3120B;
    /* CanlÄ± KÄ±rmÄ±zÄ± - Vurgu */
    --primary-dark: #b80d07;
    /* Koyu KÄ±rmÄ±zÄ± - Hover */
    --secondary-color: #111111;
    /* Tam Siyah - Metin/BaÅŸlÄ±k */
    --accent-color: #f4f4f4;
    /* AÃ§Ä±k Gri - Arkaplan */
    --text-color: #333333;
    /* Koyu Gri - Paragraf */
    --text-light: #666666;
    /* AÃ§Ä±k Gri - YardÄ±mcÄ± Metin */
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* section padding utility */
section {
    padding: 80px 0;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
}

/* Global Utility: Hidden on Desktop by default */
.mobile-only,
.mobile-nav-toggle {
    display: none !important;
}

.desktop-only {
    display: inline-flex !important;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: #500000;
    /* Daha koyu Bordo */
    color: #ffffff;
    padding: 3px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 35px;
}

.top-info a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info i {
    color: var(--white);
    /* Ä°konlar beyaz yapÄ±ldÄ± */
    margin-right: 5px;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 8px;
    /* İkonlar arası küçük boşluk */
}

.top-social a:hover {
    color: var(--primary-color);
}

/* Property Portal Links */
.property-portal-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    width: 28px;
    height: 28px;
}

.property-portal-link:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.portal-logo {
    height: 20px;
    width: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.lang {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    margin-left: 5px;
}

.lang span {
    cursor: pointer;
}

.lang span:first-child {
    color: var(--white);
    font-weight: 700;
}

/* Topbar Scroll Effect - Hide on scroll */
.top-bar {
    transition: transform 0.4s ease, opacity 0.3s ease;
    position: relative;
    z-index: 1001;
}

body.scrolled .top-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Top Bar Dropdown UI - Premium Hızlı Linkler Menu */
.has-top-dropdown {
    position: relative;
    cursor: pointer;
}

.top-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 99999;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.has-top-dropdown:hover .top-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.top-dropdown-menu a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 22px !important;
    color: #334155 !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    text-transform: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
    text-shadow: none !important;
    transition: all 0.3s ease !important;
}

.top-dropdown-menu a i:first-child {
    font-size: 14px;
    opacity: 0.6;
    color: #64748b;
    transition: 0.3s;
}

.top-dropdown-menu a:last-child {
    border-bottom: none !important;
}

.top-dropdown-menu a:hover {
    background: #f8fafc !important;
    color: #E3120B !important;
    padding-left: 28px !important;
}

.top-dropdown-menu a:hover i:first-child {
    color: #E3120B;
    opacity: 1;
}

/* --- MAIN HEADER --- */
.main-header {
    background: transparent;
    padding: 18px 0;
    position: fixed;
    top: 32px;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: none;
}

@media (min-width: 992px) {
    .main-header {
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }
}

.main-header.scrolled {
    padding: 12px 0;
    background: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    top: 0;
}

/* Scroll durumunda link, logo ve buton rengini koyuya Ã§evir */
.main-header.scrolled .main-nav a,
.main-header.scrolled .logo-text {
    color: var(--secondary-color);
    text-shadow: none;
}

.main-header.scrolled .nav-contact-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: 1px solid transparent;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    height: 55px;
}

.logo-text {
    font-size: 26px;
    font-weight: 850;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    align-items: center;
    transition: var(--transition);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.logo-text span,
.main-header.scrolled .logo-text span {
    font-weight: 500;
    color: var(--primary-color) !important;
    /* Logo Kırmızısı - Zorunlu */
    /* Logo Kırmızısı */
    letter-spacing: 2px;
    font-size: 0.65em;
    margin-left: 12px;
    display: inline-block;
    position: relative;
    padding-left: 12px;
    transition: var(--transition);
    border-left: 2px solid #E3120B;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    text-transform: uppercase;
}

.logo-text span::before {
    content: none;
}

/* Scrolled State Updates */
.main-header.scrolled .logo-text {
    color: #1e293b;
    /* Dark Slate */
}

.main-header.scrolled .logo-text span {
    color: #475569;
    /* Slate Grey */
    border-left-color: #E3120B;
    /* Keep the Red Accent */
}

.main-nav ul {
    display: flex;
    gap: 24px;
}

.main-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    text-transform: capitalize;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    /* ::after için gerekli */
}

/* Åeffaf headerda beyaz linkler */

/* Okunurluk iÃ§in hafif gÃ¶lge */


.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    /* Daha aşağıda, yazının altında */
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
    border-radius: 10px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 240px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    display: none !important;
    /* JS ile aÃ§mak daha doÄŸru ama CSS hover iÃ§in */
    flex-direction: column !important;
    gap: 5px !important;
    z-index: 101;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.has-dropdown:hover .dropdown-menu {
    display: flex !important;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.main-nav .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: #333 !important;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: #f9f9f9;
    color: var(--primary-color) !important;
}

.nav-contact-btn {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid transparent;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    text-shadow: none;
}

.nav-contact-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(227, 18, 11, 0.4);
    border-color: var(--primary-color);
}

.main-header.scrolled .nav-contact-btn {
    background: var(--primary-color);
    color: #fff;
}

.main-header.scrolled .nav-contact-btn:hover {
    background: var(--primary-color);
}

/* --- PREMIUM HERO SECTION --- */
.premium-hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

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

.hero-bg-slider .slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}

.premium-hero:hover .slide {
    transform: scale(1.05);
    /* Subtle zoom effect */
}

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

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin-top: 40px;
    /* YukarÄ± Ã§ekildi */
    width: 100%;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
    font-style: italic;
    /* "Ä°mza DeÄŸerinde" vurgusu */
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-benefits {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
    /* Yan yana zorla */
    overflow-x: visible;
    /* Kesilmesin */
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    /* YazÄ± boyutu kÃ¼Ã§Ã¼ltÃ¼ldÃ¼ */
    font-weight: 600;
    background: rgba(20, 20, 20, 0.8);
    padding: 8px 16px;
    /* Kutu boyutu kÃ¼Ã§Ã¼ltÃ¼ldÃ¼ */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transition: var(--transition);
    white-space: nowrap;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    /* Hoverda kÄ±rmÄ±zÄ± Ã§erÃ§eve */
    background: rgba(0, 0, 0, 0.95);
}

.benefit-item i {
    color: var(--primary-color);
    margin-right: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50%;
}

/* Hero Search Box */
.hero-search {
    background: var(--white);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 800px;
}

.search-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.search-tabs button {
    background: transparent;
    border: none;
    padding: 8px 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.search-tabs button.active {
    background: var(--secondary-color);
    color: var(--white);
}

.search-form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 5px;
}

.form-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.form-group i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

.form-group select,
.form-group input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-main);
    color: var(--secondary-color);
    outline: none;
}

.border-left {
    border-left: 1px solid #ddd;
}

.btn-search {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: var(--transition);
}

.btn-search:hover {
    background: var(--primary-dark);
}

/* --- TICKER BAND --- */
.ticker-band {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    gap: 50px;
}

.ticker-item {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-item i {
    color: var(--primary-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- STATS STRIP --- */
.stats-strip {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-number {
    font-size: 80px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-number span {
    color: var(--primary-color);
    font-size: 24px;
    margin-left: 5px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .stats-strip {
        padding: 40px 0;
        overflow: hidden;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 10px;
        /* Balanced gap */
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .stat-number {
        font-size: 28px !important;
        /* Fixed size for stability */
        letter-spacing: -1px;
        display: block !important;
        /* Block for easier text-align control */
        text-align: center;
        margin-bottom: 5px;
    }

    .stat-number span {
        font-size: 18px !important;
        vertical-align: top;
        margin-left: 2px;
    }

    .stat-item p {
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase;
        color: #777;
        margin: 0;
        text-align: center;
    }

    .whatsapp-widget {
        z-index: 9999 !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    .wa-main-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 28px !important;
    }
}

/* --- LISTINGS SECTION --- */
.featured-listings {
    background-color: #E3120B;
    /* KÄ±rmÄ±zÄ± Arkaplan */
    padding: 80px 0;
    color: white;
    /* Metin rengi beyaz */
}

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

.section-header.centered {
    text-align: center;
}

.sub-title {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    /* Alt baÅŸlÄ±k aÃ§Ä±k beyaz */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--white);
    /* BaÅŸlÄ±k beyaz */
}

.listings-grid {
    display: grid;
    gap: 20px;
    /* Gap azaltÄ±ldÄ± */
}

.grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Min width dÃ¼ÅŸÃ¼rÃ¼ldÃ¼ */
}

@media (min-width: 1100px) {

    /* Breakpoint dÃ¼ÅŸÃ¼rÃ¼ldÃ¼ */
    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Card Design */
.listing-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(227, 18, 11, 0.1);
}

.lc-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

.listing-card:hover .lc-img img {
    transform: scale(1.1);
}

.lc-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.b-type {
    display: inline-block;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: auto;
}

/* Ribbon Style for Status */
.b-type.sat\u0131l\u0131k,
.b-type.kiral\u0131k,
.b-type.satılık,
.b-type.kiralık {
    position: absolute;
    top: 18px;
    left: -38px;
    width: 140px;
    transform: rotate(-45deg);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0;
    padding: 8px 0;
}

.b-type.sat\u0131l\u0131k,
.b-type.satılık {
    background: #E3120B !important;
}

.b-type.kiralık,
.b-type.kiral\u0131k {
    background: #1a9e3e !important;
}

/* Adjust Vitrin Badge */
.lc-badges .b-type:not(.satılık):not(.kiralık):not(.sat\u0131l\u0131k):not(.kiral\u0131k) {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 6px;
    background: #FFD700 !important;
    color: #000 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.b-type.ticari {
    background: #004085;
}

.lc-info {
    padding: 20px;
}

.lc-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.lc-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 44px;
    /* fixed height for 2 lines */
    overflow: hidden;
}

.lc-loc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.lc-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.lc-specs span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lc-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--border-color);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 6px;
    font-size: 14px;
}

.lc-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 5px;
}

.view-all-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* --- DETAILED SERVICES (Why Tekin Emlak) --- */
.detailed-services {
    background: #fcfcfc;
}

/* --- STANDARDIZED SERVICE HERO --- */
.page-header,
.service-detail-hero {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 3;
    max-width: 1000px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    /* Lighter shadow for red text */
    color: var(--primary-color) !important;
    /* Red text as requested */
}

.page-header h1 span {
    color: var(--primary-color);
}

.page-header p {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Service Detail Section */
.service-detail-section {
    padding: 60px 0 100px;
    background: #f8f9fa;
    position: relative;
    z-index: 5;
}

.service-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-align: center;
}

.service-content .lead {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.dual-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .dual-service-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        height: 60vh;
    }
}

.service-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-top: 5px solid #ddd;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box.buying {
    border-top-color: #28a745;
}

.service-box.selling {
    border-top-color: var(--primary-color);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.buying .icon-box {
    color: #28a745;
}

.selling .icon-box {
    color: var(--primary-color);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.cta-box {
    background: var(--secondary-color);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.cta-box h4 {
    color: white;
    margin-bottom: 15px;
}

.sidebar .widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.widget h4 {
    font-size: 1.2rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* Utility to ensure contrast on dark backgrounds */
.text-glow {
    text-shadow: 0 0 20px rgba(227, 18, 11, 0.4);
}

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

.header-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(227, 18, 11, 0.1);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}


.corporate-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.corporate-header h2 span {
    color: var(--primary-color);
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* 4 kolon sığması için küçültüldü */
    gap: 25px;
}

.exec-card {
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 300px;
    display: block;
    box-shadow: var(--shadow-soft);
}

.exec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    transition: var(--transition);
}

.exec-card:hover::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 100%);
    /* Sadece biraz daha koyulaÅŸsÄ±n, kÄ±rmÄ±zÄ± olmasÄ±n */
}

.exec-body {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.exec-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.exec-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
}

.exec-info h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
}

.exec-info p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    display: none;
    /* VarsayÄ±lan olarak gizle */
}

.exec-card:hover .exec-info p {
    display: block;
    /* Hoverda gÃ¶ster */
    animation: fadeIn 0.5s ease;
}

.exec-badges {
    display: flex;
    gap: 10px;
}

.exec-badges span {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* --- BLOG SECTION --- */
.home-blog {
    background: var(--white);
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

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

.blog-card {
    background: var(--white);
}

.blog-img {
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    color: var(--secondary-color);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    color: var(--primary-color);
}

/* --- CORPORATE CTA STRIP (Merged & Fixed) --- */
.corporate-cta-strip-wrapper {
    background: #000000 !important;
    padding: 50px 0;
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 50px auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.corporate-cta-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 20px 60px;
    flex-wrap: wrap;
}

.strip-text {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    color: var(--white);
    flex: 1;
}

.strip-text span strong {
    color: var(--primary-color);
}

.strip-text i {
    font-size: 32px;
    color: var(--primary-color);
}

.strip-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.strip-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    /* Telefon rengi beyaz */
}

.btn-primary {
    background: var(--white);
    /* Buton beyaz */
    color: var(--secondary-color);
    /* YazÄ± siyah */
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}


/* Footer styles removed (defined in final section) */


/* --- EXTRAS: WHATSAPP & COOKIE --- */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.wa-main-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-widget:hover .wa-tooltip {
    opacity: 1;
}


/* Cookie Notice styles moved to cookie.css for better maintainability */

/* --- RESPONSIVE --- */
@media (max-width: 991px) {

    /* Prevent horizontal overflow on mobile */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .container {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .mobile-only,
    .mobile-nav-toggle {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    /* ═══════════════════════════════════════
       TOPBAR - Always Visible
       ═══════════════════════════════════════ */
    .top-bar {
        background: #500000 !important;
        padding: 8px 0 !important;
        position: relative;
        z-index: 1010;
    }

    .top-bar .container {
        padding: 0 15px !important;
    }

    .top-bar .top-info a {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .top-bar .top-social {
        display: flex !important;
        gap: 10px !important;
    }

    .top-bar .portal-logo {
        height: 18px !important;
        width: auto !important;
    }

    /* ═══════════════════════════════════════
       MOBILE HEADER - MINIMAL (15 LINES ONLY!)
       ═══════════════════════════════════════ */
    .main-header {
        padding: 12px 0 !important;
        margin-top: 4px !important;
    }

    .main-header.scrolled {
        margin-top: 0 !important;
    }

    .brand-logo {
        height: 40px !important;
    }

    .logo-text {
        font-size: 17px !important;
    }

    .mobile-nav-toggle {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 6px;
        cursor: pointer;
        position: relative !important;
        z-index: 9999 !important;
    }

    .main-header.scrolled .mobile-nav-toggle {
        background: #f5f5f5 !important;
        border-color: #ddd !important;
    }

    .hamburger-box {
        width: 20px;
        height: 16px;
        position: relative;
    }

    .hamburger-inner {
        width: 100%;
        height: 2px;
        background-color: #E3120B;
        /* Explicit Red for Visibility */
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.3s;
        border-radius: 4px;
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: '';
        width: 100%;
        height: 2px;
        background-color: #E3120B;
        /* Explicit Red for Visibility */
        position: absolute;
        left: 0;
        transition: 0.3s;
        border-radius: 4px;
    }

    .hamburger-inner::before {
        content: '';
        top: -6px;
    }

    .hamburger-inner::after {
        content: '';
        top: 6px;
    }

    .main-header.scrolled .hamburger-inner,
    .main-header.scrolled .hamburger-inner::before,
    .main-header.scrolled .hamburger-inner::after {
        background: #111 !important;
    }

    /* Show only hamburger on mobile, hide other nav elements initially */
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        z-index: 1001 !important;
        transition: right 0.4s ease !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px !important;
    }

    .main-nav.active {
        right: 0 !important;
    }

    .main-nav ul {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center;
    }

    .main-nav ul li a {
        font-size: 1.3rem !important;
        color: var(--secondary-color) !important;
        font-weight: 700 !important;
    }

    .header-actions {
        display: flex !important;
    }

    .header-actions .nav-contact-btn {
        display: none !important;
    }


    /* Layout Polish - TIGHTEN GAPS */
    .premium-hero {
        padding: 160px 0 100px !important;
        height: auto !important;
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        overflow: visible !important;
    }

    .premium-hero .slide,
    .premium-hero .hero-bg-slider .slide {
        background-position: left center !important;
    }

    .hero-container {
        display: block !important;
        height: auto !important;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 9vw, 3.8rem) !important;
        line-height: 1.2 !important;
        text-align: center !important;
        margin: 0 auto 20px auto !important;
    }

    .hero-content p {
        text-align: center !important;
        margin: 0 auto 30px auto !important;
        font-size: 16px !important;
    }

    .hero-benefits {
        justify-content: center !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .benefit-item {
        width: auto !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        padding: 8px 16px !important;
        border-radius: 50px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    /* Premium Search Grid for Tablet */
    .hero-search {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        padding: 20px !important;
        border-radius: 20px !important;
        margin-top: 20px !important;
        margin-bottom: 15px !important;
        /* Gap before ticker */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .search-form {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .form-group {
        border: 1px solid #eee !important;
        border-radius: 12px !important;
        padding: 5px 12px !important;
    }

    .btn-search {
        grid-column: span 2 !important;
        padding: 18px !important;
        font-size: 1.05rem !important;
        border-radius: 12px !important;
        margin-top: 5px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Grids */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .listings-grid.grid-5 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .executive-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .search-form {
        grid-template-columns: 1fr !important;
    }

    .btn-search {
        grid-column: span 1 !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .listings-grid.grid-5 {
        grid-template-columns: 1fr !important;
    }
}

/* Placeholder Card Styles */
.empty-slot {
    background: #fdfdfd;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px dashed #e0e0e0;
    box-shadow: none !important;
    overflow: hidden;
}

.diagonal-label {
    transform: rotate(-15deg);
    font-size: 18px;
    font-weight: 800;
    color: #d0d0d0;
    text-align: center;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 4px solid #d0d0d0;
    padding: 10px 20px;
    border-radius: 8px;
    opacity: 0.7;
}

.empty-slot:hover .diagonal-label {
    color: #E3120B;
    border-color: #E3120B;
    opacity: 1;
    transition: 0.3s;
}

/* --- NEW PREMIUM DROPDOWN STYLES (Overrides) --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px);
    min-width: 260px !important;
    padding: 10px !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    border-top: 3px solid var(--primary-color) !important;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: flex !important;
    align-items: center;
    padding: 12px 15px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--secondary-color) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    position: relative;
    overflow: hidden;
    background: transparent !important;
}

.dropdown-menu li a:hover {
    background: rgba(227, 18, 11, 0.05) !important;
    color: var(--primary-color) !important;
    padding-left: 20px !important;
}

.dropdown-menu li a:hover::before {
    content: '';
    position: absolute;
    left: 8px;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    color: var(--primary-color);
}

/* Rotate Dropdown Icon on Hover */
.main-nav .fa-chevron-down {
    font-size: 8px;
    margin-left: 5px;
    vertical-align: middle;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary-color);
    opacity: 1 !important;
}

/* --- VALUATION SECTION --- */
.valuation-section {
    background: #1a1a1a;
    background-image: linear-gradient(135deg, #111 0%, #222 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 50px 0;
}

.valuation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.val-text {
    flex: 1;
}

.val-tag {
    background: rgba(227, 18, 11, 0.15);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.val-text h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.val-text h2 span {
    color: var(--primary-color);
}

.val-text p {
    color: #999;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

.val-actions {
    display: flex;
    gap: 15px;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--secondary-color);
}

.val-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.val-card-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 300px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--white);
    position: relative;
    transform: rotate(5deg);
    transition: 0.5s;
}

.val-card-mockup:hover {
    transform: rotate(0deg) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.val-card-mockup i {
    font-size: 48px;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .valuation-content {
        flex-direction: column;
        text-align: center;
    }

    .val-text p {
        margin: 0 auto 30px auto;
    }

    .val-actions {
        justify-content: center;
    }
}

/* --- NEW PREMIUM VALUATION SECTION (Redesigned) --- */
.valuation-section {
    background: url('assets/hero-bg.jpg') center/cover !important;
    /* Arkaplan resmi */
    position: relative;
    padding: 100px 0 !important;
    overflow: hidden;
    margin: 60px 0 !important;
    border-radius: 0 !important;
}

/* Kırmızı Overlay */
.valuation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 18, 11, 0.9) 0%, rgba(139, 0, 0, 0.95) 100%) !important;
    z-index: 1;
}

.valuation-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.val-text h2 {
    color: #fff !important;
    font-size: 42px !important;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.val-text h2 span {
    color: #ffd700 !important;
    /* Altın sarısı vurgu */
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.val-text p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px !important;
    font-weight: 400;
    max-width: 550px;
}

.val-tag {
    background: #fff !important;
    color: var(--primary-color) !important;
    padding: 8px 16px !important;
    text-transform: uppercase;
    font-size: 12px !important;
    letter-spacing: 2px;
    border-radius: 30px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.val-actions .btn-primary {
    background: #fff !important;
    color: var(--primary-color) !important;
    border: none !important;
    font-weight: 700 !important;
}

.val-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.btn-outline-white:hover {
    border-color: #fff !important;
    background: transparent !important;
    color: #fff !important;
}

/* Sağdaki Görseli Daha Soyut Yap */
.val-visual .val-card-mockup {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    width: 250px !important;
    height: 250px !important;
    border-radius: 50% !important;
    /* Yuvarlak */
    transform: rotate(0) !important;
    backdrop-filter: blur(20px) !important;
}

.val-visual .val-card-mockup i {
    font-size: 60px !important;
    color: #fff !important;
    margin-bottom: 15px;
}

.val-visual .val-card-mockup .mockup-info {
    text-align: center;
    color: #fff;
}


/* --- VALUATION SECTION (Clean Light Theme) --- */
.valuation-section {
    background: #f8f9fa !important;
    /* Çok açık gri, temiz zemin */
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px) !important;
    /* Çok hafif nokta desen */
    background-size: 20px 20px !important;
    padding: 90px 0 !important;
    position: relative;
    margin: 0 !important;
    /* Margin sıfırlandı */
    border-top: 1px solid #eaeaea;
}

/* Overlay'i kaldır */
.valuation-section::before {
    display: none !important;
}

.val-text h2 {
    color: #222 !important;
    /* Koyu antrasit başlık */
    font-size: 36px !important;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.val-text h2 span {
    color: var(--primary-color) !important;
    /* Sadece kelime kırmızı */
    text-decoration: none !important;
}

.val-text p {
    color: #666 !important;
    /* Okunabilir gri metin */
    font-size: 16px !important;
    font-weight: 500;
}

.val-tag {
    background: #222 !important;
    color: #fff !important;
    box-shadow: none !important;
    padding: 5px 12px !important;
    font-size: 11px !important;
}

/* Buton Düzenlemesi */
.val-actions .btn-primary {
    background: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(227, 18, 11, 0.2) !important;
}

.val-actions .btn-primary:hover {
    background: #c90f09 !important;
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: #ddd !important;
    color: #555 !important;
}

.btn-outline-white:hover {
    border-color: #222 !important;
    background: #222 !important;
    color: #fff !important;
}

/* Görsel Kısmı - Beyaz Temiz Kart */
.val-visual .val-card-mockup {
    background: #fff !important;
    border: 1px solid #eee !important;
    width: 220px !important;
    height: 220px !important;
    border-radius: 50% !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: none !important;
}

.val-visual .val-card-mockup i {
    color: var(--primary-color) !important;
    font-size: 50px !important;
}

.val-visual .val-card-mockup .mockup-info {
    color: #333 !important;
}


/* --- NEW SPLIT DESIGN (Radical & Modern) --- */
.valuation-section {
    background: linear-gradient(105deg, #111111 0%, #111111 60%, var(--primary-color) 60%, var(--primary-color) 100%) !important;
    padding: 0 !important;
    /* Padding sıfırladık, container yönetecek */
    margin: 80px 0 !important;
    position: relative;
    overflow: hidden;
    border: none !important;
    background-image: none !important;
}

.valuation-content {
    /* İçerik düzeni */
    display: flex;
    align-items: stretch;
    /* Yükseklik eşitlensin */
    min-height: 480px;
    /* Sabit yükseklik */
    gap: 0 !important;
}

.val-text {
    flex: 6;
    /* %60 alan */
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.val-text h2 {
    color: #fff !important;
    font-size: 48px !important;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.val-text h2 span {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    /* Metin içi vurgu siyaha döndü çünkü arkaplan siyah */
    background: transparent !important;
    -webkit-text-fill-color: var(--primary-color);
}

.val-text p {
    color: #bbb !important;
    font-size: 18px !important;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.val-tag {
    /* Etiket */
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    padding: 8px 20px !important;
}

.val-visual {
    flex: 4;
    /* %40 alan (Kırmızı kısım) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Sağdaki yuvarlak mock-up yerine büyük ikon/yazı */
.val-visual .val-card-mockup {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    text-align: center;
    transform: none !important;
}

.val-visual i {
    font-size: 80px !important;
    color: #fff !important;
    opacity: 0.9;
    margin-bottom: 20px;
    display: block;
}

.val-visual .mockup-info {
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 300;
}

.val-visual .mockup-info strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-top: 10px;
}

/* Butonları Sola Taşıdık */
.val-actions {
    justify-content: flex-start !important;
}

.val-actions .btn-primary {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: 2px solid var(--primary-color) !important;
    padding: 15px 40px !important;
    font-size: 16px !important;
}

.val-actions .btn-primary:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    padding: 15px 30px !important;
    color: #fff !important;
}


/* --- NEW VISUAL VALUATION SECTION (Realistic & Premium) --- */
.valuation-section {
    /* Ofis/Danışmanlık Görseli */
    background: url('assets/office.png') center/cover fixed no-repeat !important;
    padding: 100px 0 !important;
    margin: 60px 0 !important;
    position: relative;
    border: none !important;
}

/* Soldan sağa kararan şık overlay */
.valuation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.2) 100%) !important;
    z-index: 1;
}

.valuation-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
}

.val-text {
    flex: 1;
    max-width: 600px;
    padding: 0;
}

.val-text h2 {
    color: #fff !important;
    font-size: 44px !important;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.val-text h2 span {
    color: var(--white) !important;
    background: var(--primary-color);
    padding: 0 10px;
    box-shadow: 0 4px 15px rgba(227, 18, 11, 0.4);
    -webkit-text-fill-color: #fff !important;
}

.val-text p {
    color: #e0e0e0 !important;
    font-size: 18px !important;
    margin-bottom: 35px;
    font-weight: 400;
}

.val-actions {
    justify-content: flex-start !important;
    gap: 20px;
}

.val-actions .btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    padding: 15px 35px !important;
    font-size: 16px !important;
    border-radius: 5px !important;
}

.val-actions .btn-primary:hover {
    background: #b80d07 !important;
    transform: translateY(-3px);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    padding: 15px 35px !important;
    border-radius: 5px !important;
}

.btn-outline-white:hover {
    background: #fff !important;
    color: #333 !important;
}

/* Sağdaki Görsel Alanını Gizle (Arkaplan zaten görsel) */
.val-visual {
    display: none !important;
}


/* --- NEW MODERN FLOATING CARD (Airbnb/Premium Style) --- */
.valuation-section {
    background: transparent !important;
    /* Arkaplan şeffaf */
    background-image: none !important;
    padding: 20px 0 80px 0 !important;
    margin: 0 !important;
    border: none !important;
}

.valuation-section::before {
    display: none !important;
}

.valuation-content {
    /* KARTIN KENDİSİ */
    background: linear-gradient(135deg, #E3120B 0%, #8a0c07 100%) !important;
    border-radius: 30px !important;
    padding: 60px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(227, 18, 11, 0.25) !important;
    min-height: 400px;
}

/* Dekoratif Daireler (Arkaplan Süsü) */
.valuation-content::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.valuation-content::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.val-text {
    position: relative;
    z-index: 5;
    flex: 1;
    max-width: 550px;
    padding: 0 !important;
}

.val-text h2 {
    color: #fff !important;
    font-size: 40px !important;
    margin-bottom: 20px;
    text-shadow: none !important;
}

.val-text h2 span {
    color: #fff !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-text-fill-color: #fff !important;
    font-weight: 300 !important;
    opacity: 0.9;
}

.val-text p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 17px !important;
    margin-bottom: 30px;
}

.val-tag {
    background: #fff !important;
    color: var(--primary-color) !important;
    border-radius: 8px !important;
    font-weight: 800 !important;
    padding: 6px 14px !important;
    margin-bottom: 25px;
    display: inline-block;
}

.val-actions .btn-primary {
    background: #fff !important;
    color: var(--primary-color) !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    background: transparent !important;
    border-radius: 12px !important;
}

/* SAĞ TARAF: GÖRSEL */
.val-visual {
    display: block !important;
    flex: 1;
    height: 100%;
    position: absolute !important;
    right: 0;
    top: 0;
    width: 50%;
    z-index: 2;
    /* Resmi maskeleyerek sağa yerleştir */
    background: url('assets/villa.png') center/cover no-repeat !important;
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

.val-visual .val-card-mockup {
    display: none !important;
    /* İkonu gizle, gerçek resim var */
}

@media (max-width: 992px) {
    .valuation-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px !important;
    }

    .val-visual {
        position: relative !important;
        width: 100%;
        height: 250px;
        mask-image: linear-gradient(to bottom, transparent, black 20%);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%);
        margin-top: 30px;
        border-radius: 20px;
    }

    .val-actions {
        justify-content: center !important;
    }
}


/* --- DARK PREMIUM LUXURY CARD (Final Design) --- */
.valuation-section {
    padding: 0 0 100px 0 !important;
}

.valuation-content {
    /* Kartın Rengi: Koyu Antrasit / Siyah */
    background: #1a1a1a !important;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%) !important;
    border: 1px solid #333 !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4) !important;
}

/* Dekoratif Daireler */
.valuation-content::after {
    background: rgba(255, 255, 255, 0.02) !important;
}

.val-text h2 {
    color: #fff !important;
}

.val-text h2 span {
    color: #fff !important;
    font-weight: 300 !important;
    opacity: 0.7;
}

/* Buton: Kırmızı (Siyah üstünde patlasın) */
.val-actions .btn-primary {
    background: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(227, 18, 11, 0.3) !important;
}

.val-actions .btn-primary:hover {
    background: #ff1f1f !important;
    box-shadow: 0 15px 40px rgba(227, 18, 11, 0.5) !important;
}

/* Sağdaki Görsel: Lüks Residence (Ankara) */
.val-visual {
    background: url('assets/ankara_luxury_residence.png') center/cover no-repeat !important;
    /* Resmi maskeleyerek sağa yerleştir */
    mask-image: linear-gradient(to right, transparent, black 10%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%);
    opacity: 0.8;
    /* Biraz karart ki yazılarla çelişmesin */
    mix-blend-mode: luminosity;
    /* Resmi siyah-beyaz tonuna çek */
}


/* --- CLEAN & SPACIOUS LIGHT DESIGN (Final Fix) --- */
.valuation-section {
    background: #f8f9fa !important;
    /* Çok açık gri zemin */
    padding: 100px 0 !important;
    margin-top: 120px !important;
    /* ÜSTTEN CİDDİ BOŞLUK */
    margin-bottom: 80px !important;
    border-top: 1px solid #eee;
}

.valuation-content {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    min-height: auto !important;
    padding: 0 !important;
    gap: 80px;
    /* Yazı ile Resim arası boşluk */
    flex-direction: row !important;
    /* Yan yana */
}

/* Arkaplan süslerini kaldır */
.valuation-content::after,
.valuation-content::before {
    display: none !important;
}

.val-text {
    flex: 1;
    text-align: left !important;
    padding: 0 !important;
}

.val-text h2 {
    color: #222 !important;
    /* Koyu antrasit başlık */
    font-size: 38px !important;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 800;
}

.val-text h2 span {
    color: var(--primary-color) !important;
    font-weight: 800 !important;
    opacity: 1 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-text-fill-color: initial !important;
    /* Gradient iptal */
}

.val-text p {
    color: #666 !important;
    font-size: 17px !important;
    margin-bottom: 35px;
    line-height: 1.7;
}

.val-tag {
    background: #eef0f2 !important;
    color: #222 !important;
    border: 1px solid #ddd;
    margin-bottom: 25px;
    font-weight: 600 !important;
    letter-spacing: 1px;
}

.val-actions {
    justify-content: flex-start !important;
}

.val-actions .btn-primary {
    background: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(227, 18, 11, 0.3) !important;
    padding: 15px 40px !important;
}

.val-actions .btn-primary:hover {
    background: #c00 !important;
    transform: translateY(-3px);
}

.btn-outline-white {
    border: 2px solid #ddd !important;
    color: #555 !important;
    /* Yazı koyu gri */
    background: transparent !important;
}

.btn-outline-white:hover {
    border-color: #222 !important;
    color: #222 !important;
    background: #fff !important;
}

/* GÖRSEL ALANI: Net Resim */
.val-visual {
    display: block !important;
    flex: 1;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: auto !important;
    height: 400px !important;
    background: url('assets/ankara_luxury_residence.png') center/cover no-repeat !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
    /* Maskeleme İPTAL, net resim olsun */
    mask-image: none !important;
    -webkit-mask-image: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

@media (max-width: 992px) {
    .valuation-content {
        flex-direction: column-reverse !important;
        /* Mobilde resim üstte olsun */
        gap: 40px;
    }

    .val-visual {
        width: 100% !important;
        height: 300px !important;
    }
}


/* --- SOFT CURVED TRANSITION (Overlap Fix) --- */
.valuation-section {
    margin-top: -60px !important;
    /* Yukarı çekip kırmızıyla birleştiriyoruz */
    border-top-left-radius: 60px !important;
    /* Sol köşe oval */
    border-top-right-radius: 60px !important;
    /* Sağ köşe oval */
    padding-top: 100px !important;
    position: relative;
    z-index: 10;
    /* Üstte dursun */
    background: #f8f9fa !important;
    /* Alttan gelen yumuşak bir gölge ile ayrımı belli et ama yumuşat */
    box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.1) !important;
    border-top: none !important;
}

/* Mobilde biraz daha az kavis */
@media (max-width: 768px) {
    .valuation-section {
        margin-top: -40px !important;
        border-top-left-radius: 40px !important;
        border-top-right-radius: 40px !important;
        padding-top: 60px !important;
    }
}


/* --- STACKED SECTION (Reusable Curved Effect) --- */
.stacked-section {
    position: relative;
    background: #fff;
    /* Hizmetler bölümü beyaz olsun */
    margin-top: -80px;
    /* Yukarı çek */
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding-top: 100px;
    z-index: 20;
    /* Ekspertizden daha üstte olsun */
    box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.05);
    /* Yumuşak gölge */
}

@media (max-width: 768px) {
    .stacked-section {
        margin-top: -50px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        padding-top: 60px;
    }
}

/* --- DARK CORPORATE FOOTER (Final) --- */
/* --- DARK CORPORATE FOOTER (Final) --- */
.corporate-footer {
    background: #050505 !important;
    color: #94A3B8 !important;
    padding: 60px 0 0 !important;
    /* Bottom padding set to 0 */
    font-size: 14px !important;
    margin-top: 0 !important;
    border-radius: 0 !important;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    /* Reduced margin */
}

/* ... existing code ... */

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid #1e1e1e;
    padding-top: 25px;
    margin-top: 10px;
    background: transparent !important;
}

.footer-bottom-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #94A3B8;
    padding-bottom: 25px;
    /* Added some padding for the content but kept it clean */
    position: relative;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    /* Position absolute right */
    right: 0;
}

@media (max-width: 991px) {
    .footer-bottom-grid {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
        padding-top: 20px !important;
        padding-bottom: 50px !important;
        /* WhatsApp spacing */
    }

    .footer-credits {
        position: static !important;
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .footer-bottom-grid span {
        display: block;
        margin-bottom: 5px;
    }
}

/* Brand Column */
.video-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: -1px;
}

.video-logo-text span {
    color: var(--primary-color);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #64748B;
    max-width: 300px;
}

/* Social Icons */
.f-social {
    display: flex;
    gap: 10px;
}

.f-social a {
    width: 36px;
    height: 36px;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    font-size: 14px;
    text-decoration: none;
}

.f-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

/* High specificity rule for footer visibility */
.corporate-footer .footer-col ul li a {
    color: #e2e8f0 !important;
    /* High contrast off-white */
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    display: block;
    /* Better hit area */
}

.corporate-footer .footer-col ul li a:hover {
    color: #fff !important;
    padding-left: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Footer Responsive Overrides */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr) !important;
        text-align: left;
        gap: 30px 20px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }

    .brand-col {
        grid-column: span 2 !important;
        margin-bottom: 30px;
        text-align: center;
        max-width: 100% !important;
    }

    .footer-col {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-col h4 {
        margin-bottom: 15px;
        font-size: 15px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
    }

    .footer-col ul {
        display: inline-block;
        text-align: center;
    }

    .footer-col ul li a {
        font-size: 13px !important;
        padding: 5px 0 !important;
        text-align: center;
    }

    .f-logo-link {
        justify-content: center !important;
        width: 100%;
        display: flex;
        margin-bottom: 20px !important;
    }

    .f-social {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 20px 0 0 !important;
        gap: 20px !important;
    }

    .video-logo-text {
        font-size: 20px !important;
    }

    .footer-desc {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin: 0 auto 20px auto !important;
        max-width: 280px !important;
        text-align: center;
    }

    .footer-col h4::after {
        content: '';
        display: block;
        width: 30px;
        height: 3px;
        background: var(--primary-color);
        margin: 10px auto 0;
    }

    .contact-col {
        margin-top: 10px;
    }

    .contact-col .contact-item {
        display: flex !important;
        justify-content: center !important;
        text-align: left !important;
        /* Text inside item stays left for better flow */
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
    }

    .contact-item i {
        margin-top: 0 !important;
        font-size: 16px !important;
        color: var(--primary-color) !important;
        flex-shrink: 0;
    }

    .contact-item span,
    .contact-item a {
        font-size: 13px !important;
        line-height: 1.4 !important;
        color: #e2e8f0 !important;
    }
}

/* Contact Column */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #94A3B8;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.contact-item a {
    color: #94A3B8;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #fff;
}

/* Portal Logos in Topbar */
.portal-logo {
    height: 18px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    border-radius: 4px;
}

.portal-logo:hover {
    transform: scale(1.1);
}

/* Service Showcase Section */
.service-showcase {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

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

.showcase-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.showcase-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    text-align: left;
    /* Ensure left alignment for showcase headers */
}

.showcase-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
}

.showcase-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    text-align: left;
}

/* Glassmorphic Cards (Blurred Backgrounds) */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    transition: var(--transition);
    overflow: hidden;
    line-height: 1.8;
}

.glass-card p {
    color: #333;
    font-size: 1.05rem;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.glass-card h3 {
    margin-bottom: 25px;
    font-weight: 800;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
}

.glass-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    transition: transform 0.6s ease;
}

.glass-card:hover .glass-card-bg {
    transform: scale(1.1);
}

.glass-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(1.1) contrast(1.1);
    opacity: 0.45;
    z-index: -1;
}

.glass-card-color {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
}

.service-box {
    position: relative;
    z-index: 1;
}

/* Improved Check-list for Glass Cards */
.glass-card .check-list {
    margin-top: 35px !important;
    list-style: none;
    padding: 0;
}

.glass-card .check-list li {
    background: rgba(255, 255, 255, 0.4);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-card .check-list li i {
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.glass-card .check-list li strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 2px;
    font-weight: 800;
}

.glass-card .check-list li span {
    display: block;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.glass-card .check-list li:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Floating Counter Section (Overlapping Hero) */
.counter-section {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 20;
    margin-top: -100px;
    /* Overlap the hero */
}

.counter-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e1e1;
    border-top: 4px solid var(--primary-color);
    padding: 50px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-card {
    padding: 10px;
    border-right: 1px solid #f0f0f0;
}

.counter-card:last-child {
    border-right: none;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

.counter-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.counter-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: block;
    /* Restored icons */
}

@media (max-width: 991px) {
    .showcase-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .showcase-image {
        order: -1 !important;
        border-radius: 15px !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }

    .showcase-image img {
        border-radius: 15px !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .counter-card {
        border-right: none;
    }

    .counter-section {
        margin-top: -50px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }

    .counter-number {
        font-size: 2.8rem;
    }
}

.quick-contact-bar {
    padding: 60px 0 100px;
    background: #fff;
    position: relative;
    z-index: 20;
    margin-top: 0;
}

.quick-contact-inner {
    background: #111;
    padding: 40px 60px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15) !important;
}

.quick-contact-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(227, 18, 11, 0.3);
}

.contact-info span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-info h4 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.quick-contact-right .btn-primary {
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(227, 18, 11, 0.3);
    text-decoration: none;
    display: inline-block;
}

/* HERO BLUR SYSTEM - FINAL & ROBUST */
.page-header::before,
.service-detail-hero::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(4px) brightness(0.75);
    z-index: 1;
    display: block !important;
}

/* Override for pages that need sharp hero images (e.g. Team Page) */
/* Override for pages that need sharp hero images (e.g. Team Page) */
.page-header.no-blur::before,
.service-detail-hero.no-blur::before {
    filter: brightness(0.85) !important;
    /* Just slight darkening, no blur */
    backdrop-filter: none !important;
    transform: scale(1) !important;
    /* Reset scale if not blurred */
}

/* Light blur override (requested for team page) */
.page-header.light-blur::before,
.service-detail-hero.light-blur::before {
    filter: blur(2px) brightness(0.8) !important;
    /* Very slight blur */
    transform: scale(1.02) !important;
    /* Slight scale to hide blur edges */
}

/* Index Slider Blur */
.premium-hero {
    overflow: hidden;
    position: relative;
}

.premium-hero .slide {
    filter: brightness(0.85);
    transform: scale(1.1);
    transition: transform 10s ease, filter 0.5s ease;
}

.premium-hero:hover .slide {
    transform: scale(1.15);
}

.page-header .container,
.service-detail-hero .container,
.premium-hero .container {
    position: relative;
    z-index: 2;
}

/* LONG CONTENT BLOCK - FRAMED STYLE */
.long-content-block {
    background: #fff;
    padding: 100px 0;
}

.long-content-block .elaborated-text {
    border: 3px solid var(--primary-color);
    border-radius: 40px;
    padding: 60px;
    background: #fff;
    color: var(--secondary-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.long-content-block .elaborated-text h4 {
    color: var(--primary-color) !important;
    font-weight: 800;
}

.long-content-block .elaborated-text p {
    color: var(--text-color);
    opacity: 0.9;
}

.page-header h1 {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-weight: 500;
    opacity: 1 !important;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .quick-contact-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }

    .quick-contact-left {
        flex-direction: column;
    }

    .contact-info h4 {
        font-size: 1.6rem;
    }
}

/* Old mobile styles moved to main strip block or superseded */

.strip-phone:hover {
    background: rgba(255, 255, 255, 0.1);
}

.strip-phone i {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .corporate-cta-strip {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .strip-text {
        flex-direction: column;
        gap: 15px;
    }

    .strip-btns {
        flex-direction: column;
        width: 100%;
    }

    /* Blog Grid Mobile - 3 Vertical Cards */
    .blog-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .blog-card {
        width: 100% !important;
        margin: 0 !important;
    }

    .blog-img {
        height: 200px !important;
    }

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

    .blog-content {
        padding: 20px !important;
    }

    .blog-content h3 {
        font-size: 18px !important;
        margin-bottom: 10px;
    }

    .blog-content p {
        font-size: 14px !important;
        line-height: 1.6;
    }

    /* Stats Section Mobile - Premium Design */
    .stats-strip {
        padding: 40px 0 !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        padding: 0 !important;
    }

    .stat-item {
        background: white !important;
        padding: 25px 15px !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        text-align: center !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        border: 1px solid rgba(227, 18, 11, 0.1) !important;
    }

    .stat-item:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 8px 25px rgba(227, 18, 11, 0.15) !important;
    }

    .stat-number {
        font-size: 42px !important;
        font-weight: 800 !important;
        color: #111 !important;
        margin-bottom: 8px !important;
        background: linear-gradient(135deg, #111 0%, #E3120B 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-number span {
        color: #E3120B !important;
        -webkit-text-fill-color: #E3120B !important;
        font-size: 0.7em;
    }

    .stat-item p {
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #666 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
    }

    /* Prevent button text wrapping */
    .btn-primary,
    .cta-btn,
    .btn-outline-white {
        white-space: nowrap !important;
        font-size: 13px !important;
        padding: 12px 18px !important;
    }

    /* Valuation section CTA buttons */
    .val-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        margin-top: 25px !important;
    }

    .val-actions .btn-primary,
    .val-actions .btn-outline-white {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

/* --- Team Page Styles --- */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1e293b;
}

.team-info span {
    display: block;
    color: #E3120B;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: #94a3b8;
    font-size: 1.1rem;
    transition: 0.3s;
}

.team-social a:hover {
    color: #E3120B;
}


/* Removed problematic nowrap */

/* FIX BUTTON WRAPPING */
.corporate-cta-strip .btn-primary {
    white-space: nowrap !important;
    min-width: 180px !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =========================================
   MOBILE HAMBURGER MENU (SIMPLE & CLEAN)
   ========================================= */

/* Hamburger Button - Hidden on Desktop */
.hamburger-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #E3120B;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Show hamburger button on mobile */
@media (max-width: 991px) {
    .hamburger-menu-btn {
        display: flex;
    }
}

/* Mobile Overlay Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close Button */
.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.close-menu-btn:hover {
    transform: rotate(90deg);
    color: #E3120B;
}

/* Mobile Navigation Links */
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 40px 20px;
    max-width: 90%;
    width: 100%;
}

.mobile-nav a,
.mobile-menu-toggle {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.mobile-menu-toggle {
    cursor: pointer;
    border: 1px solid rgba(227, 18, 11, 0.3);
    background: rgba(227, 18, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.mobile-menu-item-with-sub.open .mobile-menu-toggle i {
    transform: rotate(180deg);
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 18, 11, 0.3), transparent);
    transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
    left: 100%;
}

.mobile-nav a:hover,
.mobile-menu-toggle:hover {
    background: rgba(227, 18, 11, 0.2);
    color: #E3120B;
    transform: translateX(5px);
    border-color: #E3120B;
}

/* Mobile Submenu */
.mobile-menu-item-with-sub {
    width: 100%;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}

.mobile-menu-item-with-sub.open .mobile-submenu {
    max-height: 600px;
    opacity: 1;
    padding: 10px 0 0 0;
}

.mobile-submenu a {
    font-size: 1.1rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid transparent;
    text-align: left;
    padding-left: 40px;
}

.mobile-submenu a:hover {
    border-left-color: #E3120B;
    background: rgba(227, 18, 11, 0.15);
    padding-left: 45px;
}

/* Desktop: Hide Mobile Elements */
@media (min-width: 992px) {

    .mobile-menu-header,
    .mobile-menu-footer,
    .mobile-only,
    .hamburger-menu-btn,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Mobile: Side Drawer Implementation */
@media (max-width: 991px) {

    /* 1. Backdrop (on Body) */
    body.nav-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 9998;
        animation: fadeIn 0.3s ease forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* 2. Side Panel Container */
    .main-nav {
        display: flex !important;
        /* Force flex to handle inner layout */
        flex-direction: column;
        justify-content: space-between;
        /* Header top, Footer bottom */
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen */
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
        z-index: 9999;
        transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        padding: 0;
        overflow-y: auto;
        /* Scrollable content */
        visibility: visible;
        /* Override previous hidden */
        opacity: 1;
        /* Override previous opacity */
        transform: none;
        /* Override previous scale */
    }

    .main-nav.active {
        right: 0;
        transform: none;
        visibility: visible;
        background: #fff;
    }

    /* 3. Mobile Header (Logo + Close) */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-logo {
        height: 40px;
        width: auto;
    }

    .mobile-close-btn {
        background: #f1f5f9;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: #64748b;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
    }

    .mobile-close-btn:hover {
        background: #e2e8f0;
        color: #ef4444;
        transform: rotate(90deg);
    }

    /* 4. Menu Links & Structure */
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        /* Removing gap, using padding */
        text-align: left;
        padding: 10px 0;
        width: 100%;
        margin: 0;
    }

    .main-nav ul li {
        width: 100%;
        opacity: 1;
        /* Reset animation */
        transform: none;
        /* Reset animation */
        animation: none;
        /* Reset animation */
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .main-nav ul li a {
        display: block;
        padding: 18px 25px;
        font-size: 1.1rem;
        color: #334155;
        font-weight: 600;
        text-align: left;
        width: 100%;
        transition: 0.2s;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        background: #f8fafc;
        color: var(--primary-color);
        padding-left: 30px;
        /* Slide effect */
        transform: none;
    }

    /* 5. Submenu (Accordion) */
    .has-dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .has-dropdown>a i {
        transition: transform 0.3s;
        font-size: 0.9rem;
        opacity: 0.6;
    }

    .has-dropdown.open>a i {
        transform: rotate(180deg);
        color: var(--primary-color);
        opacity: 1;
    }

    .main-nav .dropdown-menu {
        position: static;
        /* Not absolute */
        box-shadow: none;
        background: #f8fafc;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        /* Hidden by default */
        padding: 10px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .main-nav .dropdown-menu li {
        border: none;
    }

    .main-nav .dropdown-menu li a {
        padding: 12px 25px 12px 40px;
        /* Indented */
        font-size: 0.95rem;
        color: #64748b;
        font-weight: 500;
    }

    .main-nav .dropdown-menu li a:hover {
        color: var(--primary-color);
        background: transparent;
        padding-left: 45px;
    }

    /* 6. Mobile Footer */
    .mobile-menu-footer {
        padding: 25px;
        background: #f8fafc;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: auto;
        /* Push to bottom */
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .mobile-social a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #334155;
        font-size: 1.3rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

    .mobile-social a:hover {
        transform: translateY(-3px);
        color: var(--primary-color);
    }

    .mobile-call-action-btn {
        background: var(--primary-color);
        color: #fff !important;
        text-align: center;
        padding: 16px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(227, 18, 11, 0.2);
        text-decoration: none;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    /* Mobile Menu Overlay Fix - Topbar Match Redesign */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Matching Topbar Color: Deep Bordeaux */
        background-color: #500000;
        z-index: 999999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-height: 85vh;
        overflow-y: auto;
        padding: 110px 20px 40px 20px;
    }

    /* Elegant Typography */
    .mobile-nav a,
    .mobile-menu-toggle {
        color: #ffffff !important;
        font-family: var(--font-main);
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 15px 0 !important;
        margin: 0 !important;
        width: 100%;
        text-align: center;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        letter-spacing: -0.5px;
    }

    /* Hover Effect: Turns Black */
    .mobile-nav a:hover,
    .mobile-menu-toggle:hover {
        color: #000000 !important;
        /* Black on hover */
        background: rgba(255, 255, 255, 0.1) !important;
        /* Subtle light bg */
        transform: scale(1.02);
    }

    /* Separator Line */
    .mobile-nav a::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s;
        position: absolute;
        bottom: 10px;
    }


    .mobile-nav a.active {
        color: var(--primary-color) !important;
        opacity: 1;
    }

    /* Submenu Fixes */
    .mobile-menu-item-with-sub {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-submenu {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        gap: 10px;
        background: rgba(255, 255, 255, 0.05);
        padding: 15px 0;
        border-radius: 12px;
        width: 90%;
        margin-bottom: 15px;
        animation: slideDown 0.3s ease;
    }

    .mobile-menu-item-with-sub.open .mobile-submenu {
        display: flex;
    }

    .mobile-submenu a {
        font-size: 1.1rem !important;
        font-weight: 400 !important;
        padding: 10px 0 !important;
        opacity: 0.7;
    }

    .mobile-submenu a:hover {
        color: #fff !important;
        opacity: 1;
    }

    .close-menu-btn {
        position: absolute;
        top: 40px;
        right: 25px;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        border: none;
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 1000000;
    }

    .close-menu-btn:hover {
        background: var(--primary-color);
        transform: rotate(90deg);
    }
}