/* ============================================================
   1. ALAPBEALLITASOK (VALTOZOK & RESET)
   ============================================================ */
:root {
    --primary-color: #C17F24;
    --primary-hover: #D4922F;
    --primary-gradient: linear-gradient(135deg, #C17F24 0%, #E5A84B 100%);
    --navbar-bg: #FFFFFF;
    --text-white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-muted: #A0A0A0;
    --text-dark: #1A1A1A;
    --bg-dark: #0A0B0A;
    --bg-section: #111211;
    --card-bg: #181A19;
    --card-hover: #1E2120;
    --accent-gold: #C17F24;
    --accent-light: rgba(193, 127, 36, 0.15);
    --font-main: 'Lora', serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 30px rgba(193, 127, 36, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================================
   2. NAVBAR - FEHÉR, STICKY FEJLÉC
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #ffffff !important;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    border: none !important;
}

.logo img {
    height: 34px;
    width: auto;
    display: block;
    margin-bottom: 3px;
    transition: transform 0.3s;
}

.slogan {
    font-family: var(--font-main);
    font-size: 11px;
    color: #000000 !important;
    text-decoration: none !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    line-height: 1;
}

.logo a:hover img {
    transform: scale(1.05);
}

.logo a:hover .slogan {
    color: #000000 !important;
}

/* ============================================================
   2b. HAMBURGER MENU
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10003;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* MENU LISTA */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000000 !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color) !important;
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
    margin-top: 5px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* TELEFON GOMB */
a.btn-phone {
    background: var(--primary-gradient);
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(193, 127, 36, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a.btn-phone::after {
    display: none;
}

a.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 127, 36, 0.45);
    color: #ffffff !important;
}

/* NYELV VALASZTO */
.lang-selector {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    color: #000;
    transition: var(--transition-smooth);
    font-family: var(--font-main);
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ============================================================
   3. HERO SECTION - VIDEO HATTER
   ============================================================ */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Slider fallback */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 15s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

@keyframes slideShow {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; transform: scale(1.05); }
    43% { opacity: 0; }
    100% { opacity: 0; }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* ============================================================
   4. HERO TARTALOM
   ============================================================ */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-top: 50px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    font-weight: 400;
    color: #ffffff;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 18px 50px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(193, 127, 36, 0.35);
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.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 ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(193, 127, 36, 0.45);
}

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

/* ============================================================
   5. ANIMACIOK
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animaciok */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   6. SZEKCIO STILUSOK
   ============================================================ */
.section-padding {
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.compact-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

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

.premium-divider {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    font-family: serif;
    width: 100%;
    text-align: center;
}

.premium-divider::before,
.premium-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.premium-divider::before { right: 52%; margin-right: 15px; }
.premium-divider::after { left: 52%; margin-left: 15px; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* ============================================================
   6b. TRUST STRIP
   ============================================================ */
.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #0A0B0A 0%, #141614 100%);
    border-bottom: 1px solid rgba(193, 127, 36, 0.2);
    flex-wrap: wrap;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-strip-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .trust-strip {
        gap: 20px;
        padding: 15px 10px;
    }

    .trust-strip-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .trust-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: center;
    }

    .trust-strip-item {
        flex-direction: column;
        gap: 5px;
    }
}

/* ============================================================
   7. PROPERTY KARTYAK
   ============================================================ */
.cazari-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.property-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.property-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(193, 127, 36, 0.3) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.property-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-elevated), var(--shadow-glow);
}

.property-card:hover::before {
    opacity: 1;
}

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

.card-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

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

.card-content {
    padding: 30px;
    text-align: center;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--text-white);
}

.location {
    color: #999;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.desc {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #ccc;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 127, 36, 0.3);
}

/* ============================================================
   8. FOOTER - MODERN PREMIUM DESIGN
   ============================================================ */
footer {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    color: #1A1A1A;
    padding: 80px 20px 30px 20px;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 2px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #000000;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }

.footer-col ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #333;
}

.email-label { margin-top: 25px; }

.contact-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-hover);
    transform: translateX(3px);
}

.social-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: auto;
    margin-top: 0;
}

.social-col .social-icons-wrapper {
    display: flex;
    gap: 15px;
}

.bw-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f0f0;
    transition: all 0.4s ease;
}

.bw-icon svg {
    width: 28px;
    height: 28px;
    filter: grayscale(100%) brightness(0.5);
    transition: all 0.4s ease;
}

.bw-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.3);
}

.bw-icon:hover svg {
    filter: grayscale(0%) brightness(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #999;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Footer responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

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

    .social-col {
        grid-column: span 2;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li a:hover {
        transform: none;
    }

    .social-col {
        grid-column: span 1;
        justify-content: center;
    }
}

/* ============================================================
   9. PAGE LAYOUTS (ALOLDALAK)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 140px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.page-header p {
    color: #888;
    font-size: 1.1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-content h2 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.page-content p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul {
    color: #ccc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-content ul li {
    margin-bottom: 10px;
}

/* ============================================================
   10. LOCATION PAGES
   ============================================================ */
.location-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.location-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.location-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
}

.location-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.location-details {
    max-width: 1250px;
    margin: 0 auto;
    padding: 60px 40px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.location-info h2 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.location-info p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.amenities-list li {
    color: #ccc;
    padding-left: 25px;
    position: relative;
}

.amenities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.booking-widget {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255,255,255,0.08);
}

.booking-widget-header {
    margin-bottom: 15px;
}

.booking-widget-header h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.booking-widget-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.booking-widget h3 {
    color: var(--text-white);
    margin-bottom: 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 30px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.back-link:hover {
    color: var(--primary-hover);
    transform: translateX(-5px);
}

/* Location Gallery */
.location-gallery {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 0;
}

.gallery-placeholder {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
}

.gallery-placeholder .gallery-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    opacity: 0.7;
}

.gallery-placeholder h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-placeholder p {
    color: #888;
    font-size: 0.95rem;
}

/* Location Highlight Box */
.location-highlight {
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.15) 0%, rgba(211, 84, 0, 0.08) 100%);
    border: 1px solid rgba(211, 84, 0, 0.3);
    border-radius: 10px;
    padding: 20px 25px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-highlight .highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-highlight p {
    margin: 0;
    color: #ddd;
    line-height: 1.6;
}

.location-highlight strong {
    color: var(--primary-color);
}

/* Nearby List */
.nearby-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.nearby-list li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nearby-list li:last-child {
    border-bottom: none;
}

/* Coffee Mention */
.coffee-mention {
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.25) 0%, rgba(139, 90, 43, 0.1) 100%);
    border-radius: 16px;
    padding: 25px 30px;
    margin-top: 30px;
    border: 1px solid rgba(139, 90, 43, 0.3);
    transition: var(--transition-smooth);
}

.coffee-mention:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 90, 43, 0.2);
}

.coffee-mention-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.coffee-mention .coffee-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.coffee-mention .coffee-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.coffee-mention p {
    margin: 0 0 15px 0;
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

.coffee-mention p:last-child {
    margin-bottom: 0;
}

.coffee-mention a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.coffee-mention a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.coffee-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.coffee-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.coffee-btn-primary:hover {
    background: var(--primary-hover);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.coffee-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coffee-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
}

/* Booking Trust Badges */
.booking-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(193, 127, 36, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(193, 127, 36, 0.15);
}

.booking-badge {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 500;
}

.booking-badge::first-letter {
    color: var(--accent-gold);
}

/* Local SEO Citations */
.local-citations {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.local-citations-title {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.citation-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.citation-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    color: #aaa;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.citation-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
}

.citation-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.citation-link.airbnb:hover { color: #FF5A5F; border-color: rgba(255, 90, 95, 0.3); }
.citation-link.booking:hover { color: #003580; border-color: rgba(0, 53, 128, 0.3); background: rgba(0, 53, 128, 0.1); }
.citation-link.google:hover { color: #4285F4; border-color: rgba(66, 133, 244, 0.3); }
.citation-link.facebook:hover { color: #1877F2; border-color: rgba(24, 119, 242, 0.3); }

/* Quick Info */
.quick-info {
    margin-top: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: #aaa;
    font-size: 0.85rem;
}

.info-item .info-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============================================================
   10b. BOOKING CALENDAR SECTION (Full Width)
   ============================================================ */
.booking-calendar-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.booking-calendar-section .section-header {
    margin-bottom: 40px;
}

.booking-calendar-section .section-header h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.booking-calendar-section .section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.booking-calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-elevated);
}

.booking-calendar-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}

.booking-calendar-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-calendar-cta .btn-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .booking-calendar-section {
        padding: 60px 20px;
    }

    .booking-calendar-section .section-header h2 {
        font-size: 1.6rem;
    }

    .booking-calendar-container {
        padding: 20px;
    }

    .booking-calendar-container iframe {
        height: 380px;
    }
}

/* ============================================================
   11. CONTACT FORM
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-main);
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

/* ============================================================
   12. FAQ ACCORDION
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

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

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

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

.faq-answer-content {
    padding: 0 25px 20px;
    color: #ccc;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ============================================================
   13. MAP SECTION
   ============================================================ */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #888;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.location-card h3 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.location-card p {
    color: #888;
    font-size: 0.9rem;
}

/* ============================================================
   14. VOUCHER PAGE
   ============================================================ */
.voucher-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
    padding: 140px 20px 80px;
    text-align: center;
}

.voucher-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.voucher-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

/* ============================================================
   14b. HOMEPAGE ABOUT SECTION WITH TRUST ICONS
   ============================================================ */
.about-home-section {
    background: linear-gradient(135deg, #0A0B0A 0%, #141614 50%, #1A1C1A 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.6;
}

.about-home-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-home-content {
    color: #fff;
}

.about-home-content .section-title {
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-home-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.about-home-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 50px;
}

.trust-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(193, 127, 36, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.trust-item:hover {
    background: rgba(193, 127, 36, 0.08);
    transform: translateY(-8px);
    border-color: rgba(193, 127, 36, 0.3);
    box-shadow: 0 15px 40px rgba(193, 127, 36, 0.15);
}

.trust-item:hover::before {
    transform: scaleX(1);
}

.trust-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
}

.trust-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.trust-item:hover .trust-label {
    color: var(--accent-gold);
}

.trust-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.btn-secondary-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ============================================================
   14c. ACTIVITIES PAGE STYLES
   ============================================================ */
.activities-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.activity-category {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.category-icon {
    font-size: 2rem;
}

.category-header h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.activity-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.activity-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.activity-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.activity-distance {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(196, 164, 132, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.activity-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-link:hover {
    text-decoration: underline;
}

/* ============================================================
   15. RESPONSIVE - MOBILE MENU FIX v14
   ============================================================ */
@media (max-width: 900px) {
    .navbar {
        height: auto;
        padding: 15px 20px;
        position: fixed;
        z-index: 10000;
    }

    /* Logo 30% kisebb mobilon */
    .logo img {
        height: 24px;
    }

    .logo .slogan {
        font-size: 0.55rem;
    }

    /* Hamburger gomb - legfelül */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 10003;
    }

    /* Mobil menü panel - FEHÉR HÁTTÉR KÉNYSZERÍTVE */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        flex-direction: column !important;
        padding: 90px 0 100px !important;
        gap: 0 !important;
        align-items: stretch !important;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3) !important;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 99999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        opacity: 1 !important;
    }

    .nav-links.active {
        right: 0 !important;
    }

    /* Menü elemek */
    .nav-links li {
        width: 100%;
        list-style: none;
        display: block;
    }

    /* Menü linkek - NAGY ÉRINTÉSI TERÜLET */
    .nav-links li a {
        display: block;
        padding: 22px 30px;
        font-size: 1.1rem;
        color: #222 !important;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: background 0.15s ease;
        -webkit-tap-highlight-color: rgba(193, 127, 36, 0.15);
        touch-action: manipulation;
        cursor: pointer;
    }

    .nav-links li a::after {
        display: none !important;
    }

    .nav-links li a:hover,
    .nav-links li a:active,
    .nav-links li a:focus {
        background: #f0f0f0;
        color: var(--primary-color) !important;
    }

    /* Telefon gomb */
    .nav-links li a.btn-phone {
        background: var(--primary-color);
        color: #fff !important;
        margin: 20px 25px;
        padding: 18px 25px;
        border-radius: 10px;
        text-align: center;
        border-bottom: none;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(193, 127, 36, 0.25);
    }

    .nav-links li a.btn-phone:hover,
    .nav-links li a.btn-phone:active {
        background: #d4922f;
        color: #fff !important;
    }

    /* NYELVVÁLTÓ - fix alul */
    .nav-links li.lang-selector {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 18px 15px;
        background: #f5f5f5;
        border-top: 1px solid #ddd;
        z-index: 10004;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active ~ .lang-selector,
    .nav-links.active li.lang-selector {
        transform: translateX(0);
    }

    .lang-selector .lang-btn {
        padding: 14px 18px;
        min-width: 50px;
        font-size: 0.9rem;
        font-weight: 700;
        text-align: center;
        border: 2px solid #ccc;
        border-radius: 8px;
        color: #333;
        background: #fff;
        text-decoration: none;
        transition: all 0.15s ease;
        -webkit-tap-highlight-color: rgba(193, 127, 36, 0.2);
        touch-action: manipulation;
        cursor: pointer;
    }

    .lang-selector .lang-btn:hover,
    .lang-selector .lang-btn:active {
        background: #e8e8e8;
        border-color: #aaa;
    }

    .lang-selector .lang-btn.active {
        background: var(--primary-color);
        color: #fff;
        border-color: var(--primary-color);
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-top: 60px;
    }

    .section-padding {
        padding: 40px 15px;
    }

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

    .trust-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .about-home-section {
        padding: 60px 20px;
    }

    .about-home-text {
        font-size: 1rem;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .activity-card {
        padding: 25px 20px;
    }

    .footer-container {
        gap: 40px;
        flex-direction: column;
    }

    .premium-divider::before,
    .premium-divider::after {
        width: 30px;
    }

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

    .location-hero {
        height: 50vh;
    }

    .location-hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-primary {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .card-image {
        height: 220px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .location-hero-content h1 {
        font-size: 2rem;
    }

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

    .trust-icons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile menu overlay - BELOW everything */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999 !important;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ============================================================
   16. PREMIUM LANDING PAGE STYLES
   ============================================================ */

/* Premium Page Hero with Background Image */
.premium-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 17, 16, 0.85) 0%, rgba(30, 33, 32, 0.7) 100%);
}

.premium-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.premium-hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease-out;
}

.premium-hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    animation: fadeInUp 1s ease-out;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252a28 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 30px rgba(193, 127, 36, 0.1);
    border-color: rgba(193, 127, 36, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #999;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Premium Section */
.premium-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-section.with-bg {
    background: linear-gradient(135deg, var(--card-bg) 0%, #1a1d1c 100%);
    max-width: 100%;
    padding: 80px 20px;
}

.premium-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 40px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(193, 127, 36, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(193, 127, 36, 0.05);
    border-color: rgba(193, 127, 36, 0.25);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-content h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.value-item:hover .value-content h4 {
    color: var(--accent-gold);
}

.value-content p {
    color: #999;
    line-height: 1.7;
}

/* Premium Contact Cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252a28 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary-color);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--primary-hover);
}

.contact-card p {
    color: #888;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Premium Form Styling */
.premium-form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-contact-form {
    background: linear-gradient(135deg, var(--card-bg) 0%, #1a1d1c 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.premium-contact-form h2 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.premium-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-contact-info h2 {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Location Map Section */
.map-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    margin-bottom: 60px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.locations-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.location-premium-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, #252a28 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.location-premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.location-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.location-premium-card:hover::after {
    transform: scaleX(1);
}

.location-premium-card h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.location-premium-card .location-area {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.location-premium-card p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.location-premium-card .card-link-inline {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.location-premium-card .card-link-inline:hover {
    color: var(--primary-hover);
}

/* Transport Info */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.transport-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.transport-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.transport-item h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.transport-item p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0A0B0A 0%, #181A19 50%, #1A1C1A 100%);
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.cta-banner h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    font-size: 1.15rem;
}

.cta-banner .btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 16px 45px;
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(193, 127, 36, 0.4);
}

/* Premium Responsive */
@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {
    .premium-hero {
        height: 50vh;
        background-attachment: scroll;
    }

    .premium-hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .premium-form-wrapper {
        grid-template-columns: 1fr;
    }

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

    .locations-premium-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .premium-hero-content h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .premium-contact-form {
        padding: 30px 20px;
    }
}
