/* ===== BASE SETTINGS ===== */
:root {
    --bg-deep: #08101a;
    /* Midnight Blue Black */
    --bg-gray: #f4f6f8;
    --accent-gold: #c5a059;
    /* Sophisticated Gold */
    --accent-gold-dark: #a68545;
    --text-main: #1a202c;
    --text-muted: #4e596d;
    --text-white: #f8fafc;
    --serif: 'Playfair Display', serif;
    --sans: 'Inter', sans-serif;
    --container: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--text-main);
    line-height: 1.7;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
.h1-serif {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1.5rem;
}

.gold {
    color: var(--accent-gold);
}

.italic {
    font-style: italic;
}

/* ===== NAVIGATION REFINED ===== */
/* ===== NAVIGATION REFINED (FIXED OVERLAP) ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: all 0.4s ease;
}

/* .header.scrolled artık özel bir arka plan uygulamıyor, sadece border ve gölge eklenebilir istenirse */
.header.scrolled {
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Elements spread out: Logo - Nav - Phone */
    transition: all 0.4s ease;
}

@media (min-width: 993px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }

    .navbar .logo {
        flex: 0 0 auto;
        margin-left: 44px;
    }

    .navbar .nav-links {
        margin: 0 0 0 auto !important;
        flex: 0 0 auto !important;
        justify-content: flex-end !important;
        padding-right: 0 !important;
        position: static;
        transform: none;
    }
}

.header.scrolled .navbar {
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex: 0 0 auto;
}

.logo img {
    height: 70px;
    width: auto;
    transition: height 0.4s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #fff;
    /* White by default for transparent header */
    transition: color 0.4s ease;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
}

.header.scrolled .logo-text {
    color: var(--bg-deep);
    /* Dark when scrolled */
}

.header.scrolled .logo img {
    height: 54px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    margin: 0 2rem;
    flex: 1 1 auto;
    justify-content: center;
    /* Nav links stay in the middle area */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    /* Dark by default, header beyaz olduğu için */
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    transition: color 0.3s;
}

.header.scrolled .nav-links a {
    color: var(--text-main);
    /* Dark on scroll */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-phone {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    text-decoration: none;
    background: var(--bg-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: #fff;
    border-color: var(--accent-gold);
}

.header-slot {
    display: none;
}

.phone-info {
    text-align: right;
}

.phone-label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.phone-num {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--bg-deep);
}

.mobile-toggle,
.mobile-menu-btn {
    display: none;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 750px;
    background: linear-gradient(rgba(8, 16, 26, 0.85), rgba(8, 16, 26, 0.85)), url('../img/bg-zeche.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-white);
    padding-top: 100px;
}

/* Legal Page Header */
.page-header-minimal {
    display: block;
    width: 100%;
    padding-top: 260px;
    /* 120px Nav + 140px Visible Space */
    padding-bottom: 140px;
    /* 140px Visible Space */
    text-align: center;
    box-sizing: border-box;
}

.page-header-minimal .eyebrow {
    margin-bottom: 0.5rem;
}

.page-header-minimal h1 {
    margin-top: 0;
    margin-bottom: 0;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 2.5rem;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3.5rem;
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1.2rem 2.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.btn-primary {
    background: var(--accent-gold);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.2);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: 140px 0;
}

.section-intro {
    margin-bottom: 80px;
}

.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.section-with-image .section-intro {
    margin-bottom: 0;
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: imageReveal 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(1.1) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(197, 160, 89, 0.2);
    pointer-events: none;
}

.floating-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent-gold);
    color: #fff;
    padding: 20px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.section-intro.centered {
    text-align: center;
}

.section-intro.light-text {
    color: #fff;
}

.intro-p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 900px;
    /* Increased from 700px */
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.light-text .intro-p {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SERVICES GRID ===== */
.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.serv-card {
    padding: 40px;
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.4s;
}

.serv-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.serv-icon {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: rgba(197, 160, 89, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    font-weight: 900;
}

.serv-card h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--bg-deep);
}

.serv-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ===== CHECKLIST (Accordion) ===== */
.dark-section {
    background: linear-gradient(rgba(8, 16, 26, 0.95), rgba(8, 16, 26, 0.95)), url('../img/pattern.png');
    background-size: 400px;
    background-repeat: repeat;
    color: #fff;
}

.checklist-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-acc-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.checklist-acc-item:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
}

.checklist-acc-item.active {
    border-color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.05);
}

.checklist-acc-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checklist-acc-header h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.checklist-acc-item.active .checklist-acc-header h4 {
    color: var(--accent-gold);
}

.acc-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.checklist-acc-item.active .acc-icon {
    transform: rotate(45deg);
}

.checklist-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.checklist-acc-item.active .checklist-acc-content {
    padding-bottom: 25px;
}

.styled-list-check {
    list-style: none;
    margin: 0;
    padding: 10px 0 0 0;
}

.styled-list-check li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.styled-list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* ===== MEMBERSHIP ===== */
.membership-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.main-p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.legal-box {
    background: var(--bg-gray);
    padding: 40px;
    border-left: 4px solid var(--accent-gold);
}

.legal-box h4 {
    font-family: var(--serif);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.small-info {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.benefits-side {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-row {
    display: flex;
    gap: 30px;
}

.benefit-row .num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.benefit-row strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-row p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== FEE SECTION ===== */
.gray-section {
    background: var(--bg-gray);
}

/* ===== PREMIUM TABLE & FEE LAYOUT ===== */
.fee-main-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.fee-table-container {
    background: #fff;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.premium-table thead th {
    text-align: left;
    padding: 20px;
    background: var(--bg-deep);
    color: var(--accent-gold);
    font-family: var(--serif);
    font-size: 1.1rem;
    border-bottom: 3px solid var(--accent-gold);
}

.premium-table thead th small {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 400;
}

.premium-table tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-muted);
}

.premium-table tbody tr:nth-child(even) {
    background: #fcfcfc;
}

.premium-table tbody tr:hover {
    background: #f9f6f0;
}

.premium-table tbody td:last-child {
    font-weight: 700;
    color: var(--bg-deep);
    text-align: right;
}

.table-highlight {
    background: rgba(197, 160, 89, 0.05) !important;
    font-weight: 700;
}

.table-highlight td {
    color: var(--accent-gold-dark) !important;
}

.fee-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fee-info-card {
    background: var(--bg-deep);
    color: #fff;
    padding: 40px;
    border-radius: 4px;
    border-left: 5px solid var(--accent-gold);
}

.fee-info-card h4 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.styled-list-sm {
    list-style: none;
    margin-bottom: 2rem;
}

.styled-list-sm li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.styled-list-sm li::before {
    content: "→";
    margin-right: 12px;
    color: var(--accent-gold);
}

.card-note {
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

.fee-cta-box {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--accent-gold);
    text-align: center;
}

.btn-gold-sm {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.btn-gold-sm:hover {
    background: var(--accent-gold-dark);
}

@media (max-width: 968px) {
    .fee-main-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.faq-item h4 {
    font-family: var(--serif);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-deep);
    color: #fff;
    padding: 120px 0 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
}

.contact-details-large {
    margin-top: 4rem;
    display: grid;
    gap: 30px;
}

.c-box strong {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.c-box p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.footer-map-embed {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

/* Subpage styling logic... responsive moved to end */

/* ===== SUBPAGE STYLING ===== */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(8, 16, 26, 0.9), rgba(8, 16, 26, 0.9)), url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.page-hero-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 1.5rem 0;
}

.text-gradient {
    color: var(--accent-gold);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.page-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail,
.info-section {
    padding: 100px 0;
}

.service-detail-content h2,
.section-title {
    font-family: var(--serif);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.info-visual img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== TRUST BADGES ===== */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.trust-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.trust-card img {
    max-height: 180px;
    /* Increased to 180px for much larger visibility */
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* Specific Adjustments inside cards */
.trust-card a {
    text-decoration: none;
    color: inherit;
    width: 100%;
}

/* Google Internal Styling */
.g-internal-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.g-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.g-stars {
    color: #fbbc04;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.g-text {
    font-size: 0.8rem;
    color: #70757a;
}

/* Ageras Internal Styling */
.ageras-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ageras-logo {
    width: 150px;
    max-width: 100%;
    height: auto;
}

.ageras-title {
    font-weight: 900;
    color: #003d7c;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ageras-stars {
    color: #00bf6f;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.ageras-info p {
    font-size: 0.8rem;
    color: #003d7c;
    font-weight: 700;
    margin-bottom: 2px;
}

.ageras-info span {
    font-size: 0.75rem;
    color: #666;
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== GENERIC ACCORDION ===== */
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #eee;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--accent-gold);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--serif);
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--bg-deep);
}

.accordion-header span {
    flex: 1;
    padding-right: 15px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    padding-bottom: 25px;
    opacity: 1;
}

.accordion-item.active .accordion-header {
    color: var(--accent-gold);
}

.accordion-header svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

/* ===== LEGAL PAGES REFINED ===== */
.legal-text-wrapper {
    max-width: var(--container);
    /* Match site width */
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block h2,
.title-serif-sm {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--bg-deep);
    border-bottom: 2px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.legal-block h3 {
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.legal-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.legal-block ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.legal-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 3rem 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    border-radius: 8px;
    display: none;
}

.cookie-content {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent-gold);
    color: #fff;
}

.btn-accept:hover {
    background: var(--accent-gold-dark);
}

.btn-reject {
    background: #f1f3f5;
    color: #4e596d;
}

.btn-reject:hover {
    background: #e9ecef;
}

.btn-settings {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-settings:hover {
    background: rgba(197, 160, 89, 0.05);
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS ===== */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .header {
        background: #fff !important;
        /* Force white on mobile for visibility */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar {
        height: 70px;
        padding: 0 20px !important;
    }

    .header-phone,
    .btn-phone,
    .header-slot,
    .logo-text {
        display: none !important;
    }

    .mobile-toggle span,
    .mobile-menu-btn span {
        background: var(--bg-deep) !important;
        /* Force dark icons on mobile */
    }

    .mobile-toggle,
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 2000;
        padding: 0;
        margin-right: -10px;
    }

    .mobile-toggle span,
    .mobile-menu-btn span {
        display: block;
        width: 28px;
        height: 2px;
        background: var(--bg-deep);
        margin: 3.5px 0;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .mobile-toggle.active span:nth-child(1),
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-toggle.active span:nth-child(2),
    .mobile-menu-btn.active span:nth-child(2) {
        transform: rotate(-45deg) translate(1px, -1px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        opacity: 0;
        transform: scale(0);
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 !important;
        padding: 40px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
        font-family: var(--serif);
        color: var(--bg-deep);
    }

    .section-with-image,
    .membership-info-grid,
    .fee-main-wrapper,
    .info-grid,
    .footer-top,
    .faq-grid,
    .detailed-services-grid,
    .example-cards {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .hero,
    .page-hero,
    .page-header-minimal {
        padding-top: 110px !important;
        padding-bottom: 60px !important;
        height: auto !important;
        min-height: auto !important;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .hero-content,
    .page-hero-content,
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .hero-content,
    .page-hero-content {
        padding: 20px 0;
        max-width: 100%;
    }

    .hero-text,
    .page-hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
    }

    .hero-btns,
    .page-hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }
}

@media (max-width: 768px) {

    .h1-serif,
    .page-hero-title {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-intro {
        margin-bottom: 50px;
    }

    .fee-table-container {
        overflow-x: auto;
        margin: 0 -15px;
        padding: 15px;
        width: calc(100% + 30px);
    }

    .premium-table {
        min-width: 600px;
    }

    .contact-details-large {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .legal-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

    .h1-serif {
        font-size: 1.85rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1.1rem;
        font-size: 0.8rem;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 1.25rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
    }
}
