/* ========================================
   THE LEVANT EDIT - LUXURY MINIMALIST
   Inspired by Aman.com
   ======================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/coconat-pro');

:root {
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-grey: #F5F5F5;
    --mid-grey: #E0E0E0;
    --dark-grey: #666666;
    --black: #000000;
    --spacing: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Coconat Pro', sans-serif;
    color: var(--black);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.6;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mid-grey);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Hero */
.hero {
    margin-top: 80px;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image img {
    filter: brightness(0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 18px;
    letter-spacing: 0.05em;
}

/* Gallery */
.gallery {
    padding: var(--spacing) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-item {
    grid-column: span 4;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 8;
    aspect-ratio: 16/9;
}

.gallery-item img {
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Intro Text */
.intro-text {
    padding: 80px 0;
    background: var(--light-grey);
}

.lead {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark-grey);
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-intro {
    font-size: 18px;
    color: var(--dark-grey);
    max-width: 700px;
    margin-bottom: 60px;
}

/* Airbnb Section */
.airbnb-section {
    padding: var(--spacing) 0;
}

.services-grid {
    display: grid;
    gap: 100px;
    margin-bottom: 100px;
}

.service-block h3 {
    margin-bottom: 16px;
}

.service-block > p {
    color: var(--dark-grey);
    margin-bottom: 48px;
    max-width: 600px;
}

/* E-books */
.ebook-list {
    display: grid;
    gap: 48px;
}

.ebook-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--mid-grey);
}

.ebook-item:last-child {
    border-bottom: none;
}

.ebook-visual {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.ebook-info h4 {
    margin-bottom: 12px;
}

.ebook-info p {
    color: var(--dark-grey);
    margin-bottom: 24px;
}

.ebook-meta {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ebook-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
}

.ebook-status {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-grey);
}

.link-arrow {
    font-size: 14px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
}

.link-arrow:hover {
    opacity: 1;
    border-color: var(--dark-grey);
}

.ebook-item.coming-soon {
    opacity: 0.5;
}

/* Consultations */
.consultation-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tier {
    padding: 48px 32px;
    border: 1px solid var(--mid-grey);
    position: relative;
}

.tier.featured {
    border: 2px solid var(--black);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--black);
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tier h4 {
    margin-bottom: 8px;
}

.tier-duration {
    font-size: 14px;
    color: var(--dark-grey);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.tier > p {
    color: var(--dark-grey);
    margin-bottom: 32px;
    min-height: 80px;
}

.tier-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--mid-grey);
}

.tier-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
}

/* Results */
.results-section {
    padding: 80px 0;
    border-top: 1px solid var(--mid-grey);
}

.results-section h3 {
    margin-bottom: 48px;
}

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

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 12px;
}

.result-label {
    display: block;
    font-size: 14px;
    color: var(--dark-grey);
    letter-spacing: 0.05em;
}

/* Image Break */
.image-break {
    height: 70vh;
    overflow: hidden;
}

/* Travel Section */
.travel-section {
    padding: var(--spacing) 0;
    background: var(--off-white);
}

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

.travel-item {
    transition: opacity 0.3s ease;
}

.travel-item.coming-soon {
    opacity: 0.5;
}

.travel-image {
    aspect-ratio: 4/5;
    margin-bottom: 24px;
    overflow: hidden;
}

.travel-image img {
    transition: transform 0.6s ease;
}

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

.travel-info h3 {
    margin-bottom: 12px;
}

.travel-info p {
    color: var(--dark-grey);
    margin-bottom: 24px;
    min-height: 60px;
}

.travel-meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.travel-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
}

.travel-status {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-grey);
}

/* Testimonials */
.testimonials {
    padding: var(--spacing) 0;
}

.testimonial {
    padding: 60px 0;
    border-bottom: 1px solid var(--mid-grey);
}

.testimonial:last-child {
    border-bottom: none;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--dark-grey);
}

/* Contact */
.contact-section {
    padding: var(--spacing) 0;
    text-align: center;
    background: var(--light-grey);
}

.contact-section h2 {
    margin-bottom: 24px;
}

.contact-section p {
    color: var(--dark-grey);
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-grey);
    opacity: 1;
}

.contact-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--dark-grey);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--mid-grey);
    background: var(--off-white);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--dark-grey);
    margin-bottom: 8px;
}

.footer-location {
    font-size: 14px;
    color: var(--dark-grey);
}

.footer-contact {
    text-align: right;
}

.footer-email {
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.footer-email:hover {
    opacity: 0.6;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mid-grey);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--black);
    background: transparent;
}

.footer-social a:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    opacity: 1;
    transform: translateY(-2px);
}

.footer-social a:hover svg {
    fill: var(--white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
    fill: var(--black);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--mid-grey);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--dark-grey);
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-item {
        grid-column: span 6;
    }
    
    .gallery-item.large {
        grid-column: span 12;
    }
    
    .consultation-tiers {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .travel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing: 80px;
    }
    
    .container,
    .container-narrow {
        padding: 0 24px;
    }
    
    .nav-container {
        padding: 20px 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        height: 60vh;
    }
    
    .gallery-grid {
        padding: 0 16px;
        gap: 8px;
    }
    
    .ebook-item {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }
}
/* Photo Showcase */
.photo-showcase {
    padding: 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.showcase-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.showcase-item img {
    transition: transform 0.6s ease;
}

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

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

/* Language Selector */
.lang-selector {
    padding: 8px 16px;
    border: 1px solid var(--mid-grey);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-selector:hover {
    border-color: var(--black);
}

.lang-selector:focus {
    outline: none;
    border-color: var(--black);
}

/* RTL Support */
body.rtl {
    direction: rtl;
}

body.rtl .nav-links {
    flex-direction: row-reverse;
}

body.rtl .ebook-item {
    grid-template-columns: 1fr 300px;
}

body.rtl .guide-footer,
body.rtl .ebook-meta,
body.rtl .travel-meta,
body.rtl .tier-footer {
    flex-direction: row-reverse;
}

body.rtl .footer-content {
    direction: rtl;
}

body.rtl .link-arrow::after {
    content: ' ←';
}

/* Hebrew font */
body[lang="he"],
body[lang="he"] * {
    font-family: 'Rubik', 'Inter', sans-serif !important;
}

/* Arabic font */
body[lang="ar"],
body[lang="ar"] * {
    font-family: 'Inter', sans-serif !important;
}

/* ========================================
   NEW SECTIONS - SALES OPTIMIZED
   ======================================== */

/* Announcement Bar */
.announcement-bar {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.announcement-bar + .nav {
    top: 48px;
}

.announcement-bar .strike {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 5px;
}

/* Hero Enhancements */
.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--white);
    margin-top: 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #333;
    opacity: 1;
    transform: translateY(-2px);
}

/* Gumroad Button Styles */
.gumroad-button {
    background: #FF69B4 !important;
    color: var(--white) !important;
}

.gumroad-button:hover {
    background: #FF1493 !important;
    opacity: 1 !important;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #333;
    color: var(--white);
    opacity: 1;
    transform: translateY(-2px);
}

.btn-primary-large {
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 600;
}

/* Social Proof Bar */
.social-proof-bar {
    background: var(--light-grey);
    padding: 40px 0;
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.proof-item strong {
    display: block;
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 8px;
}

.proof-item span {
    font-size: 14px;
    color: var(--dark-grey);
}

/* Problem Section */
.problem-section {
    padding: var(--spacing) 0;
    background: var(--white);
}

.problem-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    align-items: stretch;
}

.problem-item {
    text-align: center;
    padding: 40px;
    background: var(--off-white);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.problem-item h3 {
    margin-bottom: 20px;
    min-height: auto;
}

.problem-item p {
    flex-grow: 1;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.5rem;
    max-width: 900px;
    margin: 40px auto 0;
    line-height: 1.8;
    font-weight: 500;
    color: var(--black);
    padding: 40px;
    background: var(--light-grey);
    border-radius: 8px;
    border-left: 6px solid var(--black);
}

/* Preview Section */
.preview-section {
    padding: var(--spacing) 0;
    background: var(--light-grey);
}

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

.section-header-center h2 {
    margin-bottom: 20px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

@media (max-width: 1400px) {
    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.preview-item {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
}

.preview-image {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.preview-item h3 {
    margin-bottom: 20px;
}

.preview-item ul {
    list-style: none;
    padding: 0;
}

.preview-item li {
    padding: 10px 0;
    border-bottom: 1px solid var(--mid-grey);
}

.preview-item li:last-child {
    border-bottom: none;
}

.preview-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 4px;
}

.preview-cta h3 {
    margin-bottom: 16px;
}

.preview-cta p {
    margin-bottom: 30px;
}

.guarantee {
    margin-top: 20px;
    font-size: 14px;
    color: var(--dark-grey);
}

/* Results / Case Studies */
.results-section {
    padding: var(--spacing) 0;
}

.case-studies {
    max-width: 1200px;
    margin: 0 auto;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.case-study-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.before-after {
    position: relative;
}

.before-after img {
    border-radius: 4px;
}

.ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.metric {
    text-align: center;
    padding: 20px;
    background: var(--light-grey);
    border-radius: 4px;
}

.metric strong {
    display: block;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 8px;
}

.case-study blockquote {
    font-style: italic;
    padding: 30px;
    background: var(--off-white);
    border-left: 4px solid var(--black);
    margin: 30px 0 0 0;
}

.case-study-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px;
    background: var(--off-white);
    border-radius: 4px;
}

.stat-item ul {
    list-style: none;
    padding: 0;
}

.stat-item li {
    padding: 8px 0;
}

.stat-arrow {
    font-size: 3rem;
    color: var(--dark-grey);
}

.stat-item.highlight {
    background: var(--black);
    color: var(--white);
    padding: 40px;
    border-radius: 4px;
}

.stat-item.highlight strong {
    color: #FFF;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing) 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--mid-grey);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    text-align: left;
    transition: opacity 0.3s;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
}

/* Testimonials Enhanced */
.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-rating {
    color: #FFB800;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

/* Final CTA */
.final-cta {
    padding: var(--spacing) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.final-cta h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta .lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-offer {
    background: var(--white);
    color: var(--black);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-includes {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.cta-includes li {
    padding: 12px 0;
    border-bottom: 1px solid var(--mid-grey);
}

.cta-pricing {
    margin: 40px 0;
}

.price-strike {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.5;
    margin-bottom: 10px;
}

.price-main {
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-note {
    color: #D32F2F;
    font-weight: 600;
}

.cta-guarantee {
    margin-top: 30px;
    font-size: 14px;
    color: var(--dark-grey);
}

.cta-urgency {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 4px;
    color: var(--white);
}

/* Waitlist Section */
.waitlist-section {
    padding: var(--spacing) 0;
    background: var(--light-grey);
    text-align: center;
}

.waitlist-form {
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.waitlist-form input {
    padding: 16px 20px;
    border: 1px solid var(--mid-grey);
    border-radius: 4px;
    font-size: 16px;
}

.form-note {
    font-size: 14px;
    color: var(--dark-grey);
    margin-top: 20px;
}

/* Exit Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.popup-close:hover {
    opacity: 1;
}

.popup-form {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup-form input {
    padding: 16px 20px;
    border: 1px solid var(--mid-grey);
    border-radius: 4px;
    font-size: 16px;
}

.popup-note {
    font-size: 14px;
    color: var(--dark-grey);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--dark-grey);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--black);
    opacity: 1;
}

.footer-tagline {
    margin-top: 10px;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study {
        grid-template-columns: 1fr;
    }
    
    .case-study-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-arrow {
        transform: rotate(90deg);
    }
    
    .proof-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-offer {
        padding: 40px 30px;
    }
    
    .popup-content {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .nav-links {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
        border-top: 1px solid var(--mid-grey);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    
    .nav-mobile-toggle span {
        width: 25px;
        height: 2px;
        background: var(--black);
        transition: all 0.3s;
    }
}

@media (min-width: 769px) {
    .nav-mobile-toggle {
        display: none;
    }
}

/* Tier Reviews */
.tier-review {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-grey);
    border-radius: 4px;
    border-left: 3px solid var(--black);
}

.review-stars {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.review-author {
    font-size: 13px;
    color: var(--dark-grey);
    font-weight: 500;
}

/* E-book Showcase */
.ebook-showcase {
    max-width: 1000px;
    margin: 60px auto;
}

.ebook-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.ebook-image {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ebook-details h3 {
    margin-bottom: 20px;
}

.ebook-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--dark-grey);
}

.ebook-includes {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.ebook-includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--mid-grey);
}

.ebook-includes li:last-child {
    border-bottom: none;
}

.ebook-purchase {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0 20px;
}

.ebook-price {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.ebook-guarantee {
    font-size: 14px;
    color: var(--dark-grey);
}

/* Coming Soon Cities */
.coming-soon-cities {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--mid-grey);
}

.coming-soon-cities h3 {
    margin-bottom: 40px;
}

.city-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.city-item {
    text-align: center;
}

.city-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.city-item h4 {
    margin-bottom: 10px;
}

.city-date {
    font-size: 14px;
    color: var(--dark-grey);
}

@media (max-width: 768px) {
    .ebook-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .city-list {
        grid-template-columns: 1fr;
    }
}

/* FAQ Fix - Force visible when open */
.faq-item.open .faq-answer {
    max-height: 1000px !important;
    padding-bottom: 30px;
    display: block;
}

.faq-answer p {
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

/* ========== BLOG STYLES ========== */

/* Blog Header */
.blog-header {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--off-white);
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.blog-header .lead {
    font-size: 1.2rem;
    color: var(--dark-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid-section {
    padding: 80px 0;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--mid-grey);
    margin-bottom: 60px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-card.featured {
    border: 2px solid var(--black);
}

.blog-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blog-content {
    padding: 40px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--dark-grey);
}

.blog-category {
    background: var(--off-white);
    padding: 4px 12px;
    border-radius: 20px;
}

.blog-card h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: 30px;
}

.blog-highlights {
    background: var(--light-grey);
    padding: 30px;
    border-left: 4px solid var(--black);
    margin: 30px 0;
}

.blog-highlights h4 {
    margin-bottom: 15px;
}

.blog-highlights ul {
    list-style: none;
    padding: 0;
}

.blog-highlights li {
    padding: 8px 0;
    font-size: 15px;
}

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

.blog-images-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* Article Full Content */
.article-full {
    margin-top: 40px;
}

.article-full hr {
    margin: 40px 0;
    border: none;
    border-top: 2px solid var(--mid-grey);
}

.article-content {
    max-width: 800px;
}

.article-content h3 {
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.article-content strong {
    color: var(--black);
}

.article-cta {
    background: var(--off-white);
    padding: 40px;
    text-align: center;
    margin: 60px 0 0;
    border-radius: 4px;
}

.article-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Blog Newsletter */
.blog-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
}

.blog-newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.blog-newsletter p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.newsletter-form button {
    white-space: nowrap;
}

.newsletter-note {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-content {
        padding: 30px 20px;
    }
    
    .blog-card h2 {
        font-size: 1.5rem;
    }
    
    .blog-images-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-images-grid img {
        height: 250px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .blog-meta {
        font-size: 13px;
    }
}
/* FIX POLICE LOGO + AJOUT BLOG */

/* Navigation Brand - Cormorant Garamond */
.nav-brand,
.nav-brand a {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Blog Section */
.blog-section {
    padding: var(--spacing) 0;
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.blog-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-grey);
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--dark-grey);
}

.blog-excerpt {
    color: var(--dark-grey);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--mid-grey);
}

.read-time {
    font-size: 14px;
    color: var(--dark-grey);
}

.blog-arrow {
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
}

.blog-card:hover .blog-arrow {
    transform: translateX(5px);
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 4px;
}

.blog-cta p:first-child {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--black);
}

.blog-newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 15px;
}

.blog-newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--mid-grey);
    border-radius: 4px;
    font-size: 16px;
}

.blog-newsletter-form button {
    padding: 16px 40px;
    white-space: nowrap;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-newsletter-form {
        flex-direction: column;
    }

    .blog-newsletter-form button {
        width: 100%;
    }

    .blog-image {
        height: 220px;
    }
}

/* ========== BLOG ARTICLE PAGE STYLES ========== */

/* Article Header */
.blog-article-header {
    padding: 140px 0 40px;
    background: var(--off-white);
}

.back-link {
    display: inline-block;
    font-size: 14px;
    color: var(--dark-grey);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--black);
    opacity: 1;
}

.article-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-grey);
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-article-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-grey);
}

/* Featured Image */
.article-featured-image {
    padding: 0;
    margin-bottom: 60px;
}

.article-featured-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

/* Article Content */
.blog-article {
    padding: 0 0 80px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: 40px;
    font-weight: 400;
}

.article-content h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    line-height: 1.3;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content strong {
    font-weight: 600;
    color: var(--black);
}

/* Article CTA Box */
.article-cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
    color: var(--white);
}

.article-cta-box h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.article-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Share Section */
.article-share {
    padding: 40px 0;
    border-top: 1px solid var(--mid-grey);
    border-bottom: 1px solid var(--mid-grey);
    margin: 60px 0;
}

.article-share p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    padding: 10px 20px;
    background: var(--off-white);
    border: 1px solid var(--mid-grey);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    opacity: 1;
}

/* Related Articles */
.related-articles {
    margin-top: 80px;
}

.related-articles h3 {
    margin-bottom: 30px;
    font-size: 2rem;
}

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

.related-card {
    display: block;
    background: var(--off-white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h4 {
    padding: 20px;
    font-size: 1.2rem;
}

/* Responsive Article */
@media (max-width: 768px) {
    .blog-article-header {
        padding: 100px 0 30px;
    }

    .blog-article-header h1 {
        font-size: 1.8rem;
    }

    .article-featured-image img {
        max-height: 300px;
    }

    .article-content {
        font-size: 1rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }

    .article-cta-box {
        padding: 40px 30px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

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