/* ============================================
   YR Apartment – Zentrale Styles
   Basierend auf service.html (Design-Referenz)
   ============================================ */

/* ============================================
   1. CSS VARIABLEN (Custom Properties)
   ============================================ */
:root {
    /* Farben */
    --color-gold: #BBAAA4;
    --color-gold-dark: #9a8a84;
    --color-background: #F5F1EE;
    --color-text: #111111;
    --color-text-light: #6b7280;
    --color-footer-bg: #7c726a;
    --color-footer-text: #efedec;
    --color-champagne: #F7E7CE;
    --color-champagne-dark: #E8D8BF;
    --color-divider: #D9D9D9;
    --color-white: #ffffff;
    
    /* Fonts */
    --font-headline: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', 'Noto Sans', Arial, sans-serif;
    --font-logo: 'Amsterdam Four', cursive, sans-serif;
    
    /* Spacing */
    --header-height: 72px;
    --container-max: 1280px;
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-background) !important;
    color: var(--color-text) !important;
    font-family: var(--font-body) !important;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Scrollbar verstecken */
::-webkit-scrollbar { 
    display: none; 
}
html, body { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* ============================================
   3. TYPOGRAFIE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline) !important;
    color: var(--color-text);
    margin-top: 0;
}

.headline, .font-serif {
    font-family: var(--font-headline) !important;
}

.font-sans {
    font-family: var(--font-body) !important;
}

/* Text Shadow für Hero-Bereiche */
.text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.text-shadow-strong {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

/* ============================================
   4. FARB-KLASSEN
   ============================================ */
.accent, .text-gold, .text-accent {
    color: var(--color-gold) !important;
}

.bg-accent, .bg-gold {
    background-color: var(--color-gold) !important;
    color: var(--color-white) !important;
}

.border-accent, .border-gold {
    border-color: var(--color-gold) !important;
}

.border-divider {
    border-color: var(--color-divider) !important;
}

.footer-bg, .bg-footerbg {
    background-color: var(--color-footer-bg) !important;
    color: var(--color-footer-text) !important;
}

.footer-link {
    color: var(--color-footer-text) !important;
}

.footer-text {
    color: var(--color-footer-text) !important;
}

/* ============================================
   5. LOGO
   ============================================ */
@font-face {
    font-family: 'Amsterdam Four';
    src: url('fonts/Amsterdam Four_ttf 400.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.amsterdam-logo {
    font-family: var(--font-logo) !important;
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.04em;
    color: #232323;
    line-height: 1;
    text-decoration: none;
}

/* ============================================
   6. BUTTONS
   ============================================ */

/* Base Button */
.btn, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 9999px !important;
    border: 1.5px solid var(--color-gold) !important;
    color: var(--color-gold) !important;
    background: var(--color-white) !important;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.btn:hover, .button:hover {
    background: var(--color-gold) !important;
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(187, 170, 164, 0.3);
}

/* Primary Button (Filled) */
.btn-primary {
    background: var(--color-gold) !important;
    color: var(--color-white) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 16px 32px !important;
    border: 2px solid var(--color-gold) !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 12px rgba(187, 170, 164, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--color-gold-dark) !important;
    border-color: var(--color-gold-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(187, 170, 164, 0.4) !important;
}

/* Secondary Button (Outline) */
.btn-secondary {
    background: var(--color-white) !important;
    color: var(--color-gold) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 16px 32px !important;
    border: 2px solid var(--color-gold) !important;
    border-radius: 9999px !important;
    box-shadow: 0 4px 12px rgba(187, 170, 164, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--color-gold) !important;
    color: var(--color-white) !important;
    border-color: var(--color-gold) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(187, 170, 164, 0.4) !important;
}

/* ============================================
   7. HEADER
   ============================================ */
#header, .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.sticky-header {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

/* Header WhatsApp Button */
.header-whatsapp .fa-whatsapp {
    color: var(--color-gold) !important;
    transition: color 0.3s;
}

.header-whatsapp:hover .fa-whatsapp {
    color: var(--color-white) !important;
}

/* ============================================
   8. NAVIGATION
   ============================================ */
.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
}

/* Sticky Side Navigation */
.sticky-nav {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-nav a {
    display: block;
    padding: 8px 16px;
    margin: 4px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sticky-nav a:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ============================================
   9. FOOTER
   ============================================ */
#footer, .site-footer {
    background-color: var(--color-footer-bg) !important;
    color: var(--color-footer-text) !important;
    padding: 32px 0;
    margin-top: 40px;
}

#footer a, .site-footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover, .site-footer a:hover {
    color: var(--color-gold);
}

/* ============================================
   10. ANIMATIONEN
   ============================================ */

/* Reveal Animation (Scroll) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* AOS-ähnliche Animationen */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   11. KARTEN & KOMPONENTEN
   ============================================ */

/* Service Card */
.service-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* Feature List */
.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(187, 170, 164, 0.05);
    padding-left: 8px;
}

/* Section Divider */
.section-divider {
    width: 64px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 16px 0;
}

/* ============================================
   12. WASSERZEICHEN / HINTERGRUND
   ============================================ */
html::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40vw;
    height: 20vw;
    max-width: 700px;
    max-height: 350px;
    min-width: 250px;
    min-height: 120px;
    transform: translate(-50%, -50%);
    background: url('./images/Logo1.png') no-repeat center center;
    background-size: contain;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

html > body > * {
    position: relative;
    z-index: 1;
}

/* Fallback falls Logo nicht lädt */
html.no-bgimg::before {
    content: "";
    background: none;
}

@media (max-width: 600px) {
    html::before {
        width: 80vw;
        height: 30vw;
    }
}

/* ============================================
   13. FORMULARE
   ============================================ */
input, textarea, select {
    font-family: var(--font-body);
    font-size: 16px;
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* ============================================
   14. KALENDER (Booking)
   ============================================ */
.calendar-container .available {
    background-color: var(--color-champagne);
    cursor: pointer;
}

.calendar-container .available:hover {
    background-color: var(--color-gold);
    color: white;
}

.calendar-container .unavailable {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.calendar-container .selected {
    background-color: var(--color-gold) !important;
    color: white !important;
}

/* ============================================
   15. FAQ ACCORDION
   ============================================ */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-family: var(--font-body);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ============================================
   16. UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

.section-light {
    background-color: var(--color-white);
    padding: 80px 0;
}

.section-dark {
    background-color: #1a1a1a;
    color: var(--color-white);
    padding: 80px 0;
}

.bg-champagne {
    background-color: var(--color-champagne) !important;
}

/* Content Offset für Fixed Header */
.content-offset {
    padding-top: calc(var(--header-height) + 20px);
}

/* ============================================
   17. FONT AWESOME FIX
   ============================================ */
.fa, .fas, .far, .fal, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* ============================================
   18. RESPONSIVE ANPASSUNGEN
   ============================================ */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px !important;
        font-size: 16px !important;
    }
    
    .service-card {
        padding: 24px;
    }
}

/* ============================================
   19. MOBILE NAVIGATION
   ============================================ */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* Hamburger Icon Animation */
.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X Animation */
.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

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

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: var(--color-white);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 24px;
    padding-top: calc(var(--header-height) + 16px);
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: var(--color-champagne);
    color: var(--color-gold);
    transform: translateX(8px);
}

.mobile-menu-nav a i {
    width: 24px;
    margin-right: 16px;
    color: var(--color-gold);
    font-size: 18px;
}

/* Mobile Menu Divider */
.mobile-menu-divider {
    height: 1px;
    background: var(--color-divider);
    margin: 20px 24px;
}

/* Mobile Menu Contact */
.mobile-menu-contact {
    padding: 0 24px 24px;
}

.mobile-menu-contact-item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-size: 15px;
    color: var(--color-text-light);
}

.mobile-menu-contact-item i {
    width: 24px;
    margin-right: 16px;
    color: var(--color-gold);
    font-size: 16px;
}

.mobile-menu-contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-contact-item a:hover {
    color: var(--color-gold);
}

/* Mobile Menu CTA */
.mobile-menu-cta {
    padding: 24px;
    background: var(--color-background);
}

.mobile-menu-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: #25D366;
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mobile-menu-cta a:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-menu-cta a i {
    margin-right: 10px;
    font-size: 18px;
}

/* Body Lock when Menu is Open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   20. PAGE-SPECIFIC STYLES
   ============================================ */

/* --- ABOUT PAGE --- */
.value-card {
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-icon {
    transition: all 0.3s ease;
}
.value-card:hover .value-icon {
    transform: scale(1.1);
}

.team-card {
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.team-card:hover img {
    transform: scale(1.05);
}
.team-card img {
    transition: all 0.3s ease;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 32px;
    bottom: -32px;
    width: 2px;
    background: var(--color-gold);
}
.timeline-item:last-child::before {
    display: none;
}
.timeline-dot {
    position: absolute;
    left: 0;
    top: 8px;
    width: 26px;
    height: 26px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* --- APARTMENT PAGE --- */
.apartment-card {
    transition: all 0.3s ease;
}
.apartment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-family {
    background: var(--color-champagne);
    color: #6b5b50;
}
.badge-business {
    background: #E3F2FD;
    color: #1565C0;
}

.apartment-selector {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.apartment-option {
    flex: 1;
    min-width: 140px;
    padding: 16px 24px;
    border: 2px solid var(--color-divider);
    border-radius: 12px;
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.apartment-option:hover {
    border-color: var(--color-gold);
}
.apartment-option.selected {
    border-color: var(--color-gold);
    background: var(--color-champagne);
    box-shadow: 0 2px 12px rgba(187, 170, 164, 0.3);
}

.booking-summary {
    background: var(--color-champagne);
    border-radius: 16px;
    padding: 24px;
}

/* --- AGB / PRIVACY PAGE --- */
.agb-section,
.privacy-section,
.legal-section {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-gold);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 12px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.toc-link {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--color-text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}
.toc-link:hover,
.toc-link.active {
    background: var(--color-champagne);
    color: var(--color-gold);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(187, 170, 164, 0.15), rgba(187, 170, 164, 0.08));
    border-left: 4px solid var(--color-gold);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
}

/* --- FAQ PAGE --- */
.category-link {
    display: block;
    padding: 12px 20px;
    border-radius: 10px;
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.category-link:hover,
.category-link.active {
    background: var(--color-champagne);
    color: var(--color-gold);
}

.category-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gold);
}

.category-section {
    margin-bottom: 48px;
}

.faq-item {
    background: var(--color-white);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: rgba(187, 170, 164, 0.1);
}

/* --- IMPRESSUM PAGE --- */
.info-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.info-card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-champagne);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.info-card-icon i {
    font-size: 24px;
    color: var(--color-gold);
}

/* --- INDEX PAGE --- */
.usp-card {
    transition: all 0.3s ease;
}
.usp-card:hover {
    transform: translateY(-5px);
}
.usp-card:hover .usp-icon {
    transform: scale(1.1);
}
.usp-icon {
    transition: all 0.3s ease;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.feature-list li:last-child {
    border-bottom: none;
}

/* --- KONTAKT PAGE --- */
.contact-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.contact-icon i {
    font-size: 28px;
    color: white;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--color-divider);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--color-white);
}
.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(187, 170, 164, 0.15);
}

.bounce-icon {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- RULES PAGE --- */
.rule-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.rule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.rule-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.rule-icon.green { background: #E8F5E9; color: #2E7D32; }
.rule-icon.red { background: #FFEBEE; color: #C62828; }
.rule-icon.blue { background: #E3F2FD; color: #1565C0; }
.rule-icon.orange { background: #FFF3E0; color: #E65100; }
.rule-icon.purple { background: #F3E5F5; color: #7B1FA2; }
.rule-icon.gold { background: var(--color-champagne); color: var(--color-gold); }

.time-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.time-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.time-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.do-list li,
.dont-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-divider);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.do-list li:last-child,
.dont-list li:last-child {
    border-bottom: none;
}

.notice-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.08));
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 12px;
    padding: 20px 24px;
}

/* --- SERVICE PAGE --- */
.service-section {
    padding: 80px 0;
}

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-champagne);
    color: var(--color-gold);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-white);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ============================================
   21. PRINT STYLES
   ============================================ */

/* Hero sections for subpages: show full 1920x600 image without cropping */
.hero-subpage {
    position: relative;
    width: 100%;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-subpage .hero-img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-subpage .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-subpage .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-subpage {
        min-height: 250px;
    }
    .hero-subpage .hero-img {
        min-height: 250px;
        object-fit: cover;
    }
}

@media print {
    #header, #footer, .chat-widget, .mobile-menu, .mobile-menu-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
    }
    
    html::before {
        display: none;
    }
}

/* ============================================
   REVIEW SLIDER
   ============================================ */
.review-slider {
    overflow: hidden;
    position: relative;
}

.review-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
    min-width: 50%;
    padding: 0 12px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .review-slide {
        min-width: 100%;
    }
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-nav:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.review-prev {
    left: -24px;
}

.review-next {
    right: -24px;
}

@media (max-width: 768px) {
    .review-prev { left: -8px; }
    .review-next { right: -8px; }
    .review-nav { width: 40px; height: 40px; }
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-divider);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.review-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

.review-dot:hover {
    background: var(--color-gold);
}
