/*
Theme Name: İnşaat & Mimari Kurumsal Tema
Theme URI: https://example.com/insaat-theme
Author: Antigravity AI
Description: Kurumsal inşaat firmaları için tamamen yönetilebilir, lüks tasarımlı, premium WordPress teması. Özyurtlar vb. siteler baz alınarak hazırlandı. Tüm alanlar özelleştiriciden güncellenebilir.
Version: 1.0.0
Text Domain: insaat-theme
*/

/* Reset & Base Styles */
:root {
    --primary: #151922;
    /* Sophisticated Deep Charcoal/Navy */
    --accent: #C89F5D;
    /* Premium Muted Gold */
    --text-dark: #2B2B2B;
    --text-light: #FAFAFA;
    --bg-light: #FFFFFF;
    --bg-dark: #0f1219;
    --font-heading: 'Outfit', sans-serif;
    /* Modern, clean heading style */
    --font-body: 'Manrope', sans-serif;
    /* Highly legible modern body font */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100vw;
    position: relative;
}

#page {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

/* ==========================================================================
   PROJECTS GRID & CARDS (V4 Premium)
   ========================================================================== */
.projects-modern-grid-v4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card-v4 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pc-inner-v4 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pc-image-v4 {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.pc-image-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-v4:hover .pc-image-v4 img {
    transform: scale(1.1);
}

.pc-overlay-v4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 21, 36, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.project-card-v4:hover .pc-overlay-v4 {
    opacity: 1;
}

.pc-meta-v4 {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card-v4:hover .pc-meta-v4 {
    transform: translateY(0);
}

.pc-loc-v4 {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.pc-btn-v4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pc-btn-v4:hover {
    background: #fff;
    color: var(--primary) !important;
}

.pc-badge-v4 {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(5px);
}

.pc-badge-v4.ongoing { background: rgba(222, 172, 70, 0.9); }
.pc-badge-v4.completed { background: rgba(34, 197, 94, 0.9); }

.pc-content-v4 {
    padding: 25px;
    background: #fff;
    text-align: center;
}

.pc-content-v4 h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.pc-content-v4 h3 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pc-content-v4 h3 a:hover {
    color: var(--accent);
}

.pc-line-v4 {
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* Pagination V4 */
.pagination-wrapper-v4 .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-wrapper-v4 .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pagination-wrapper-v4 .page-numbers.current,
.pagination-wrapper-v4 .page-numbers:hover {
    background: var(--accent);
    color: #fff;
}

@media (max-width: 991px) {
    .projects-modern-grid-v4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .projects-modern-grid-v4 { grid-template-columns: 1fr; }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.section-padding {
    padding: 5rem 0;
}

.bg-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.bg-dark h2 {
    color: var(--text-light);
}

.text-accent {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary);
}


/* ==========================================================================
   HEADER V5 LUXURY & FULL-SCREEN MENU
   ========================================================================== */
.site-header-v5 {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.header-inner-v5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right-v5 {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-toggle-v5 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(0,0,0,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.menu-toggle-v5:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.burger-icon {
    width: 22px;
    height: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-toggle-v5:hover .burger-icon span {
    background: #fff;
}

.btn-header-cta-v5 {
    background: var(--accent);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-header-cta-v5:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Full Screen Overlay V5 */
.nav-overlay-v5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

body.menu-open .nav-overlay-v5 {
    visibility: visible;
    opacity: 1;
}

.nav-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 21, 36, 0.98), rgba(15, 25, 34, 0.95));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.nav-container-v5 {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 60px 2rem;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.nav-header-v5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.nav-logo-v5 img {
    max-height: 55px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.nav-close-v5 {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.nav-close-v5:hover {
    background: #fff;
    color: var(--primary);
    transform: rotate(90deg);
}

.nav-grid-v5 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    flex-grow: 1;
    align-items: center;
}

.nav-links-v5 {
    list-style: none;
    padding: 0;
}

.nav-links-v5 li {
    margin-bottom: 25px;
    overflow: hidden;
}

.nav-links-v5 li a {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-block;
    line-height: 1.1;
    letter-spacing: 2px;
    opacity: 0;
}

body.menu-open .nav-links-v5 li a {
    animation: slideUpLuxury 1.2s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.nav-links-v5 li:nth-child(1) a { animation-delay: 0.1s; }
.nav-links-v5 li:nth-child(2) a { animation-delay: 0.2s; }
.nav-links-v5 li:nth-child(3) a { animation-delay: 0.3s; }
.nav-links-v5 li:nth-child(4) a { animation-delay: 0.4s; }
.nav-links-v5 li:nth-child(5) a { animation-delay: 0.5s; }
.nav-links-v5 li:nth-child(6) a { animation-delay: 0.6s; }

.nav-links-v5 li a:hover {
    color: var(--accent);
    transform: translateX(20px);
}

.nav-info-v5 {
    color: #fff;
}

.ni-section-v5 {
    margin-bottom: 40px;
}

.ni-section-v5 h4 {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 5px;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
}

.ni-link {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 1px;
}

.ni-link:hover {
    color: var(--accent);
}

.ni-social-v5 {
    display: flex;
    gap: 20px;
}

.ni-social-v5 a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}

.ni-social-v5 a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

@keyframes slideUpLuxury {
    from { opacity: 0; transform: translateY(80px) skewY(5deg); }
    to { opacity: 1; transform: translateY(0) skewY(0); }
}

body.menu-open {
    overflow: hidden !important;
}

@media (max-width: 991px) {
    .nav-grid-v5 {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: flex-start;
    }
    .nav-links-v5 li a {
        font-size: 2.5rem;
    }
    .header-right-v5 {
        gap: 15px;
    }
    .btn-header-cta-v5 {
        display: none;
    }
}

@media (max-width: 600px) {
    .nav-header-v5 {
        margin-bottom: 30px;
    }
    .nav-links-v5 li a {
        font-size: 2rem;
    }
    .ni-link {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .top-bar-left-v4 {
        font-size: 0.75rem;
    }
    .tb-divider { display: none !important; }
}

.btn-corporate-navy {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
}

.btn-corporate-navy:hover {
    background: var(--accent) !important;
    transform: translateY(-2px);
}

/* Menu Contact Button Style */
.nav-menu-v4 li.menu-contact-btn a {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    font-weight: 700;
    margin-left: 20px;
    transition: 0.3s;
}

.nav-menu-v4 li.menu-contact-btn a:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

@media (max-width: 991px) {
    .nav-menu-v4 li.menu-contact-btn a {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
}



/* Project Landing V4 Styles */
.hero-project-v4 {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 100px 0;
}

.hero-overlay-v4 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(11,21,36,0.92) 0%, rgba(11,21,36,0.6) 100%);
    z-index: 1;
}

.hero-title-v4 { 
    font-family: 'Playfair Display', serif; 
    font-size: 4.5rem; 
    line-height: 1.1; 
    margin-bottom: 25px; 
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    position: relative;
}

.hero-desc-v4 { 
    font-size: 1.35rem; 
    opacity: 1; 
    margin-bottom: 35px; 
    line-height: 1.7; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
}

.hero-container-v4 { position: relative; z-index: 10; width: 100%; display: flex; flex-direction: row; align-items: center; gap: 50px;}
.hero-text-v4 { max-width: 650px; }
.hero-title-v4 { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1.1; margin-bottom: 25px; }
.hero-title-v4 span { color: var(--accent); }
.hero-desc-v4 { font-size: 1.25rem; opacity: 0.9; margin-bottom: 35px; line-height: 1.6; }
.badge-v4 { background: var(--accent); padding: 6px 15px; border-radius: 4px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; display: inline-block; color: #fff; }

.hero-form-wrapper-v4 {
    width: 420px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    color: var(--primary);
}

.inquiry-form-v4 h3 { font-family: 'Playfair Display', serif; font-weight: 900; margin-bottom: 10px; font-size: 1.8rem; }
.inquiry-form-v4 p { font-size: 0.9rem; color: #666; margin-bottom: 25px; }
.form-control-v6 { border: 1px solid #ddd; padding: 12px; border-radius: 6px; width: 100%; margin-bottom: 15px; background: #f8f9fa;}
.btn-submit-v4 { background: var(--accent); color: #fff; border: none; padding: 15px; font-weight: 700; border-radius: 6px; transition: 0.3s; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;}
.btn-submit-v4:hover { background: var(--primary); transform: translateY(-3px); }
.form-trust-v4 { font-size: 0.7rem; color: #999; text-align: center; margin-top: 15px; }

/* Stats Strip */
.stats-strip-v4 { background: var(--primary); color: #fff; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.stats-grid-v4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item-v4 { display: flex; align-items: center; gap: 15px; }
.si-icon-v4 { font-size: 2.2rem; color: var(--accent); }
.si-text-v4 strong { display: block; font-size: 1.6rem; line-height: 1.2; font-family: 'Playfair Display', serif; }
.si-text-v4 span { font-size: 0.85rem; opacity: 0.7; font-weight: 600; text-transform: uppercase; }

/* Location Grid */
.location-grid-v4 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.loc-card-v4 { background: #fff; padding: 25px; border-radius: 10px; display: flex; align-items: center; gap: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.04); border: 1px solid #eee; }
.lc-icon-v4 { width: 55px; height: 55px; background: #f4f6f8; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--accent); font-size: 1.3rem; }
.lc-info-v4 strong { display: block; font-size: 1.05rem; color: var(--primary); font-weight: 700;}
.lc-info-v4 span { font-weight: 900; color: var(--accent); font-size: 0.95rem; }

/* Tabs */
.tabs-nav-v4 { display: flex; justify-content: center; gap: 15px; }
.tab-btn-v4 { padding: 15px 35px; border: 1px solid #ddd; background: #fff; font-weight: 700; border-radius: 50px; cursor: pointer; transition: 0.3s; font-size: 1rem;}
.tab-btn-v4.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 10px 20px rgba(21,25,34,0.2); }
.tab-pane-v4 { display: none; }
.tab-pane-v4.active { display: block; animation: fadeInUp 0.5s ease; }

/* Amenities */
.amenities-grid-v4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.amenity-card-v4 { background: #fff; padding: 35px 25px; border-radius: 12px; text-align: center; border: 1px solid #f0f0f0; transition: 0.3s; }
.amenity-card-v4:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.amenity-card-v4 i { font-size: 2.8rem; color: var(--accent); margin-bottom: 20px; display: block; }
.amenity-card-v4 h4 { font-size: 1.1rem; margin: 0; font-weight: 700; color: var(--primary); }

/* Gallery */
.gallerySwiper { padding-bottom: 50px !important; }
.gallery-slide-v4 img { width: 100%; height: 350px; object-fit: cover; border-radius: 12px; }

/* Responsive */
@media (max-width: 991px) {
    .hero-container-v4 { flex-direction: column; text-align: center; }
    .hero-text-v4 { max-width: 100%; }
    .hero-title-v4 { font-size: 2.8rem; }
    .hero-form-wrapper-v4 { width: 100%; max-width: 500px; }
    .location-grid-v4, .amenities-grid-v4, .stats-grid-v4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .location-grid-v4, .amenities-grid-v4, .stats-grid-v4 { grid-template-columns: 1fr; }
    .hero-title-v4 { font-size: 2.2rem; }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* New Page Header (V4 Premium) */
.page-header-v4 {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.ph-overlay-v4 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(15,25,34,0.9) 0%, rgba(15,25,34,0.5) 100%);
}

.ph-content-v4 { position: relative; z-index: 10; width: 100%; }
.ph-title-v4 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 15px; }
.breadcrumbs-v4 { font-size: 0.95rem; opacity: 0.8; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.breadcrumbs-v4 a { color: var(--accent); }

/* Stats Modern Grid */
.stats-grid-modern-v4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sm-card-v4 {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-bottom: 3px solid var(--accent);
    transition: 0.3s;
}

.sm-card-v4:hover { transform: translateY(-5px); background: var(--primary); color: #fff; }
.sm-card-v4 i { font-size: 2rem; color: var(--accent); display: block; margin-bottom: 15px; }
.sm-card-v4 strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.sm-card-v4 span { font-size: 0.8rem; text-transform: uppercase; opacity: 0.7; }

/* Modern Plan Explorer (V4.9) */
.modern-plans-wrap-v4 { margin-top: 50px; }
.plans-filter-v4 { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; }
.mp-btn-v4 { padding: 15px 40px; border: none; background: #e2e8f0; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s; color: var(--primary); }
.mp-btn-v4.active { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.mp-flex-v4 { display: flex; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.08); align-items: stretch; min-height: 500px; }
.mp-image-col { flex: 1.2; position: relative; }
.mp-image-col img { width: 100%; height: 100%; object-fit: cover; }
.mp-img-badge { position: absolute; top: 30px; left: 30px; background: var(--accent); color: #fff; padding: 10px 20px; font-weight: 700; border-radius: 50px; font-size: 0.85rem; }

.mp-info-col { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.mp-header { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.mp-header h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 5px; }
.mp-size { color: var(--accent); font-weight: 800; font-size: 1.5rem; }

.mp-specs-v4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.spec-v4 { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #555; }
.spec-v4 i { color: var(--accent); font-size: 1.1rem; }

.mp-pane-v4 { display: none; }
.mp-pane-v4.active { display: block; animation: mpFade 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

@keyframes mpFade { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* Location & Amenities List */
.location-list-v4 { display: grid; grid-template-columns: 1fr; gap: 15px; }
.loc-item-v4 { background: #f8f9fa; padding: 15px 20px; border-radius: 8px; border-left: 4px solid var(--accent); font-weight: 700; color: var(--primary); }
.amenities-sidebar-v4 { background: var(--primary); color: #fff; padding: 40px; border-radius: 15px; }
.amenities-list-v4 { list-style: none; padding: 0; }
.amenities-list-v4 li { margin-bottom: 15px; display: flex; align-items: center; gap: 12px; font-size: 1rem; opacity: 0.9; }
.amenities-list-v4 li i { color: var(--accent); }

/* Teaser Utilities */
.location-teaser-grid-v4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lt-item-v4 { background: #fff; padding: 20px; border-radius: 10px; border-bottom: 3px solid var(--accent); }
.lt-item-v4 strong { display: block; font-size: 1.4rem; color: var(--accent); font-family: 'Playfair Display', serif; }
.lt-item-v4 span { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; opacity: 0.7; }

@media (max-width: 991px) {
    .mp-flex-v4 { flex-direction: column; }
    .mp-info-col { padding: 40px; }
    .location-teaser-grid-v4 { grid-template-columns: repeat(2, 1fr); }
}

/* Premium Badge Styling (V5 + Shimmer) */
.ap-badge-v4 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
    margin-bottom: 15px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    cursor: default;
    border: 1px solid rgba(255,255,255,0.1);
}

.badge-premium-star {
    background: linear-gradient(135deg, #c89f5d 0%, #a67c3d 100%);
}

.badge-premium-diamond {
    background: linear-gradient(135deg, #151922 0%, #2c3444 100%);
    border: 1px solid rgba(200, 159, 93, 0.4);
}

/* Luxury Shimmer Effect */
.ap-badge-v4::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: luxury-shimmer 4s infinite;
}

@keyframes luxury-shimmer {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.ap-badge-v4:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Enhanced Hamburger V5 (Professional Round Toggle) */
.menu-toggle-v4 {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10001;
}

.site-header-v4.toggled .menu-toggle-v4 {
    background: #151922;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.menu-toggle-v4 i { font-size: 1.4rem; }

/* ==========================================================================
   MOBILE FOOTER RESPONSIVE FIX
   ========================================================================== */
@media (max-width: 991px) {
    .footer-corp-grid-v4 {
        display: flex !important;
        flex-direction: column !important;
        gap: 60px !important;
        text-align: center;
    }

    .footer-corp-col {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social-modern {
        justify-content: center;
    }

    .footer-contact-list-v4 li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .fc-item-inner-v6 {
        display: inline-flex !important;
        align-items: center !important;
        text-align: left !important;
        gap: 15px;
        max-width: 280px;
    }

    .fc-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background: rgba(200, 159, 93, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
    }

    .fc-text {
        font-size: 0.95rem;
        word-break: break-word;
    }

    .fc-phones-v5 {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
    }

    .fc-phones-v5 .phone-sep-v5 {
        display: none !important;
    }
    
    .footer-contact-v4 {
        border-top: 1px solid rgba(255,255,255,0.05);
        padding-top: 50px;
        width: 100%;
    }
}

