/*
Theme Name: Baza Nova
Theme URI: #
Author: Antigravity
Author URI: #
Description: Modern real estate theme for Baza Nova.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bazanova
*/

/* CSS Variables */
:root {
    --primary-gold: #C5A059;
    --primary-gold-dark: #a08144;
    --navy-blue: #1F2E3E;
    --navy-blue-dark: #151f2b;
    --text-dark: #1F2E3E;
    --text-light: #f5f5f5;
    --text-grey: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    /* Or keep Inter bold */
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

.gold-text {
    color: var(--primary-gold);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
}

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

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

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.secondary-btn:hover {
    background-color: var(--white);
    color: var(--navy-blue);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 23, 36, 0.35);
    backdrop-filter: blur(2px);
    box-shadow: none;
    padding: 12px 0;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border-bottom: none;
}

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

.logo img {
    height: 50px;
    /* Adjust based on actual logo */
    width: auto;
}

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

.main-nav a {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

header.scrolled .main-nav a {
    color: var(--text-dark);
}

header.scrolled .logo img {
    filter: none;
}

.logo img {
    filter: brightness(10);
}

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

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
    padding-bottom: 15px;
    /* Increase hover area */
    margin-bottom: -15px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 15px 40px rgba(31, 46, 62, 0.15);
    /* Soft navy shadow */
    border-radius: 20px;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}

/* Pointer/Triangle at the top */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--white);
}

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

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

.dropdown-menu a {
    padding: 12px 30px !important;
    display: block !important;
    color: var(--navy-blue) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0;
    transition: all 0.2s ease !important;
    background: none !important;
}

.dropdown-menu a:hover {
    background: var(--bg-light) !important;
    color: var(--primary-gold) !important;
    padding-left: 35px !important;
}

.arrow-down {
    font-size: 0.7rem;
    margin-left: 2px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-size: 0.9rem;
    color: var(--white);
}

header.scrolled .lang-switch {
    color: var(--text-dark);
}

.lang-switch a.active {
    font-weight: 700;
    color: var(--primary-gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--navy-blue);
}


/* Hero Section */
/* Hero Section Rebuild 1:1 Estadel */
.hero-section {
    height: 80vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    color: var(--white);
    padding-bottom: 40px;
    overflow: hidden;
    background-color: #0c141d;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 20, 29, 0.2) 0%, rgba(12, 20, 29, 0.4) 50%, rgba(12, 20, 29, 0.75) 100%), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    z-index: 0;
}

.hero-big-text {
    position: absolute;
    top: 12vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1320px;
    font-size: 9vw;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.09);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    letter-spacing: -0.2vw;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    margin: 0 auto 40px auto;
    text-align: left;
    max-width: 1320px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-content h1 span {
    display: block;
}

.hero-content h1 .line-1 {
    text-align: right;
}

.hero-content h1 .line-2 {
    text-align: left;
}

/* Features List at Bottom */
.hero-features-list {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-row {
    display: grid;
    grid-template-columns: 120px 50px 1fr 1fr;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0 15px;
}

.feature-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-blue);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.15;
    padding-right: 20px;
}

.feature-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 992px) {
    .hero-section {
        min-height: 480px;
        padding-bottom: 30px;
    }

    .hero-content-wrapper {
        padding: 0 15px;
    }

    .feature-row {
        grid-template-columns: 40px 1fr;
        padding: 15px 0;
        gap: 10px;
    }

    .feature-label {
        display: none;
    }

    .feature-title {
        font-size: 1rem;
        padding-right: 0;
    }

    .feature-desc {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-big-text {
        font-size: 15vw;
        top: 140px;
        width: 100%;
    }
}




/* Section Common */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-grey);
}

/* Catalog */
/* Best Complexes Section */
.complexes-section {
    padding: 80px 0;
    /* Standardized */
}

/* ... skipped lines ... */
/* Investment Slider Section */
.investment-section {
    padding: 60px 0;
    /* Reduced for flow */
    background-color: #f9f9f9;
}

/* Selection CTA Section (New) */
.selection-cta-section {
    padding: 60px 0;
    /* Reduced for flow */
    overflow: visible;
    background-color: #f9f9f9;
    /* Matched to Income/Advantages */
}

/* Advantages Section (Redesigned) */
.advantages-section {
    padding: 60px 0;
    /* Reduced for flow */
    background-color: #f9f9f9;
    /* Matched to Income Potential */
}

/* Income Potential Section */
.income-section {
    padding: 60px 0;
    /* Reduced for flow */
    background-color: #f9f9f9;
}

/* Best Conditions Section (Repl. About) */
.conditions-section {
    padding: 80px 0;
    /* Standardized */
    background-color: #f9f9f9;
    /* Light Background */
    color: var(--navy-blue);
}

.section-header-left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.section-header-left h2 {
    font-size: 3rem;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
}

.header-stats {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Bento Grid Layout */
.complexes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 20px;
}

/* Card Sizes */
.card-large {
    grid-column: span 3;
    height: 350px;
}

.card-medium {
    grid-column: span 2;
    height: 250px;
}

.complex-more-link {
    grid-column: span 6;
    height: 120px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #111;
}

.complex-more-link:hover {
    background: #1a1a1a;
}

/* Card Styling */
.complex-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.complex-card img,
.complex-more-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: blur(2px);
    transform: scale(1.1);
}

.complex-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    transition: background 0.3s ease;
}

.complex-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Hover Effects */
.complex-card:hover img,
.complex-more-link:hover img {
    transform: scale(1.15);
}

.complex-card:hover .complex-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.more-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.complex-more-link:hover .more-content {
    background: rgba(0, 0, 0, 0.2);
}

.more-content span {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .complexes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-large {
        grid-column: span 1;
        height: 250px;
    }

    .card-medium {
        grid-column: span 1;
        height: 250px;
    }

    .complex-more-link {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .section-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-stats {
        text-align: left;
    }

    .complexes-grid {
        display: flex;
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .complex-more-link {
        height: 220px;
        width: 100%;
    }

    .complex-more-link {
        height: 100px;
    }

    .complex-more-link span {
        font-size: 1.1rem;
    }

    .section-header-left h2 {
        font-size: 2rem;
    }
}

/* Restored Dark Background Helper */
.dark-bg {
    background-color: var(--navy-blue);
    color: var(--white);
}

.dark-bg h2 {
    color: var(--white);
}

.dark-bg p {
    color: rgba(255, 255, 255, 0.7);
}

/* Investment Slider Section */
.investment-section {
    padding: 60px 0;
    /* Reduced */
    background-color: #f9f9f9;
}

/* Selection CTA Section (New) */
.selection-cta-section {
    padding: 80px 0;
    overflow: visible;
    background-color: #f9f9f9;
    /* Matched to Income/Advantages */
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-banner {
    flex: 1;
    background-color: var(--navy-blue);
    border-radius: 20px;
    padding: 40px 60px 40px 180px;
    /* Left padding for image space */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.cta-booklet {
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 180px;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.cta-booklet:hover {
    transform: rotate(0deg) scale(1.05);
}

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

.cta-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0;
}

.cta-action .white-btn {
    background: var(--white);
    color: var(--navy-blue);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-action .white-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-catalog-link {
    color: var(--navy-blue);
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cta-catalog-link:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .cta-banner {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        gap: 30px;
    }

    .cta-booklet {
        position: relative;
        left: auto;
        bottom: auto;
        width: 140px;
        height: 180px;
        margin: -80px auto 0;
        /* Pull up */
        transform: rotate(0);
    }

    .cta-catalog-link {
        text-align: center;
    }
}


.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-header-split h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    line-height: 1.2;
    font-weight: 700;
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: var(--white);
    color: var(--navy-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-arrow:hover {
    background-color: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
    box-shadow: var(--shadow-sm);
}

/* Investment Card Split Layout */
.investment-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.investment-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* Will depend on JS */
}

.investment-card {
    min-width: 100%;
    /* Show one at a time */
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex-direction: row;
    border: 1px solid var(--navy-blue);
    /* Added border */
    /* Split visual */
    /* Remove transition opacity logic */
}



/* Left Info Side */
.card-left-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-left-info h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--navy-blue);
    line-height: 1.3;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
}

.card-left-info hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 5px 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--navy-blue);
    /* Changed to Navy */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.info-data {
    display: flex;
    flex-direction: column;
}

.info-data .label {
    font-size: 0.9rem;
    color: #888;
}

.info-data .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.income-blocks {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.income-box {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eee;
}

.income-box.green {
    background-color: var(--navy-blue);
    /* Changed to Navy */
    color: var(--white);
    border: none;
}

.income-box.white {
    background-color: var(--white);
    border: 1px solid var(--navy-blue);
    /* Changed to Navy border */
}

.income-box.green .income-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.income-box.white .income-icon {
    background: var(--navy-blue);
    /* Changed to Navy */
    color: var(--white);
}

.income-text {
    display: flex;
    flex-direction: column;
}

.income-text .amount {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.income-box.white .amount {
    color: var(--navy-blue);
    /* Changed to Navy */
}

.income-text .desc {
    font-size: 0.8rem;
    opacity: 0.9;
}

.income-box.white .desc {
    color: #666;
}

/* Right Visual Side */
.card-right-visual {
    flex: 1.2;
    /* Slightly wider */
    position: relative;
    overflow: hidden;
}

.internal-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.internal-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.internal-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.internal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--navy-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-right-visual:hover .internal-arrow {
    opacity: 1;
}

.prev-img {
    left: 20px;
}

.next-img {
    right: 20px;
}

/* Responsive Investment Slider */
@media (max-width: 992px) {
    .investment-card {
        flex-direction: column-reverse;
    }

    .card-right-visual {
        flex: none;
        height: 300px;
    }

    .card-left-info {
        padding: 30px;
    }

    .income-blocks {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header-split h2 {
        font-size: 1.8rem;
    }
}

/* Advantages Section */
.advantages-section {
    background-color: var(--white);
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.adv-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    height: 100%;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.adv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.adv-card h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--navy-blue);
}

.adv-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text .lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.founder-quote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-gold);
    font-style: italic;
}

.video-placeholder {
    height: 300px;
    background-color: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.play-btn {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-top: 10px;
    font-size: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.review-card .author {
    margin-top: 15px;
    font-weight: 600;
    color: var(--navy-blue);
}

/* Career */
.vacancy-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid var(--primary-gold);
}

/* Contacts */
.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    text-decoration: underline;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    color: var(--navy-blue);
}

.contact-form h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.full-width {
    width: 100%;
}


/* Footer */
.footer {
    background-color: var(--navy-blue-dark);
    color: var(--white);
    padding: 30px 0;
    font-size: 0.9rem;
}

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

.footer-links a {
    margin-left: 20px;
    color: #ccc;
}

/* Responsive */

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(31, 46, 62, 0.98);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align to top so it grows downwards */
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    /* Allow scrolling if menu is long */
}

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

.mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mobile Dropdown Menu Refined */
.mobile-menu .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 5px !important;
    position: static;
    transform: translateY(-10px);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        transform 0.3s ease,
        margin 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    min-width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border-radius: 12px;
    visibility: hidden;
}

.mobile-menu .dropdown-menu::before {
    display: none;
}

.mobile-menu .has-dropdown.active .dropdown-menu {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.07);
}

.mobile-menu .has-dropdown.active .arrow-down {
    transform: rotate(180deg);
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: block;
}

.mobile-menu .dropdown-menu a {
    font-size: 1.15rem;
    /* Slightly larger */
    padding: 14px 20px !important;
    color: var(--white) !important;
    /* Force white over desktop !important */
    opacity: 0.85;
    /* Better visibility */
    font-weight: 400;
    text-align: center;
}

.mobile-menu .dropdown-menu a:hover {
    opacity: 1;
    color: var(--primary-gold) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding-left: 20px !important;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        /* Hide default nav */
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contacts-wrapper {
        grid-template-columns: 1fr;
    }

    .vacancy-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}

/* Advantages Section (Redesigned) */
.advantages-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    /* Matched to Income Potential */
}

.adv-header-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.adv-header-group h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    color: var(--navy-blue);
    flex: 1;
    text-transform: uppercase;
}

.adv-main-desc {
    flex: 1;
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin-top: 10px;
}

/* Stats Grid */
.adv-stats-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.adv-stat-card {
    flex: 1;
    border: 1px solid var(--navy-blue);
    /* Changed to Navy border */
    border-radius: 20px;
    padding: 40px;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adv-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--navy-blue);
    line-height: 1;
    margin-bottom: 20px;
}

.adv-stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 600;
}

.adv-stat-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Bottom Row */
.adv-bottom-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.adv-dark-card {
    flex: 1;
    background: var(--navy-blue);
    /* Changed from Dark Grey to Navy Blue */
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Income Potential Section */
.income-section {
    padding: 60px 0;
    /* Reduced */
    background-color: #f9f9f9;
}

.income-comparison-wrapper {
    background: var(--white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
    border: 1px solid var(--navy-blue);
    /* Added border */
}

.income-headers {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-end;
    /* Align bottom */
}

.header-visual {
    width: 30%;
    position: relative;
    height: 200px;
    /* Increased from 120px */
}

.header-house-img {
    width: 280px;
    /* Increased from 140px */
    height: 180px;
    /* Increased from 100px */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    bottom: 0;
    left: 0;
}

.header-coin-icon {
    width: 80px;
    position: absolute;
    bottom: -15px;
    left: 200px;
    /* Adjusted from 100px */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.header-col {
    flex: 1;
    text-align: left;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
    /* Align visually */
}

.header-icon {
    font-size: 2.5rem;
}

.header-col h3 {
    font-size: 1.2rem;
    color: var(--black);
    line-height: 1.3;
    margin: 0;
}

.income-row {
    display: flex;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.income-row:hover {
    background-color: #f4f6f8;
}

.income-row.no-border {
    border-bottom: none;
}

.row-label {
    width: 30%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-num {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 600;
}

.badge {
    background: var(--navy-blue);
    /* Navy instead of Green */
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.row-content {
    flex: 1;
    display: flex;
}

.row-val {
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

.text-brand {
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Best Conditions Section (Repl. About) */
.conditions-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    /* Light Background */
    color: var(--navy-blue);
}

.conditions-section h2 {
    color: var(--navy-blue);
    /* Dark Text */
    font-size: 2.5rem;
    /* Standard 2.5rem */
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
    /* Standard 700 */
    line-height: 1.2;
    text-align: left;
    padding-left: 0;
}

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

.condition-card {
    background: var(--navy-blue);
    /* Match Non-CRS card */
    border-radius: 20px;
    padding: 30px;
    /* Reduced from 35px */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    /* Reduced from 280px */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Lighter shadow for light bg */
}

.span-5 {
    grid-column: span 5;
}

.span-7 {
    grid-column: span 7;
}

/* Internal Card Layouts */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-top h3,
.card-content-side h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    line-height: 1.2;
    color: var(--white);
    /* FORCE WHITE */
}

.card-bottom p,
.card-content-side p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Badges & Icons */
.icon-badge-free {
    background: url('https://img.icons8.com/fluency/96/new.png') no-repeat center/contain;
    /* Placeholder for badge shape */
    background: #5dade2;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 0.8rem;
    transform: rotate(10deg);
}

.icon-group {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* Wide Cards Split */
.card-visual-building,
.card-visual-phone {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-right: 0;
    /* Image goes to edge */
}

.card-content-side {
    flex: 1;
    z-index: 2;
    padding-right: 20px;
}

.card-visual-side {
    width: 50%;
    height: 100%;
    position: relative;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    margin-right: -35px;
    /* Offset parent padding */
    margin-top: -35px;
    margin-bottom: -35px;
}

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

.stars-floating {
    position: absolute;
    top: 20px;
    right: 40px;
    /* Moved left to prevent invalid clipping */
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 10px;
    color: #ffd700;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

/* Phone Mockup Styling */
.card-visual-side-phone {
    width: 45%;
    height: 140%;
    /* Overflow for dramatic effect */
    position: relative;
    margin-right: -35px;
    margin-bottom: -60px;
    /* Push down */
    transform: rotate(-10deg) translateY(20px);
}

.phone-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.5));
}

.mobile-break {
    display: none;
}

@media (max-width: 900px) {

    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .span-5,
    .span-7 {
        grid-column: span 1;
    }

    .card-visual-building,
    .card-visual-phone {
        flex-direction: column;
        padding-right: 35px;
    }

    .card-visual-side,
    .card-visual-side-phone {
        width: 100%;
        height: 200px;
        margin: 20px 0 -35px 0;
        border-radius: 0;
    }

    .card-visual-side-phone {
        transform: none;
        height: 250px;
    }



    /* Mobile Income Styles */
    .income-headers {
        display: none;
        /* Hide headers only on mobile */
    }

    .income-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .row-label {
        width: 100%;
        margin-bottom: 10px;
    }

    .row-content {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .row-val {
        padding: 0;
        position: relative;
    }

    .row-val::before {
        content: "•";
        color: var(--navy-blue);
        margin-right: 10px;
    }
}

.adv-dark-card h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.dark-tag {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.adv-dark-card p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 80%;
    margin-bottom: 0;
    line-height: 1.6;
}

.floating-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    opacity: 0.8;
}

.adv-visual-block {
    flex: 1.5;
    /* Visual takes more space */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
}

.adv-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adv-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 15px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive for Advantages */
@media (max-width: 992px) {
    .adv-header-group {
        flex-direction: column;
        gap: 20px;
    }

    .adv-header-group h2 {
        font-size: 2rem;
    }

    .adv-stats-grid {
        flex-direction: column;
    }

    .adv-bottom-row {
        flex-direction: column;
    }

    /* Fix 1: Center Non-CRS Content */
    .adv-dark-card {
        text-align: center;
        align-items: center;
    }

    .adv-dark-card p {
        max-width: 100%;
    }

    /* Fix 2: Force Image to Fill Height & Layer Button */
    .adv-visual-block {
        height: 450px !important;
        /* Fixed desired height */
        position: relative !important;
        display: block !important;
        border-radius: 20px;
        overflow: hidden;
    }

    .adv-visual-block img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }

    .adv-btn {
        position: absolute !important;
        bottom: 30px !important;
        left: 30px !important;
        z-index: 10 !important;
        margin: 0 !important;
        /* Reset any margins */
    }

    /* Control mobile line break */
    .mobile-break {
        display: block;
    }

    /* Fix 3: Reduce Income Wrapper Padding */
    .income-comparison-wrapper {
        padding: 30px 20px;
    }
}

/* Team Section (New) */
.team-section {
    padding: 80px 0;
    background-color: var(--navy-blue);
    color: var(--white);
}

.team-section h2 {
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: rgba(255, 255, 255, 0.07) !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 !important;
    /* Removed padding to let image fill top/sides */
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.team-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.team-img-wrapper {
    width: 100%;
    height: 340px;
    overflow: hidden;
    /* Removed border-radius here to let it match the card's top corners */
}

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

.team-info {
    padding: 20px 10px 10px !important;
    text-align: center;
}

.team-info h3 {
    font-size: 1.1rem !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.team-info .role {
    font-size: 0.9rem !important;
    color: #aeb9c7 !important;
    margin: 0 !important;
}

/* Reviews Section (New) */
.reviews-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    /* Matched to light theme */
}

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

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.reviewer-info h3 {
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin: 0 0 5px 0;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive for Team & Reviews */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .team-img-wrapper {
        height: 350px;
    }
}


/* Blog Section */

/* Main Footer */
.footer {
    background-color: var(--navy-blue-dark);
    color: var(--white);
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Footer Column 1: Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-width: 180px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 300px;
}

/* Footer Headers */
.footer-col h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item span {
    font-size: 1.2rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 30px;
}

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

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

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* About Page Specific Styles */
.about-page {
    padding-top: 0;
}

.about-hero {
    position: relative;
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.video-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover img {
    opacity: 0.8;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    color: var(--white);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary-gold-dark);
}

.about-description {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.desc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.desc-text h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.desc-text p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.desc-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* FAQ & Contact Section Modern Styles */
.faq-contact-section {
    padding: 70px 0;
    background-color: var(--bg-light);
}

.faq-contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: stretch;
}

.contact-panel {
    background-color: var(--navy-blue-dark);
    /* Using brand navy-blue-dark */
    padding: 45px;
    border-radius: 40px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.faq-panel {
    background-color: var(--white);
    padding: 45px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-panel .panel-badge {
    background: rgba(255, 255, 255, 0.08);
}

.faq-panel .panel-badge {
    background: #f5f5f5;
    color: var(--text-grey);
}

.faq-contact-wrapper h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 11px;
    font-weight: 700;
}

.panel-desc {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 18px;
    line-height: 1.5;
}

/* Form Styles */
.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-modern input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-modern input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
}

.contact-method {
    margin-bottom: 20px;
}

.contact-method p {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.method-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.method-item input {
    display: none;
}

.method-btn {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-item input:checked+.method-btn {
    background: var(--white);
    color: var(--navy-blue);
    border-color: var(--white);
}

.submit-btn-large {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: none;
    margin-bottom: 20px;
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
}

.submit-btn-large:hover {
    background-color: var(--primary-gold-dark);
    transform: translateY(-2px);
}

.legal-text {
    font-size: 0.8rem;
    opacity: 0.5;
    line-height: 1.5;
}

.legal-text a {
    color: var(--white);
    text-decoration: underline;
}

.or-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
    opacity: 0.3;
}

.or-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--white);
    z-index: 1;
}

.or-divider span {
    position: relative;
    z-index: 2;
    background: var(--navy-blue-dark);
    padding: 0 15px;
    font-size: 0.9rem;
}

/* Advisor Card */
.advisor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.advisor-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.advisor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.advisor-meta {
    display: flex;
    flex-direction: column;
}

.advisor-name {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
    text-transform: none;
}

.advisor-role {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: none;
}

.telegram-btn {
    background: #5475ff;
    color: var(--white);
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: none;
    white-space: nowrap;
}

.telegram-btn:hover {
    background: #4060ff;
    transform: translateY(-2px);
}

/* FAQ Accordion Styles */
.accordion {
    margin-top: 20px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy-blue);
    transition: color 0.3s ease;
}

.accordion-item:hover .accordion-header {
    color: var(--primary-gold);
}

.accordion-header .plus {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.accordion-item.active .plus {
    transform: rotate(45deg);
    color: var(--primary-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.accordion-content p {
    padding-bottom: 15px;
    color: var(--text-grey);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .faq-contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desc-image {
        display: none;
    }

    .desc-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .contact-panel,
    .faq-panel {
        padding: 40px 25px;
    }

    .contact-form-modern .form-row {
        grid-template-columns: 1fr;
    }

    .advisor-card {
        flex-direction: column;
        text-align: center;
    }

    .faq-contact-wrapper h3 {
        font-size: 1.8rem;
    }
}

/* --- TELEGRAM BANNER SECTION --- */
.telegram-banner-section {
    padding: 60px 0 !important;
    background-color: #f9f9f9 !important;
    display: block !important;
    visibility: visible !important;
}

.tg-banner-wrapper {
    background-color: #e6f3ff !important;
    /* Light bluish background similar to photo */
    border-radius: 24px !important;
    padding: 40px 60px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 30px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    border: none !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.tg-content h2 {
    font-size: 1.8rem !important;
    color: #1F2E3E !important;
    /* Navy blue */
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.tg-blue-text {
    color: #2481cc !important;
    /* Telegram blue */
}

.tg-content p {
    color: #666 !important;
    font-size: 1rem !important;
    margin: 0 !important;
    text-transform: none !important;
}

.tg-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background-color: #2481cc !important;
    color: #ffffff !important;
    padding: 14px 35px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.tg-btn:hover {
    background-color: #1c66a3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(36, 129, 204, 0.3) !important;
}

.tg-icon {
    stroke: #ffffff !important;
}

@media (max-width: 992px) {
    .tg-banner-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        padding: 40px !important;
        width: 90% !important;
    }
}

@media (max-width: 576px) {
    .tg-content h2 {
        font-size: 1.4rem !important;
    }

    .tg-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* --- TELEGRAM BANNER SECTION FINAL --- */
.telegram-banner-section {
    padding: 60px 0 !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    clear: both !important;
}

.telegram-banner-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.tg-banner-wrapper {
    background-color: #e8f4ff !important;
    /* Clearly light blue */
    background: #e8f4ff !important;
    border-radius: 24px !important;
    padding: 40px 60px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 30px !important;
    box-shadow: 0 10px 30px rgba(36, 129, 204, 0.1) !important;
    border: 1px solid #d0e8ff !important;
}

.tg-content {
    flex: 1 !important;
}

.tg-content h2 {
    font-size: 1.8rem !important;
    color: #1F2E3E !important;
    /* Navy blue */
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.tg-blue-text {
    color: #2481cc !important;
    /* Telegram blue */
}

.tg-content p {
    color: #666 !important;
    font-size: 1rem !important;
    margin: 0 !important;
    text-transform: none !important;
}

.tg-action {
    flex-shrink: 0 !important;
}

.tg-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background-color: #2481cc !important;
    color: #ffffff !important;
    padding: 14px 35px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.tg-btn:hover {
    background-color: #1c66a3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(36, 129, 204, 0.3) !important;
}

.tg-icon {
    stroke: #ffffff !important;
    width: 20px !important;
    height: 20px !important;
}

@media (max-width: 992px) {
    .tg-banner-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        padding: 40px 30px !important;
    }
}

@media (max-width: 576px) {
    .tg-content h2 {
        font-size: 1.4rem !important;
    }

    .tg-btn {
        width: 100% !important;
    }
}

/* --- TELEGRAM BANNER SECTION MATCHED TO DARK BG --- */
.telegram-banner-section {
    padding: 60px 0 !important;
    background-color: #1F2E3E !important;
    /* var(--navy-blue) */
    background: #1F2E3E !important;
    display: block !important;
    visibility: visible !important;
    clear: both !important;
    border: none !important;
}

.telegram-banner-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.tg-banner-wrapper {
    background-color: rgba(255, 255, 255, 0.05) !important;
    /* Subtle glass effect on dark bg */
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 24px !important;
    padding: 40px 60px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.tg-content {
    flex: 1 !important;
}

.tg-content h2 {
    font-size: 1.8rem !important;
    color: #ffffff !important;
    /* White text for dark bg */
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.tg-blue-text {
    color: #4da3ff !important;
    /* Brighter blue for visibility on dark */
}

.tg-content p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem !important;
    margin: 0 !important;
    text-transform: none !important;
}

.tg-action {
    flex-shrink: 0 !important;
}

.tg-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background-color: #2481cc !important;
    color: #ffffff !important;
    padding: 14px 35px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.tg-btn:hover {
    background-color: #1c66a3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(36, 129, 204, 0.5) !important;
}

.tg-icon {
    stroke: #ffffff !important;
    width: 20px !important;
    height: 20px !important;
}

@media (max-width: 992px) {
    .tg-banner-wrapper {
        flex-direction: column !important;
        text-align: center !important;
        padding: 40px 30px !important;
    }
}

@media (max-width: 576px) {
    .tg-content h2 {
        font-size: 1.4rem !important;
    }

    .tg-btn {
        width: 100% !important;
    }
}