/* ===== MAIN STYLES ===== */

/* ===== HEADER / NAVIGATION ===== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    min-height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-decoration: none;
    order: 0;
}

.logo-img {
    width: 168px;
    height: 48px;
    object-fit: contain;
}

.nav-menu {
    display: none;
    flex-direction: column;
    gap: var(--spacing-sm);
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    min-width: 250px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-xl);
    order: 1;
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    padding: var(--spacing-md) var(--spacing-md);
    color: var(--color-text-light);
    transition: color var(--transition-base);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-divider {
    height: 1px;
    background-color: var(--color-border);
    margin: var(--spacing-sm) 0;
    list-style: none;
}

.lang-menu {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.lang-link {
    color: var(--color-text-light);
    transition: all var(--transition-base);
    text-decoration: none;
    font-size: 0.98rem;
    padding: var(--spacing-xs) var(--spacing-xs);
    position: relative;
}

.lang-link:hover {
    color: var(--color-primary);
}

.lang-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

.lang-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: var(--spacing-xs);
    right: var(--spacing-xs);
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 1px;
    z-index: 1002;
}

.lang-separator {
    color: var(--color-text-muted);
    padding: 0 var(--spacing-xs);
}

/* Dropdown parannukset */
.dropdown {
    position: relative;
}

@media (min-width: 768px) {
    .dropdown {
        padding-bottom: 20px; /* Bridge to the menu */
        margin-bottom: -20px;
    }
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: transform var(--transition-base);
    opacity: 0.7;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-width: 240px;
    padding: var(--spacing-sm) 0;
    margin-top: 0;
    list-style: none;
    z-index: 1001;
    box-shadow: var(--shadow-2xl);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--color-text-light);
    text-decoration: none;
    display: block;
    transition: all var(--transition-base);
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

@media (max-width: 767px) {
    .nav-menu {
        left: 0;
        right: 0;
        width: 100%;
        min-width: 0;
        border-radius: 0;
        padding: var(--spacing-lg) var(--spacing-md);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .hamburger {
        width: 56px;
        height: 56px;
        gap: 8px;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }

    .dropdown {
        position: static;
    }

    .dropdown > a {
        background: rgba(212, 175, 55, 0.05);
        border-radius: var(--radius-md);
        margin-bottom: var(--spacing-xs);
        font-weight: 700;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    .dropdown-menu {
        display: flex;
        position: static;
        left: auto;
        top: auto;
        transform: none;
        margin-top: 0;
        min-width: 100%;
        padding: 0 0 0 var(--spacing-lg);
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .dropdown-menu a {
        padding: var(--spacing-sm) var(--spacing-md);
        color: var(--color-text-light-secondary);
        border-left: 1px solid var(--color-border);
    }

    .dropdown-menu a:hover {
        background-color: transparent;
        color: var(--color-primary);
    }
}

.lang-switcher {
    display: flex;
    gap: var(--spacing-xs);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        gap: var(--spacing-lg);
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        margin-left: auto;
        align-items: center;
    }
    
    .nav-menu > li > a {
        padding: calc(var(--spacing-sm) + 2px) 0;
        font-size: 1rem;
        display: flex;
        align-items: center;
    }
    
    .nav-divider {
        display: none;
    }
    
    .lang-menu {
        gap: var(--spacing-md);
        border-left: 1px solid var(--color-border);
        padding-left: var(--spacing-md);
        margin-left: auto;
        align-items: center;
    }
    
    .lang-link {
        padding: var(--spacing-sm) var(--spacing-xs);
        padding-bottom: var(--spacing-xs);
        font-size: 1rem;
    }
    
    .navbar {
        padding: var(--spacing-lg);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/img/Bar_Checkout_Hero.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    filter: blur(4px) brightness(0.56) saturate(0.86);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.62) 72%, rgba(0, 0, 0, 0.95) 100%),
        radial-gradient(circle at 15% 25%, rgba(26, 77, 77, 0.42) 0%, rgba(26, 77, 77, 0) 46%),
        radial-gradient(circle at 82% 78%, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 44%),
        linear-gradient(180deg, rgba(6, 6, 6, 0.86) 0%, rgba(8, 8, 8, 0.62) 48%, rgba(5, 5, 5, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: var(--spacing-lg);
    max-width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--color-text-light-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 100%;
}

.hero .btn-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
    .hero .btn-group {
        flex-direction: row;
    }
    
    .hero-content {
        max-width: 90%;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(212, 175, 55, 0.6);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(88%) sepia(57%) saturate(1500%) hue-rotate(2deg);
    animation: scroll-movement 2s infinite;
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.scroll-indicator:hover .scroll-arrow {
    opacity: 1;
}

@keyframes scroll-movement {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ===== STATS SECTION ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(212, 175, 55, 0.05);
    background-image: url('../../media/img/stats-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-lg);
    }
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    border: 1px solid rgba(245, 245, 220, 0.18);
    border-radius: var(--radius-md);
    background: linear-gradient(140deg, rgba(245, 245, 220, 0.12) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(9px) saturate(130%);
    -webkit-backdrop-filter: blur(9px) saturate(130%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FEATURE CARDS ===== */
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.features-wide {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.offers-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #06080c;
}

.offers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 36%),
        radial-gradient(circle at 82% 28%, rgba(56, 118, 150, 0.24) 0%, rgba(56, 118, 150, 0) 44%),
        linear-gradient(140deg, rgba(16, 24, 32, 0.74) 0%, rgba(8, 10, 12, 0.95) 58%, rgba(6, 8, 12, 0.96) 100%);
    z-index: -2;
}

.offers-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.16) 40%, rgba(0, 0, 0, 0.44) 100%);
    z-index: -1;
}

.offers-section .container {
    position: relative;
    z-index: 1;
}

.offers-section .offer-tile {
    border-radius: 12px;
    overflow: hidden;
}

.offers-section .feature-card {
    border-radius: 12px;
    overflow: hidden;
    background-clip: padding-box;
    transform: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.offers-section .offer-tile:hover .feature-card,
.offers-section .feature-card:hover {
    transform: none;
    border-color: rgba(212, 175, 55, 0.58);
    background: rgba(245, 245, 220, 0.14) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.vibe-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    margin-top: -72px;
    padding-top: calc(var(--spacing-3xl) + 72px);
}

.vibe-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../media/img/k+�velykatu_terassi_kuvituskuva.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    filter: blur(4px) brightness(0.8) saturate(1.15);
    z-index: -2;
}

.vibe-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.78) 18%, rgba(0, 0, 0, 0.42) 36%, rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0) 66%),
        radial-gradient(circle at 18% 22%, rgba(35, 110, 110, 0.42) 0%, rgba(35, 110, 110, 0) 46%),
        radial-gradient(circle at 84% 76%, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 44%),
        linear-gradient(180deg, rgba(8, 10, 14, 0) 0%, rgba(8, 14, 16, 0.72) 18%, rgba(8, 10, 14, 0.74) 55%, rgba(10, 10, 10, 0.88) 100%);
    z-index: -1;
}

.vibe-section .container {
    position: relative;
    z-index: 1;
}

.vibe-section .feature-card {
    background: linear-gradient(145deg, rgba(245, 245, 220, 0.2) 0%, rgba(212, 175, 55, 0.14) 36%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(245, 245, 220, 0.28);
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 14px 36px rgba(0, 0, 0, 0.32);
}

.vibe-section .feature-card:hover {
    background: linear-gradient(145deg, rgba(245, 245, 220, 0.24) 0%, rgba(212, 175, 55, 0.2) 36%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.75);
}

@media (min-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.feature-card {
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(140deg, rgba(245, 245, 220, 0.12) 0%, rgba(212, 175, 55, 0.08) 35%, rgba(255, 255, 255, 0.03) 100%);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.22);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    border-color: var(--color-primary);
    background: linear-gradient(140deg, rgba(245, 245, 220, 0.16) 0%, rgba(212, 175, 55, 0.14) 35%, rgba(255, 255, 255, 0.06) 100%);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

.feature-icon .icon-gold {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(80%) sepia(48%) saturate(650%) hue-rotate(355deg) brightness(95%) contrast(92%);
    opacity: 0.95;
}

.feature-card h3 {
    font-size: var(--font-size-h4);
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.feature-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ===== GALLERY ===== */
.gallery-shell {
    position: relative;
}

.gallery-shell.is-coming-soon {
    pointer-events: none;
}

.gallery-shell .gallery {
    overflow: hidden;
}

.gallery-coming-soon-section {
    position: relative;
    overflow: hidden;
}

.gallery-coming-soon-section::after {
    content: attr(data-overlay-text);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 4;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 3rem);
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    background: rgba(8, 8, 8, 0.72);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

.gallery-coming-soon-section .container {
    position: relative;
    z-index: 1;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: stretch;
}

.gallery::after {
    content: '';
    display: block;
    flex-grow: 10;
}

.gallery-item {
    position: relative;
    flex: 1 1 320px;
    min-width: 300px;
    height: clamp(150px, 16vw, 230px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #2d4a4a 0%, #1a3a3a 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 30px rgba(0, 0, 0, 0.24);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.gallery-item--tall {
    height: clamp(190px, 21vw, 300px);
}

.gallery-item--taller {
    height: clamp(230px, 24vw, 360px);
}

.gallery-item--wide {
    flex-grow: 1.8;
}

@media (max-width: 1024px) {
    .gallery-item {
        min-width: 240px;
        flex-basis: 260px;
    }
}

@media (max-width: 639px) {
    .gallery-item {
        min-width: 100%;
        flex-basis: 100%;
    }
}

/* ===== FAQ ===== */
.faq-section {
    position: relative;
}

.faq-wrap {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: var(--spacing-md);
}

.faq-accordion {
    display: grid;
    gap: var(--spacing-md);
}

.faq-accordion details,
.faq-list .faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(140deg, rgba(245, 245, 220, 0.12) 0%, rgba(212, 175, 55, 0.08) 38%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-accordion summary {
    cursor: pointer;
    list-style: none;
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    color: var(--color-text-light);
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    content: '+';
    float: right;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 700;
}

.faq-accordion details[open] summary::after {
    content: '-';
}

.faq-accordion p,
.faq-list .faq-item p {
    margin: 0;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--color-text-light-secondary);
    line-height: var(--line-height-relaxed);
}

.faq-list {
    display: grid;
    gap: var(--spacing-md);
}

.faq-list .faq-item h3 {
    margin: 0;
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-sm);
    color: var(--color-text-light);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.faq-topics {
    display: grid;
    gap: var(--spacing-md);
}

.faq-topics .faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(140deg, rgba(245, 245, 220, 0.12) 0%, rgba(212, 175, 55, 0.08) 38%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px) saturate(130%);
    -webkit-backdrop-filter: blur(10px) saturate(130%);
}

.faq-topics .faq-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.faq-topics .faq-item p {
    margin: 0;
    color: var(--color-text-light-secondary);
}

/* ===== PRICING SECTION ===== */
.pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing {
        grid-template-columns: repeat(3, 1fr);
    }
}

.price-card {
    padding: var(--spacing-2xl) var(--spacing-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: linear-gradient(140deg, rgba(245, 245, 220, 0.12) 0%, rgba(212, 175, 55, 0.08) 38%, rgba(255, 255, 255, 0.03) 100%);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    backdrop-filter: blur(11px) saturate(130%);
    -webkit-backdrop-filter: blur(11px) saturate(130%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 26px rgba(0, 0, 0, 0.24);
}

.price-card.featured {
    transform: scale(1.05);
    border-color: var(--color-primary);
    background: linear-gradient(140deg, rgba(245, 245, 220, 0.18) 0%, rgba(212, 175, 55, 0.16) 38%, rgba(255, 255, 255, 0.07) 100%);
}

.price-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-bg-dark);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-tag {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.price-currency {
    font-size: 1.5rem;
}

.price-period {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    text-transform: lowercase;
}

.price-features {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.price-features li {
    list-style: none;
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.price-features li:before {
    content: "ԣ�";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    padding-bottom: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-image: url('../../media/img/gallery-placeholder.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(245, 245, 220, 0.2);
    background-color: rgba(245, 245, 220, 0.06);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--color-bg-dark-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-3xl) var(--spacing-lg);
    margin-top: var(--spacing-3xl);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

.footer-section h3 {
    font-size: var(--font-size-h4);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.footer-section a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    max-width: 900px;
}

.contact-form-wrap {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

.contact-form-modern {
    display: grid;
    gap: var(--spacing-sm);
}

.contact-form-modern label {
    font-weight: 700;
    color: var(--color-text-light);
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.3);
    color: var(--color-text-light);
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-body);
}

.contact-form-modern textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.hp-field {
    display: none;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 640px) {
    .hero {
        height: auto;
        min-height: 500px;
        padding: var(--spacing-xl) 0;
    }
    
    .section {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .hero p {
        margin-bottom: var(--spacing-lg);
    }
}

