﻿/* ===================================================
   MARÈVA AT THE OASIS - Brochure Page Stylesheet
   Professional Real Estate Brochure
   =================================================== */

/* ===== CSS VARIABLES (Matching Theme) ===== */
:root {
    /* Primary Colors */
    --primary-gold: #C4975F;
    --primary-gold-light: #D4A76A;
    --gold-dark: #A67C4E;
    --gold-gradient: linear-gradient(135deg, #D4A76A 0%, #C4975F 50%, #A67C4E 100%);
    
    /* Dark Colors */
    --primary-dark: #0D0D0D;
    --secondary-dark: #1A1A1A;
    --tertiary-dark: #2A2A2A;
    
    /* Light Colors */
    --primary-white: #FFFFFF;
    --off-white: #FEFDFB;
    --cream: #F5F3EF;
    --cream-dark: #EBE8E2;
    
    /* Text Colors */
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #666666;
    --text-lighter: #999999;
    
    /* Background Colors */
    --bg-light: #F8F7F5;
    --bg-cream: #FAF9F7;
    
    /* Border & Shadow */
    --border-light: #E5E5E5;
    --border-gold: rgba(196, 151, 95, 0.3);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--primary-dark);
    line-height: 1.6;
    background: var(--primary-white);
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary-gold); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 1s ease, visibility 1s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--primary-gold);
    letter-spacing: 0.4em;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.preloader-line {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--primary-gold);
    animation: loadingLine 2.5s ease forwards;
}

@keyframes loadingLine {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-outer {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(196, 151, 95, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease-out, opacity 0.3s, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-inner {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.08s ease-out, width 0.2s, height 0.2s;
    transform: translate(-50%, -50%);
}

.cursor-outer.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary-gold);
    background: rgba(196, 151, 95, 0.1);
}

.cursor-inner.hover {
    width: 4px;
    height: 4px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-smooth);
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 1;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.nav.scrolled {
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.nav.scrolled::before { opacity: 0; }

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-white);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color var(--transition-fast);
}

.nav.scrolled .nav-logo { color: var(--primary-dark); }
.nav-logo span { color: var(--primary-gold); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-white);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.nav.scrolled .nav-menu a { color: var(--primary-dark); }

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width var(--transition-smooth);
}

.nav-menu a:hover::before, .nav-menu a.active::before { width: 100%; }
.nav-menu a:hover { color: var(--primary-gold); }

.nav-cta {
    padding: 14px 35px;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-cta:hover::before {
    left: 0;
}

.nav-cta:hover {
    color: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary-white);
    transition: all var(--transition-fast);
}

.nav.scrolled .nav-toggle span { background: var(--primary-dark); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active { right: 0; }

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.brochure-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brochure-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.brochure-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.brochure-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 2;
}

.brochure-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin-top: 60px;
}

.brochure-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 151, 95, 0.15);
    border: 2px solid rgba(196, 151, 95, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.brochure-hero-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.brochure-hero-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.brochure-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.brochure-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: var(--primary-gold);
}

.hero-scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ===== BROCHURE INFO SECTION ===== */
.brochure-info {
    padding: 80px 20px;
    background: var(--primary-white);
}

.brochure-info-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 10px 25px rgba(196, 151, 95, 0.3);
}

.info-card-icon i {
    font-size: 1.4rem;
    color: var(--primary-white);
}

.info-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.info-card-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== PDF VIEWER SECTION ===== */
.pdf-section {
    padding: 0 20px 100px;
    background: linear-gradient(180deg, var(--primary-white) 0%, var(--bg-light) 100%);
}

.pdf-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* PDF Card */
.pdf-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

/* PDF Header */
.pdf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 35px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 100%);
    border-bottom: 3px solid var(--primary-gold);
}

.pdf-title-section {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pdf-icon {
    width: 55px;
    height: 55px;
    background: rgba(196, 151, 95, 0.15);
    border: 1px solid rgba(196, 151, 95, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.pdf-title h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary-white);
    margin-bottom: 5px;
}

.pdf-title span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdf-title span i {
    font-size: 0.5rem;
    color: var(--primary-gold);
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-gold);
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(196, 151, 95, 0.3);
    text-decoration: none;
}

.pdf-download-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 151, 95, 0.4);
}

.pdf-download-btn i {
    font-size: 1rem;
}

/* PDF Viewer Wrapper */
.pdf-viewer-wrapper {
    position: relative;
    background: #525659;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.pdf-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

/* PDF Fallback */
.pdf-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: var(--bg-light);
    text-align: center;
    padding: 40px;
}

.pdf-fallback-icon {
    width: 100px;
    height: 100px;
    background: rgba(196, 151, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.pdf-fallback-icon i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.pdf-fallback h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.pdf-fallback p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 400px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 20px;
    background: var(--primary-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 151, 95, 0.15);
    border: 1px solid rgba(196, 151, 95, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.cta-icon i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-white);
    margin-bottom: 18px;
    line-height: 1.3;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: var(--primary-gold);
    color: var(--primary-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.cta-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 151, 95, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    padding: 100px 5% 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-brand .footer-logo span {
    color: var(--primary-gold);
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.9;
    margin-bottom: 35px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-dark);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-newsletter p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-newsletter-form input {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.footer-newsletter-form button {
    padding: 16px 25px;
    background: var(--primary-gold);
    border: none;
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.footer-newsletter-form button:hover {
    background: var(--gold-dark);
    color: var(--primary-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 50px auto 0;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    z-index: 998;
    font-size: 1.1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    color: var(--primary-white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

/* ===== DOWNLOAD TOAST ===== */
.download-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.download-toast.active {
    transform: translateX(0);
}

.toast-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon.loading {
    background: var(--bg-light);
}

.toast-icon.loading::after {
    content: '';
    width: 25px;
    height: 25px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.toast-icon.success {
    background: var(--primary-gold);
}

.toast-icon.success i {
    color: var(--primary-white);
    font-size: 1.2rem;
}

.toast-content h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 3px;
}

.toast-content p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-light);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#downloadFrame {
    display: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 992px) {
    .nav-menu, .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .brochure-hero-title {
        font-size: 2.8rem;
    }
    
    .brochure-info-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .pdf-header {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }
    
    .pdf-title-section {
        flex-direction: column;
    }
    
    .pdf-download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pdf-frame {
        height: 550px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    /* Hide custom cursor on tablet/mobile */
    .cursor-outer,
    .cursor-inner {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .brochure-hero {
        height: auto;
        min-height: 500px;
        padding: 100px 0 80px;
    }
    
    .brochure-hero-title {
        font-size: 2.2rem;
    }
    
    .brochure-hero-icon {
        width: 70px;
        height: 70px;
    }
    
    .brochure-hero-icon i {
        font-size: 1.6rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .brochure-info {
        padding: 60px 20px;
    }
    
    .info-card {
        padding: 30px 25px;
    }
    
    .pdf-section {
        padding: 0 15px 60px;
    }
    
    .pdf-card {
        border-radius: 16px;
    }
    
    .pdf-header {
        border-radius: 16px 16px 0 0;
    }
    
    .pdf-viewer-wrapper {
        border-radius: 0 0 16px 16px;
    }
    
    .pdf-frame {
        height: 450px;
    }
    
    .cta-section {
        padding: 70px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .download-toast {
        left: 15px;
        right: 15px;
        bottom: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }
}