/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --secondary: #c9a961;
    --accent: #e8d5b7;
    --light: #f9f6f1;
    --dark: #0f0f1e;
    --text: #2d2d3a;
}

html {
    scroll-behavior: smooth;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 1.5rem 2rem;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: var(--dark);
    padding: 1rem 2rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.35);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-cta {
    padding: 0.65rem 1.6rem;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #d4b978;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 860px;
}

.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--accent);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    margin-bottom: 2rem;
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    font-size: 1rem;
}

.cta-button-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
    background: #d4b978;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    font-size: 1rem;
}

.cta-button-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-4px);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.badge {
    padding: 0.4rem 1.2rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 500;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--primary);
    padding: 1.5rem 2rem;
    border-bottom: 3px solid var(--secondary);
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-item strong {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
}

.trust-item span {
    font-size: 0.78rem;
    color: var(--accent);
    margin-top: 2px;
}

.trust-divider {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* === SHARED SECTION STYLES === */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* === SERVICES (DOCUMENT EXPLORER) === */
.document-explorer {
    padding: 7rem 2rem;
    background: linear-gradient(to bottom, var(--light), white);
}

.document-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.document-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 35px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    outline: none;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.document-card:hover::before,
.document-card:focus::before {
    transform: scaleX(1);
}

.document-card:hover,
.document-card:focus {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.document-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.document-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.document-card p {
    color: #666;
    line-height: 1.7;
    flex: 1;
}

.card-link {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.93rem;
}

/* === CHATBOT === */
.chatbot-section {
    padding: 7rem 2rem;
    background: var(--light);
}

.chatbot-container {
    max-width: 860px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 2rem;
    text-align: center;
}

.chatbot-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.chatbot-header p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.chat-messages {
    padding: 2rem;
    min-height: 380px;
    max-height: 480px;
    overflow-y: auto;
    background: #fafafa;
}

.message {
    margin-bottom: 1.5rem;
    animation: messageAppear 0.4s ease-out;
}

@keyframes messageAppear {
    from { opacity: 0; transform: translateX(-15px); }
    to   { opacity: 1; transform: translateX(0); }
}

.message.bot  { text-align: left; }
.message.user { text-align: right; }

.message-bubble {
    display: inline-block;
    padding: 1rem 1.5rem;
    border-radius: 18px;
    max-width: 75%;
    word-wrap: break-word;
    line-height: 1.6;
    font-size: 0.97rem;
}

.message.bot .message-bubble {
    background: white;
    color: var(--text);
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.message.user .message-bubble {
    background: var(--secondary);
    color: white;
}

.quick-questions {
    padding: 1rem 1.5rem 1.5rem;
    background: white;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
}

.quick-question-btn {
    padding: 0.6rem 1.1rem;
    background: var(--light);
    border: 2px solid var(--secondary);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.quick-question-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.chat-input-container {
    padding: 1.2rem 1.5rem;
    background: white;
    border-top: 2px solid #eee;
    display: flex;
    gap: 0.8rem;
}

.chat-input {
    flex: 1;
    padding: 0.9rem 1.3rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
}

.chat-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.chat-send-btn {
    padding: 0.9rem 2rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
}

.chat-send-btn:hover {
    background: #d4b978;
    transform: scale(1.04);
}

.typing-indicator {
    display: inline-flex;
    gap: 4px;
    padding: 0.8rem 1.2rem;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.7; }
    30%           { transform: translateY(-8px); opacity: 1; }
}

/* === PROCESS TIMELINE === */
.process-section {
    padding: 7rem 2rem;
    background: var(--primary);
    color: white;
}

.timeline {
    max-width: 880px;
    margin: 3rem auto;
    position: relative;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--secondary);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.timeline-item:nth-child(odd)  { justify-content: flex-start; }
.timeline-item:nth-child(even) { justify-content: flex-end; }

.timeline-content {
    background: rgba(255,255,255,0.07);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(201, 169, 97, 0.35);
    width: calc(50% - 55px);
    backdrop-filter: blur(10px);
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
    border: 4px solid var(--primary);
    z-index: 10;
}

.timeline-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--secondary);
}

.timeline-item p {
    color: var(--accent);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* === CHECKLIST GENERATOR === */
.checklist-section {
    padding: 7rem 2rem;
    background: white;
}

.checklist-generator {
    max-width: 760px;
    margin: 0 auto;
    background: var(--light);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 12px 45px rgba(0,0,0,0.07);
}

.select-label {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.service-select {
    width: 100%;
    padding: 1.1rem;
    font-size: 1rem;
    border: 2px solid var(--secondary);
    border-radius: 12px;
    margin-bottom: 0;
    font-family: 'DM Sans', sans-serif;
    background: white;
    color: var(--text);
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.service-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}

.checklist {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #eee;
    margin-top: 1.5rem;
}

.checklist h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.checklist-item {
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: slideInLeft 0.4s ease-out both;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

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

.checkbox {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    margin-top: 2px;
}

.checkbox.checked {
    background: var(--secondary);
}

.checkbox.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.checklist-item span {
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--text);
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 7rem 2rem;
    background: var(--primary);
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(201, 169, 97, 0.25);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.contact-card:hover {
    background: rgba(201, 169, 97, 0.12);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--secondary);
}

.contact-card p {
    color: var(--accent);
    font-size: 0.95rem;
}

.contact-action {
    margin-top: 0.6rem;
    color: var(--secondary);
    font-size: 0.88rem;
    font-weight: 600;
}

/* === FOOTER === */
footer {
    background: var(--dark);
    color: var(--accent);
    padding: 3rem 2rem;
    text-align: center;
}

footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.footer-tagline {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-copy {
    opacity: 0.55;
    font-size: 0.88rem;
    margin-top: 0.5rem;
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

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

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 560px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--text); }

#modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    padding-right: 2.5rem;
    line-height: 1.3;
}

.modal-intro {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

#modal-body ul {
    list-style: none;
    padding: 0;
}

#modal-body ul li {
    padding: 0.65rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.97rem;
    line-height: 1.5;
    color: var(--text);
}

#modal-body ul li:last-child { border-bottom: none; }

#modal-body ul li::before {
    content: '✔';
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modal-cta {
    flex: 1;
    padding: 0.9rem 1.5rem;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    min-width: 130px;
    font-size: 0.95rem;
}

.modal-cta:hover {
    background: #d4b978;
    transform: translateY(-2px);
}

.modal-cta-secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--primary);
}

.modal-cta-secondary:hover {
    background: var(--light);
}

/* === FLOATING CALL BUTTON (mobile) === */
.floating-call {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: var(--secondary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.55);
    transition: all 0.3s ease;
    z-index: 900;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.7);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(15, 15, 30, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 999;
    }

    .nav-links.open { display: flex; }
    .nav-links.open a { font-size: 1.4rem; color: white; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .floating-call { display: flex; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.1rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .trust-bar-inner { gap: 1rem; }
    .trust-divider { display: none; }

    .timeline::before { left: 28px; }

    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 70px;
    }

    .timeline-content { width: 100% !important; }

    .timeline-number {
        left: 28px;
        transform: translateX(-50%);
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

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

    .chat-input-container { flex-direction: column; }
    .chat-send-btn { width: 100%; }
    .quick-question-btn { width: 100%; }

    .checklist-generator { padding: 2rem 1.5rem; }

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

    .modal-content { padding: 2rem 1.5rem; }
    .modal-footer { flex-direction: column; }
    .modal-cta { width: 100%; min-width: unset; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .section-title { font-size: 1.85rem; }
    .chatbot-header h3 { font-size: 1.4rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .trust-bar-inner { flex-direction: column; gap: 1rem; }
    .footer-links { gap: 1.2rem; }
}

/* === DEMO NOTICE === */
.demo-notice {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 9999;
    max-width: 700px;
    width: calc(100% - 2rem);
    background: #1a1205;
    border: 2px solid var(--secondary);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.demo-notice.hidden {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.demo-notice-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
}

.demo-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1.2;
}

.demo-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.demo-text strong {
    color: var(--secondary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.demo-text span {
    color: var(--accent);
    font-size: 0.9rem;
    line-height: 1.5;
}

.demo-text em {
    color: #f0a040;
    font-style: normal;
    font-weight: 600;
}

.demo-close {
    background: none;
    border: none;
    color: #888;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 0.2rem;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.2s;
    margin-top: 2px;
}

.demo-close:hover { color: white; }

@media (max-width: 600px) {
    .demo-notice { bottom: 5rem; }
    .demo-text span { font-size: 0.82rem; }
}

/* === MAP SECTION === */
.map-section {
    padding: 7rem 2rem 4rem;
    background: var(--dark);
}

.map-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(201, 169, 97, 0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.map-wrapper iframe {
    display: block;
}

@media (max-width: 768px) {
    .map-wrapper iframe { height: 300px; }
}
