/*
* Hannas Trafikskola - Premium Redesign
* 2024 Design System
*/

:root {
    /* --- Palette --- */
    --primary-dark: #1F102B;
    /* Deepest Violet */
    --primary-base: #2E1C3C;
    /* Core Brand Color */
    --primary-light: #5A3E70;
    /* Lighter Violet */

    --accent-gold: #FFD24C;
    /* Premium Gold */
    --accent-gold-hover: #E5BD44;

    --surface-light: #FFFFFF;
    --surface-off-white: #F9F7FC;
    --surface-glass: rgba(255, 255, 255, 0.7);
    --surface-glass-dark: rgba(31, 16, 43, 0.85);

    --text-main: #1A1523;
    --text-muted: #6B6575;
    --text-on-dark: #FFFFFF;
    --text-on-dark-muted: rgba(255, 255, 255, 0.7);

    /* --- Typography --- */
    --font-main: 'Sora', sans-serif;

    /* --- Spacing & Layout --- */
    --container-width: 1280px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* --- Effects --- */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 32px rgba(31, 16, 43, 0.08);
    --shadow-lg: 0 24px 60px rgba(31, 16, 43, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 210, 76, 0.3);

    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--surface-off-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: var(--transition-fast);
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Typography Utilities --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
    display: inline-block;
}

p {
    margin-bottom: 1.5rem;
}

p.description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 60ch;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

/* --- Components: Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #FFC000);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 210, 76, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 210, 76, 0.5);
    background: #FFC000;
}

.btn-secondary {
    background: var(--surface-light);
    color: var(--primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--surface-off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-on-dark);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFF;
}

.btn-soft {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #FFF;
}

.btn-soft:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* --- Header --- */
.main-header {
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(31, 16, 43, 0.85);
    /* Dark fallback */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: rgba(31, 16, 43, 0.95);
    height: 70px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.main-header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-on-dark-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-gold);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* --- Professional Mobile Menu --- */
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
        z-index: 2000;
        position: relative;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 5, 25, 0.98);
        /* Deep Purple */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .main-nav li {
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .main-nav.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Animation */
    .main-nav.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-nav.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .main-nav.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .main-nav.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .main-nav a {
        font-size: 2rem;
        font-weight: 800;
        color: #FFF;
        text-transform: uppercase;
        letter-spacing: -1px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--accent-gold);
    }

    .main-nav a::after {
        display: none;
        /* No underline on mobile */
    }

    /* Show 'Boka Nu' in Header Mobile */
    .header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .header-right .btn {
        display: inline-flex;
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
        height: auto;
        min-height: 0;
    }
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 40px);
}

/* Animated gradient background */
.contact-hero::before,
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #5A3E70 0%, #1F102B 60%);
    opacity: 0.4;
    animation: pulseGradient 15s ease infinite alternate;
    z-index: 0;
}

@keyframes pulseGradient {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.contact-hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero-text {
    color: var(--text-on-dark);
}

.contact-hero-text h1 {
    color: #FFF;
    margin-bottom: 1.5rem;
}

.contact-hero-text .description {
    color: var(--text-on-dark-muted);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-checklist .check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero-checklist .check-item i {
    color: var(--accent-gold);
}

.contact-hero-inner {
    position: relative;
}

.hero-card-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.hero-card-media:hover {
    transform: rotate(0) scale(1.02);
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 16, 43, 0.8);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-title {
    color: #FFF;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--accent-gold);
}

/* --- Offer Section --- */
.offer-section {
    margin-top: -80px;
    z-index: 20;
    position: relative;
    padding-top: 0;
}

.offer-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 0;
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.offer-tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    z-index: 2;
}

.offer-content {
    padding: 3rem;
    flex: 1;
}

.offer-icon {
    width: 25%;
    background: var(--surface-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-light);
}

.offer-meta {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin: 1rem 0;
}

.offer-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.offer-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.offer-highlights {
    margin: 1.5rem 0 2rem;
}

.offer-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.offer-highlights i {
    color: var(--accent-gold);
}

.offer-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.offer-contact {
    font-weight: 600;
}

/* --- Stats Bar --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--primary-dark);
    border-radius: var(--radius-md);
    padding: 3rem;
    color: #FFF;
    margin-top: 4rem;
}

.stat {
    text-align: center;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stat h3 {
    font-size: 2.5rem;
    color: #FFF;
    margin: 0;
}

.stat p {
    margin: 0;
    color: var(--text-on-dark-muted);
}

/* --- Services --- */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #FFF;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: var(--surface-off-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-base);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .icon {
    background: var(--primary-base);
    color: var(--accent-gold);
}

.service-card.featured {
    background: var(--primary-base);
    color: #FFF;
}

.service-card.featured h3 {
    color: #FFF;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.featured a {
    color: var(--accent-gold);
}

/* --- Pricing Grid (Featured Courses) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.price-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.price-card .card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 1.5rem;
}

/* --- Video Section --- */
.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 2rem;
    color: var(--primary-base);
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
}

.video-wrapper:hover .video-play-button {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- Footer --- */
.site-footer {
    background: var(--primary-dark);
    color: #FFF;
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* 4 Columns */
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Footer Stack - Professional Refinement */
@media (max-width: 900px) {
    .site-footer {
        padding-top: 4rem;
        /* Slightly less top padding on mobile */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem;
        /* Better separation between sections */
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    /* Logo & Description */
    .footer-logo {
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .footer-logo img {
        height: 150px;
        /* Significantly larger as requested */
        width: auto;
        margin: 0 auto;
    }

    .footer-desc {
        font-size: 1rem;
        /* Readable size */
        color: rgba(255, 255, 255, 0.8);
        max-width: 320px;
        margin: 0 auto 2rem;
        line-height: 1.6;
        text-align: center !important;
        /* Force center alignment */
    }

    /* Headings */
    .footer-col h4 {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
        padding-bottom: 1rem;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--accent-gold);
        border-radius: 2px;
    }

    /* Links & Contact - Cleaner spacing */
    .footer-links,
    .footer-nav {
        /* Added .footer-nav */
        padding: 0 !important;
        padding-inline-start: 0 !important;
        /* Force reset browser defaults */
        margin: 0 !important;
        text-align: center !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none !important;
        /* Ensure no bullets affect spacing */
    }

    .footer-links li,
    .footer-nav li {
        /* Added .footer-nav li */
        margin-bottom: 1.2rem;
        text-align: center !important;
        width: 100%;
        display: flex;
        /* Changed to flex to force center */
        justify-content: center;
    }

    .footer-links a,
    .footer-nav a {
        /* Added .footer-nav a */
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        display: inline-block;
        text-align: center;
    }

    .footer-contact-list li {
        justify-content: center;
        margin-bottom: 1.2rem;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .footer-socials {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-socials a {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        /* Larger touch targets */
        font-size: 1.2rem;
    }

    /* Partner Logos - Elegant Grid */
    /* Partner Logos - Elegant Grid */
    /* Partner Logos - Elegant Grid Mobile Fix */
    .partners-grid.display-logos {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        /* Increased gap */
        align-items: center !important;
        width: 100%;
        margin: 2rem 0;
    }

    .partner-logo {
        width: 100%;
        max-width: 200px;
        /* Constrain container width */
        height: 80px;
        /* Fixed height for consistency */
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        /* Center in flex column */
    }

    .partner-logo img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain;
    }
}

.footer-top-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.footer-top-inner {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.top-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.top-link img {
    height: 20px;
    filter: grayscale(1) brightness(2);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* --- Utilities --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .contact-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-hero-text .eyebrow {
        margin: 0 auto 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-checklist {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .offer-card {
        flex-direction: column;
    }

    .offer-icon {
        width: 100%;
        padding: 2rem;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stat:not(:last-child)::after {
        display: none;
    }

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

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 2rem;
        transform: translateY(-100%);
        transition: var(--transition-smooth);
        z-index: 900;
        opacity: 0;
        pointer-events: none;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Subpage: About & Team --- */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFF;
}

.about-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.media-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.media-note {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(31, 16, 43, 0.9);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-note p {
    color: #FFF;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.media-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.story-section {
    background: #FFF;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.point {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface-off-white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-gold);
}

.point .dot {
    display: none;
}

/* Replaced by border-left */
.point strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.point p {
    margin: 0;
    font-size: 0.95rem;
}

.story-visual .photo-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-visual .photo-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: #FFF;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    z-index: 2;
}

.mini-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.mini-stats .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
}

.mini-stats small {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.about-note-card {
    background: linear-gradient(135deg, var(--surface-light), #F8F5FF);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Values Grid */
.values-section {
    background: var(--surface-light);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #FFF;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.value-icon {
    font-size: 1.5rem;
    color: var(--primary-base);
    background: var(--surface-off-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

/* Process Section Modernized */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.step-card {
    background: #FFF;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 0;
    background: var(--accent-gold);
    transition: height 0.4s ease;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(255, 210, 76, 0.3);
}

.step-card:hover::before {
    height: 100%;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 210, 76, 0.08);
    position: absolute;
    top: -10px;
    right: -5px;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    z-index: 0;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
    z-index: 3;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    z-index: 3;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: #FFF;
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--surface-off-white);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .role {
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.tag-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.team-card .tag {
    background: var(--surface-off-white);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    color: var(--text-muted);
}

/* --- Subpage: Pricing --- */
.resurs-section {
    background: var(--primary-dark);
    color: #FFF;
}

.resurs-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.resurs-content h4 {
    color: #FFF;
    font-size: 1.5rem;
}

.resurs-card img {
    height: 40px;
}

/* Responsive Subpages */
@media (max-width: 992px) {

    .story-grid,
    .process-grid,
    .team-grid,
    .value-grid,
    .resurs-card {
        grid-template-columns: 1fr;
    }

    .story-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .story-visual .photo-card {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: -3rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .resurs-card {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* --- Form Styles --- */
.form-container {
    background: #FFF;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-lead {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

input,
select,
textarea {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--surface-off-white);
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #FFF;
    box-shadow: 0 0 0 3px rgba(255, 210, 76, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.form-submit .btn {
    width: 100%;
}

/* --- Contact Page Layouts --- */
.contact-hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-main {
    background: var(--surface-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.hours-card,
.policy-card {
    background: #FFF;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-header,
.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.hours-header h3,
.policy-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.hours-header .tag,
.policy-header .tag {
    background: var(--surface-off-white);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.hours-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

.policy-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.policy-list strong {
    color: var(--primary-dark);
}

.contact-inline-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.mini-contact-card {
    background: #FFF;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.mini-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-icon {
    width: 48px;
    height: 48px;
    background: var(--surface-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.mini-contact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mini-contact-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.mini-contact-card a {
    color: var(--primary-base);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Map Section */
.contact-map {
    padding-top: 0;
}

.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #FFF;
}

.map-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-desc {
    margin: 0;
    color: var(--text-muted);
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive Forms */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

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

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

    .map-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* --- Modern About Page Styles --- */
.about-hero-modern {
    padding: 140px 0 100px;
    background: radial-gradient(circle at top right, #2E1C3C, #1F102B);
    color: #FFF;
    overflow: hidden;
    position: relative;
}

.about-hero-modern .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.about-hero-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 1.5rem;
    position: relative;
}

.grid-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    grid-row: 1 / 3;
}

.img-2 {
    grid-column: 2;
    grid-row: 2 / 3;
    transform: translateY(20px);
}

.grid-stat-card {
    grid-column: 2;
    grid-row: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Modern Values */
.values-modern {
    background: #FFF;
}

.modern-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.modern-value-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.modern-value-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--surface-off-white);
    color: var(--primary-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition-fast);
}

.modern-value-card:hover .mv-icon {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Modern Story */
.story-modern {
    background: var(--surface-off-white);
}

.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: #FFF;
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.story-badge i {
    color: var(--accent-gold);
    font-size: 2rem;
}

.story-badge span {
    font-weight: 700;
    color: var(--primary-dark);
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--accent-gold);
    background: var(--primary-dark);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern Team */
.team-modern {
    background: #FFF;
}

.modern-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.m-team-card {
    background: var(--surface-off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.m-team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.m-team-img {
    height: 250px;
    overflow: hidden;
}

.m-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.m-team-card:hover .m-team-img img {
    transform: scale(1.05);
}

.m-team-info {
    padding: 2rem;
}

.m-team-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.m-team-info .role {
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.m-team-info .bio {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.team-tags {
    display: flex;
    gap: 0.5rem;
}

.team-tags span {
    background: #FFF;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-base);
}

@media (max-width: 900px) {

    .about-hero-modern .container,
    .story-row,
    .modern-values-grid,
    .modern-team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-hero-image-grid {
        display: none;
    }

    /* Simplify on mobile */
    .story-row {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* Fix for About Hero Heading Color */
.about-hero-content h1 {
    color: #FFFFFF;
}

/* --- Premium Footer --- */
.site-footer {
    background: #170B21;
    /* Darker than primary */
    color: #FFF;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    /* Ensure white logo */
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Rating Badge Styling */
.google-rating-link {
    width: auto !important;
    padding: 0 1.25rem !important;
    border-radius: 30px !important;
}

.rating-badge-container {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.rating-badge-container .fa-star {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 700;
}

.google-rating-link:hover .fa-star {
    color: var(--primary-dark);
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-contact-list a:hover {
    color: #FFF;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.partner-link {
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.partner-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFF;
}

.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: #FFF;
}

.copyright a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--accent-gold);
}

.legal-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- Partner Logos in Footer --- */
.partners-grid.display-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    /* Subtle container background */
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    /* Fixed height for uniformity */
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make logos white */
    opacity: 0.8;
    transition: var(--transition-fast);
}

.partner-logo:hover img {
    opacity: 1;
}

/* Specific adjustments removed */

/* --- Professional Premium Header --- */
.main-header {
    height: 90px;
    /* Taller initial state */
    background: rgba(15, 5, 25, 0.6);
    /* More transparent initially */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(15, 5, 25, 0.95);
    /* Solid on scroll */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header .container {
    max-width: 1300px;
    /* Wider container for header */
}

/* Logo Refinement */
.logo-img {
    height: 55px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.main-header.scrolled .logo-img {
    height: 45px;
}

/* Navigation Links - Premium Hover */
.main-nav ul {
    gap: 3rem;
    align-items: center;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    /* Slightly off-white */
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #FFF;
}

/* Remove old underline and add scale/glow effect */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transition: transform 0.3s ease;
    border-radius: 2px;
    opacity: 0.8;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header Button - Call to Action */
.header-right .btn-primary {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 50px;
    /* Pill shape */
    background: linear-gradient(135deg, var(--accent-gold), #dbac2c);
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 210, 76, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 2rem;
}

.header-right .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 210, 76, 0.5);
    background: #FFF;
    /* Invert on hover for premium feel */
}

/* Mobile Toggle */
.nav-toggle {
    color: #FFF;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: none;
    /* Flex controlled elsewhere */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    /* Button now visible via earlier rules */

}

/* --- Premium Home Hero --- */
.home-hero-premium {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at center, #2E1C3C, #170B21);
    color: #FFF;
    overflow: hidden;
    min-height: 85vh;
    /* Almost full viewport */
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/road.png'), radial-gradient(circle at 80% 20%, rgba(255, 210, 76, 0.15), transparent 40%);
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content-premium {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 210, 76, 0.15);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255, 210, 76, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-hero-premium h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFF, #E0E0E0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-trust-row {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

/* Premium Hero Image Block */
.hero-image-block {
    position: relative;
    height: 500px;
    /* or proportional */
}

.premium-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.premium-img-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.premium-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-dark);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: float 4s ease-in-out infinite;
    max-width: 200px;
}

.card-1 {
    top: 10%;
    left: -30px;
}

.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 2s;
}

.float-icon {
    width: 40px;
    height: 40px;
    background: var(--surface-light);
    color: var(--primary-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Features Grid Premium */
.features-premium {
    background: #FFF;
}

.feature-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-box {
    padding: 2.5rem;
    background: var(--surface-off-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-box:hover {
    background: #FFF;
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.05);
}

.f-icon {
    width: 60px;
    height: 60px;
    background: #FFF;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

/* Services Modern Grid */
.bg-light {
    background: #F9FAFB;
}

.row-header-side {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-modern {
    background: #FFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sc-img {
    height: 220px;
    overflow: hidden;
}

.sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .sc-img img {
    transform: scale(1.05);
}

.sc-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sc-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.sc-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.sc-link {
    font-weight: 600;
    color: var(--primary-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

/* Stats Premium */
.stats-premium {
    padding: 3rem 0;
    background: var(--primary-dark);
    margin-top: -30px;
    /* Overlap effect if wanted, or reuse spacing */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:first-child {
    border-left: none;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-txt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Modern CTA Section */
.cta-section-modern {
    padding: 80px 0;
}

.cta-box-glass {
    background: linear-gradient(135deg, var(--primary-base), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    color: #FFF;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    box-shadow: var(--shadow-xl);
}

.cta-box-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/road.png');
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
}

.cta-decoration .floating-img {
    max-width: 100%;
    transform: rotate(10deg) translateY(20px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@media (max-width: 900px) {

    .hero-content-premium,
    .feature-grid-3,
    .services-grid-modern,
    .cta-box-glass,
    .stats-grid-4 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image-block {
        display: none;
    }

    /* Or simplify */
    .row-header-side {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .stat-item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
    }

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

/* --- Winter Offer Specific Style --- */


.winter-offer-section {
    background: url('driving_background_offer_1775051779952.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.winter-offer-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(31, 16, 43, 0.7), rgba(31, 16, 43, 0.85));
    z-index: 0;
}

.winter-offer-section .container {
    position: relative;
    z-index: 1;
}

.winter-offer-card {
    background: rgba(46, 28, 60, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    display: flex;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
}

.winter-offer-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 210, 76, 0.3);
}

.wo-content {
    flex: 1.3;
    padding: 5rem;
}

.wo-content h2 {
    font-size: 2.8rem;
    color: #FFF;
    margin-bottom: 0.75rem;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.wo-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.wo-amount {
    font-size: 5.5rem;
    font-weight: 950;
    line-height: 1;
    background: linear-gradient(135deg, #FFF 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.wo-currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.wo-desc {
    font-size: 1.25rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 3rem;
    max-width: 580px;
    line-height: 1.8;
}

.wo-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.wo-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.2rem;
    color: #FFF;
    font-weight: 600;
}

.wo-list i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 210, 76, 0.4));
}

.wo-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.wo-phone {
    font-weight: 800;
    color: #FFF;
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 4px;
    transition: var(--transition-smooth);
}

.wo-phone:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.wo-visual {
    flex: 0.7;
    background: rgba(31, 16, 43, 0.4);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.wo-icon i {
    font-size: 13rem;
    color: rgba(255, 210, 76, 0.35);
    transform: rotate(-15deg);
    filter: drop-shadow(0 0 30px rgba(255, 210, 76, 0.25));
    transition: transform 0.8s var(--transition-smooth), color 0.4s ease;
}

.winter-offer-card:hover .wo-icon i {
    transform: rotate(0deg) scale(1.15);
    color: rgba(255, 210, 76, 0.55);
    filter: drop-shadow(0 0 50px rgba(255, 210, 76, 0.4));
}

.wo-badge {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: linear-gradient(135deg, var(--accent-gold), #FFB000);
    color: var(--primary-dark);
    padding: 0.75rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 850;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(255, 210, 76, 0.5);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .wo-content { padding: 4rem; flex: 1.5; }
    .wo-amount { font-size: 4.5rem; }
}

@media (max-width: 900px) {
    .winter-offer-card { flex-direction: column-reverse; } /* Put visual part on TOP */
    .wo-content { padding: 2.5rem 1.5rem; text-align: center; }
    .wo-content h2 { font-size: 2rem; margin-top: 0.5rem; }
    .wo-amount { font-size: 3.8rem; }
    .wo-visual {
        height: 180px; /* Reduced slightly for top header feel */
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* Flat top, angled bottom */
        flex-shrink: 0;
    }
    .wo-price, .wo-actions { justify-content: center; }
    .wo-list { gap: 1rem; margin-bottom: 2.5rem; }
    .wo-list li { font-size: 1rem; }
    .wo-actions { flex-direction: column; align-items: center; gap: 1.2rem; }
    .wo-phone { font-size: 1rem; }
    .wo-badge { top: 1rem; right: 1rem; padding: 0.4rem 1.2rem; font-size: 0.75rem; } /* Slightly tucked in */
    .wo-icon i { font-size: 7.5rem; transform: rotate(-5deg); margin-top: -1rem; } /* Adjusted star position */
}



/* --- Enhanced CTA Image --- */
.premium-cta-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(3deg) scale(1.05);
    /* Dynamic angle */
    transition: transform 0.5s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.cta-box-glass:hover .premium-cta-img {
    transform: rotate(0deg) scale(1.1);
}

/* --- Refined CTA Card (Dark & Dazzling) --- */
.cta-box-glass {
    background: linear-gradient(135deg, #2E1C3C, #120818);
    /* Deep, rich violet */
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    /* Let image pop out if needed */
}

/* Enforce Light Text on Dark Background */
.cta-box-glass h2 {
    color: #FFFFFF !important;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-box-glass p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.25rem;
    font-weight: 300;
}

/* Updated Button for Dark BG */
.cta-btns .btn-primary {
    background: #FFC000;
    color: #1F102B;
    box-shadow: 0 0 20px rgba(255, 192, 0, 0.4);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.cta-btns .btn-primary:hover {
    background: #FFD700;
    box-shadow: 0 0 40px rgba(255, 192, 0, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.cta-btns .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFF;
}

.cta-btns .btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFF;
}

/* Image adjustments */
.premium-cta-img {
    box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.5);
    /* Stronger shadow */
}

/* --- Premium Pricing Page Styles --- */

/* Pricing Hero */
.pricing-hero-premium {
    background: radial-gradient(circle at top right, #2E1C3C, #170B21);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    color: #FFF;
    text-align: center;
}

.pricing-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/road.png') no-repeat center bottom;
    background-size: cover;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.pricing-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFF, #E0E0E0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-hero-content .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Pricing Navigation (Sticky) */
.pricing-nav-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
    /* Below header */
    z-index: 900;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-nav-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-nav-list a {
    color: var(--text-body);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.pricing-nav-list a.active,
.pricing-nav-list a:hover {
    color: var(--primary-base);
}

.pricing-nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
}

/* Modern Pricing Section */
.pricing-section-modern {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-section-modern:last-child {
    border-bottom: none;
}

.pricing-section-modern.bg-alt {
    background: #F9FAFB;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Modern Pricing Cards */
.modern-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.price-card-premium {
    background: #FFF;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(31, 16, 43, 0.1);
    border-color: rgba(31, 16, 43, 0.1);
}

.price-card-premium.featured {
    border: 2px solid var(--accent-gold);
    background: #FFFBF0;
    /* Very subtle gold tint */
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.pc-icon {
    width: 60px;
    height: 60px;
    background: var(--surface-light);
    color: var(--primary-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-card-premium.featured .pc-icon {
    background: #FFD24C;
    color: var(--primary-dark);
}

.pc-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.pc-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.pc-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.pc-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pc-curr {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pc-list li {
    display: flex;
    gap: 0.8rem;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--text-body);
}

.pc-list i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.price-card-premium .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 900px) {
    .pricing-nav-bar {
        display: none;
    }

    /* Simplify on mobile */
    .pricing-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* --- Pricing Section Header Alignment Fix --- */
.section-header-modern .description {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    text-align: center;
}

/* --- Professional About Page --- */

/* --- Professional About Page V2 --- */

/* Modern Split Hero - Enhanced */
.about-hero-split {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top left, #2E1C3C, #0d0612), url('assets/images/pattern-dots.png');
    /* Fallback pattern if exists, main gradient covers it */
    position: relative;
    overflow: hidden;
}

.about-hero-split::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 210, 76, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-hero-text h1 {
    font-size: 4rem;
    /* Larger, bolder */
    color: #FFF;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-hero-text .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.about-hero-visual {
    position: relative;
}

.ah-main-img {
    width: 100%;
    border-radius: 30px;
    /* Softer corners */
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.about-hero-visual:hover .ah-main-img {
    transform: rotate(0deg) scale(1.02);
}

/* Zigzag Story Section - Refined */
.story-section-premium {
    padding: 10rem 0;
    background: #FFF;
    position: relative;
}

.story-row-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 10rem;
}

.story-row-premium:last-child {
    margin-bottom: 0;
}

.story-row-premium.reverse {
    direction: rtl;
}

.story-row-premium.reverse .story-content-p {
    direction: ltr;
}

.story-img-p {
    position: relative;
}

.story-img-p::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--accent-gold);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.story-img-p img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.story-img-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 220px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid var(--accent-gold);
}

.story-content-p h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.story-content-p p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 2rem;
}

/* Luxury Values Grid - Elevated */
.values-luxury {
    background: #F9FAFB;
    padding: 8rem 0;
    position: relative;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.luxury-card {
    background: #FFF;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 5px solid transparent;
    /* Ready for hover */
    position: relative;
    top: 0;
}

.luxury-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(46, 28, 60, 0.08);
    /* Brand purple shadow */
    border-top-color: var(--accent-gold);
}

.lc-icon {
    width: 90px;
    height: 90px;
    background: rgba(46, 28, 60, 0.05);
    /* Light brand purple */
    color: var(--primary-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.luxury-card:hover .lc-icon {
    background: var(--primary-base);
    color: #FFF;
    transform: scale(1.1) rotate(360deg);
    /* Playful rotation */
    box-shadow: 0 10px 20px rgba(46, 28, 60, 0.2);
}

.luxury-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.luxury-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Polished Team Section */
.team-premium {
    padding: 3rem 0 8rem;
    /* Reduced top padding */
}

.team-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-card-p {
    background: #FFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-card-p:hover {
    transform: translateY(-5px);
}

.tc-img-container {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.tc-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-p:hover .tc-img-container img {
    transform: scale(1.05);
}

.tc-info {
    padding: 2rem;
    text-align: center;
}

.tc-role {
    color: var(--primary-dark);
    background: rgba(255, 210, 76, 0.15);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: inline-block;
}

.tc-name {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.tc-bio {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {

    .about-hero-grid,
    .story-row-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tc-info {
        padding: 1.5rem;
    }

    .about-hero-split {
        padding-top: 140px;
    }

    .story-row-premium.reverse {
        direction: ltr;
    }
}

/* --- Professional Pricing Card Colors --- */

/* Base Premium Card - Refined */
.price-card-premium {
    border-top: 4px solid var(--primary-base);
    /* Elegant top accent */
    background: #FFF;
}

.price-card-premium .pc-icon {
    background: linear-gradient(135deg, #F5F3F7, #EBE6F0);
    color: var(--primary-base);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.price-card-premium .pc-title {
    color: var(--primary-dark);
}

/* Featured Card - Gold Standard */
.price-card-premium.featured {
    border-top: 4px solid var(--accent-gold);
    background: linear-gradient(to bottom, #FFFCF5, #FFF);
    /* Subtle warm tint */
    box-shadow: 0 20px 60px rgba(255, 192, 0, 0.15);
    border-color: var(--accent-gold);
    /* Override top border */
    transform: scale(1.02);
    z-index: 10;
}

.price-card-premium.featured .pc-icon {
    background: linear-gradient(135deg, #FFC000, #F5B000);
    color: #FFF;
    box-shadow: 0 8px 20px rgba(255, 192, 0, 0.3);
}

.price-card-premium.featured .pc-title {
    color: #1F102B;
    /* Darker contrast */
}

/* Specific Section Colors (Optional - adds variety) */
#lektioner .price-card-premium {
    border-top-color: #6C5CE7;
    /* Different hue for lessons */
}

#lektioner .price-card-premium .pc-icon {
    color: #6C5CE7;
    background: rgba(108, 92, 231, 0.1);
}

#kurser .price-card-premium {
    border-top-color: #00B894;
    /* Green hue for courses/mandatory */
}

#kurser .price-card-premium .pc-icon {
    color: #00B894;
    background: rgba(0, 184, 148, 0.1);
}

/* Enhanced Buttons in Cards */
.price-card-premium .btn {
    border-radius: 8px;
    /* Slightly sharper for professional feel */
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price-card-premium.featured .btn-primary {
    background: linear-gradient(135deg, #1F102B, #2E1C3C);
    /* Dark premium button for contrast */
    color: #FFD24C;
    border: none;
}

.price-card-premium.featured .btn-primary:hover {
    box-shadow: 0 10px 25px rgba(31, 16, 43, 0.4);
    transform: translateY(-2px);
}

/* --- Button Consistency Fix --- */
.btn-outline-dark {
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: #FFF;
    transform: translateY(-2px);
}

/* Ensure secondary buttons are distinct */
.btn-secondary {
    background: #F3F0F5;
    /* Light violet tint to match brand */
    color: var(--primary-dark);
    border: 1px solid transparent;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #EBE6F0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- Premium Finance & Info Section --- */
.finance-section-premium {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #F0F2F5 100%);
    position: relative;
}

.finance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Luxury Finance Card */
.finance-card-luxury {
    background: linear-gradient(135deg, #2E1C3C, #180C22);
    border-radius: 20px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: 0 20px 50px rgba(46, 28, 60, 0.2);
    position: relative;
    overflow: hidden;
    color: #FFF;
}

/* Subtle pattern overlay */
.finance-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.fcl-content {
    flex: 1;
    z-index: 2;
}

.fcl-logo-area {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    /* Fixed width for stability */
}

.fcl-logo-area img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    /* Ensure white logo */
}

.fcl-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFF;
}

.fcl-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Premium Info Box */
.info-box-premium {
    background: #FFF;
    border-left: 4px solid var(--accent-gold);
    padding: 2rem;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.ibp-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 5px;
}

.ibp-text p {
    margin: 0;
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.6;
}

.ibp-text strong {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .finance-card-luxury {
        flex-direction: column-reverse; /* Reverses order so logo is on top */
        padding: 2.5rem;
        text-align: center;
        gap: 1.5rem; /* Add clear spacing between logo and content */
    }

    .fcl-logo-area {
        margin: 0 auto 1rem auto;
        width: auto;
        max-width: 160px;
        background: transparent; /* Remove the clunky box background on mobile */
        padding: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .finance-card-luxury .btn {
        width: 100%;
    }
}

/* --- Instagram Feed Section --- */
.instagram-section {
    padding: 6rem 0;
    background: #FFF;
    text-align: center;
}

.insta-header {
    margin-bottom: 3rem;
}

.insta-header i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
}

/* --- Premium Instagram Immersive Feed --- */
.insta-section-luxury {
    padding: 10rem 0;
    background: #fff;
    overflow: hidden;
}

.insta-header-luxury {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    position: relative;
}

.insta-floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff0050;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}

.insta-header-luxury h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insta-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Stories Row */
.insta-stories-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 6rem;
}

.story-circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.story-circle-wrap span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #000;
}

.story-circle {
    width: 100px;
    height: 100px;
    position: relative;
    padding: 4px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-border {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.story-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    position: relative;
    z-index: 2;
}

.story-circle:hover {
    transform: scale(1.1);
}

/* Masonry Wall */
.insta-masonry-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.insta-wall-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f8f8f8;
}

.h-large {
    grid-column: span 2;
    grid-row: span 2;
}

.insta-wall-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.card-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.insta-wall-card:hover img { transform: scale(1.1); }
.insta-wall-card:hover .card-overlay { opacity: 1; }
.insta-wall-card:hover .card-overlay i { transform: scale(1); }

.insta-cta-luxury {
    text-align: center;
    margin-top: 6rem;
}

.btn-insta-luxury {
    background: #000;
    color: #fff;
    padding: 1.5rem 3.5rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-decoration: none;
}

.btn-insta-luxury:hover {
    background: #222;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    color: #fff;
}

@media (max-width: 992px) {
    .insta-masonry-wall {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
    .insta-stories-row { gap: 1.5rem; }
    .story-circle { width: 80px; height: 80px; }
}

@media (max-width: 576px) {
    .insta-masonry-wall {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .h-large { grid-column: span 1; grid-row: span 1; }
    .insta-section-luxury { padding: 6rem 0; }
}
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(225, 48, 108, 0.4);
    color: #FFF;
}


/* Icon Mode for Team Cards - Optimized */
.tc-img-container.icon-mode {
    background: #ffffff;
    height: 240px;
    /* Reduced from 350px to fit icon better */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.tc-img-container.icon-mode img.team-icon {
    width: auto;
    height: 90%;
    /* Maximize height to fit the badge */
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    /* Add depth to the coin/badge */
}

.team-card-p:hover .tc-img-container.icon-mode img.team-icon {
    transform: scale(1.1) rotate(0deg);
    /* Subtle zoom, no rotation */
}

/* --- Premium Contact Page Styles --- */

/* Contact Hero */
.contact-hero-premium {
    padding: 180px 0 100px;
    /* Reset bottom padding */
    background: radial-gradient(circle at bottom, #2E1C3C, #0F0514);
    text-align: center;
    color: #FFF;
    position: relative;
    overflow: hidden;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.eyebrow-accent {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-content-center h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #e0e0e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Floating Info Grid */
.contact-info-section {
    padding-bottom: 5rem;
    margin-top: -60px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
}

.info-grid-floating {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.info-card-glass:hover {
    transform: translateY(-10px);
}

.ic-icon {
    width: 60px;
    height: 60px;
    background: var(--surface-light);
    color: var(--primary-base);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-card-glass h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.info-card-glass p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--primary-base);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Main Split Section */
.contact-split-section {
    padding: 5rem 0 8rem;
    background: #F9FAFB;
}

.contact-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

/* Info Column (Left) */
.info-box-premium {
    background: #FFF;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-left: 5px solid var(--accent-gold);
}

.ib-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ib-icon {
    width: 40px;
    height: 40px;
    background: #FFFAEB;
    color: #F59E0B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ib-icon.warning {
    background: #FEF2F2;
    color: #EF4444;
}

.ib-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.premium-list-rows {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list-rows li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

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

.premium-list-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list-bullets li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

.premium-list-bullets li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.ib-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Form Column (Right) */
.form-card-premium {
    background: #FFF;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.form-card-premium h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.form-card-premium p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.premium-form .input-group {
    margin-bottom: 1.5rem;
}

.premium-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #EEE;
    border-radius: 12px;
    background: #FAFAFA;
    font-family: inherit;
    transition: all 0.3s;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    border-color: var(--primary-base);
    background: #FFF;
    box-shadow: 0 0 0 4px rgba(46, 28, 60, 0.1);
    outline: none;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Map Section */
.map-section-premium {
    height: 500px;
    width: 100%;
    position: relative;
    filter: grayscale(10%);
    /* Subtle mute */
}

.map-overlay-card {
    position: absolute;
    top: 50px;
    left: 10%;
    background: #FFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 5;
    max-width: 300px;
    border-left: 5px solid var(--primary-base);
}

.map-overlay-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map-overlay-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Responsive */
@media(max-width: 900px) {
    .contact-grid-premium {
        grid-template-columns: 1fr;
    }

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

    .map-overlay-card {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto;
        border-radius: 0;
        width: 100%;
        max-width: none;
    }

    .hero-content-center h1 {
        font-size: 2.8rem;
    }
}

/* --- Contact Page Fix (Clean & Modern) --- */

/* Lighter Hero */
/* --- Contact Page Fix (Premium Dark Redesign) --- */

/* --- Professional Hero Design --- */

.contact-hero-premium {
    padding: 160px 0 140px;
    /* More bottom padding for overlap */
    background: #180C24;
    /* Deep, rich purple */
    text-align: center;
    color: #FFF;
    position: relative;
    overflow: visible;
    /* Allow cards to overlap */
}

/* Subtle pattern overlay */
.contact-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(46, 28, 60, 0.4), transparent 70%);
    pointer-events: none;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFF;
    letter-spacing: -0.02em;
}

.eyebrow-accent {
    display: inline-block;
    color: var(--primary-dark);
    /* Changed to purple for visibility */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    background: rgba(46, 28, 60, 0.04);
    /* Subtle purple bg */
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(46, 28, 60, 0.15);
    /* Stronger border */
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.lead-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 400;
}

/* --- Floating Info Cards (Professional) --- */
.contact-info-section {
    padding: 0 0 4rem;
    margin-top: -80px;
    /* Strong overlap */
    position: relative;
    z-index: 10;
}

.info-grid-floating {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card-glass {
    background: #FFF;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    /* Clean, soft shadow */
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card-glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.info-card-glass::after {
    display: none;
}

/* Remove old top border */

.ic-icon {
    width: 64px;
    height: 64px;
    background: #F3F4F6;
    /* Light gray circle */
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.info-card-glass:hover .ic-icon {
    background: var(--primary-base);
    color: #FFF;
}

.info-card-glass h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.info-card-glass p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.link-arrow:hover {
    color: var(--primary-base);
    gap: 0.8rem;
}

/* --- Dazzling Layout V2 (Independent Sections) --- */

/* 1. Info Grid Section */
.info-grid-section {
    padding: 2rem 0 6rem;
    background: #F9FAFB;
    position: relative;
    z-index: 5;
}

.premium-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.glass-card-premium {
    background: #FFF;
    border-radius: 24px;
    padding: 0;
    /* Content padding handled inside */
    position: relative;
    box-shadow: 0 20px 50px rgba(31, 16, 43, 0.06);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.glass-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(31, 16, 43, 0.12);
}

.glass-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-base));
}

.glass-card-premium.warning-theme::before {
    background: linear-gradient(90deg, #FF6B6B, #EE5253);
}

.card-icon-float {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F8F9FA, #FFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    font-size: 1.5rem;
    color: var(--primary-base);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-icon-float.warning {
    color: #EE5253;
}

.card-content {
    padding: 3rem 2.5rem 2rem;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.time-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-base);
    /* Stronger color */
    margin: 1.8rem 0 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.time-category::after {
    content: '';
    height: 2px;
    flex-grow: 1;
    background: rgba(46, 28, 60, 0.08);
    /* Darker line */
}

.time-category:first-of-type {
    margin-top: 0;
}

.premium-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.premium-list-detailed li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align top for multi-line */
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    /* Consistent size */
    line-height: 1.5;
}

.premium-list-detailed li:hover {
    background: rgba(0, 0, 0, 0.01);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 8px;
}

.premium-list-detailed .lbl {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    font-weight: 600;
    flex: 1;
}

.premium-list-detailed .lbl i {
    color: var(--accent-gold);
    width: 20px;
    text-align: center;
}

.premium-list-detailed .val {
    font-weight: 700;
    color: var(--primary-dark);
    text-align: right;
    width: 50%;
    /* Ensure alignment */
}

.card-footer-note {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #FAFAFA;
    /* Subtle highlight */
    padding: 1rem;
    border-radius: 12px;
}

.card-footer-note i {
    color: var(--primary-light);
}

.card-footer-note.warning i {
    color: #EE5253;
}


/* 2. Centered Form Section */
/* 2. Centered Form Section - Premium Redesign */
.form-section-highlight {
    padding: 6rem 0 8rem;
    /* Added top padding for clear separation */
    position: relative;
    background: linear-gradient(to bottom, #F9FAFB 0%, #FFF 100%);
}

.form-wrapper-luxury {
    background: #FFF;
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 40px 100px rgba(31, 16, 43, 0.08);
    /* Deep soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 6px solid var(--accent-gold);
    /* Top Accent */
    max-width: 800px;
    margin: 0 auto;
    /* margin-top removed to stop overlap */
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Subtle decorative circle behind header */
.form-wrapper-luxury::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 210, 76, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative Form Glow */
.form-wrapper-luxury::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: var(--primary-base);
    /* Changed to primary glow */
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.08;
    pointer-events: none;
}

.form-header-center {
    text-align: center;
    margin-bottom: 4rem;
    /* More space */
    position: relative;
}

.form-header-center h2 {
    font-size: 3rem;
    /* Larger */
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.premium-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* Larger gap */
}

/* Luxury Inputs - High Contrast Update */
.premium-form-grid label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    /* Very dark purple, nearly black */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    /* Medium Dark Gray for better visibility */
    font-size: 1.2rem;
    transition: 0.3s;
    z-index: 2;
}

.input-with-icon.textarea-wrap i {
    top: 1.8rem;
    transform: none;
}

.premium-form-grid input,
.premium-form-grid select,
.premium-form-grid textarea {
    width: 100%;
    padding: 1.4rem 1.4rem 1.4rem 3.8rem;
    /* Large padding */
    background: #F3F4F6;
    /* Distinct Light Gray Background */
    border: 1px solid #D1D5DB;
    /* Visible border */
    border-radius: 16px;
    font-size: 1.1rem;
    font-family: inherit;
    color: #111827;
    /* Near Black Text */
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-form-grid input::placeholder,
.premium-form-grid textarea::placeholder {
    color: #9CA3AF;
    /* Accessible placeholder color */
}

.premium-form-grid input:focus,
.premium-form-grid select:focus,
.premium-form-grid textarea:focus {
    background: #FFF;
    border-color: var(--primary-base);
    box-shadow: 0 8px 20px rgba(46, 28, 60, 0.1);
    transform: translateY(-2px);
    outline: none;
}

.input-with-icon i {
    color: #9CA3AF;
    font-size: 1.2rem;
    transition: 0.3s;
    left: 1.4rem;
}

.premium-form-grid input:focus+i,
.input-with-icon:focus-within i {
    color: var(--accent-gold);
    /* Gold icon on focus */
}

.btn-block-lg {
    grid-column: span 2;
    width: 100%;
    padding: 1.4rem;
    font-size: 1.2rem;
    font-weight: 800;
    /* Bolder text */
    margin-top: 2rem;
    background: var(--accent-gold);
    /* Gold Background */
    color: var(--primary-dark);
    /* Dark Text for Contrast */
    box-shadow: 0 10px 30px rgba(255, 210, 76, 0.3);
    /* Gold Glow */
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-block-lg:hover {
    background: #FFC107;
    /* Slightly darker gold on hover */
    box-shadow: 0 15px 40px rgba(255, 210, 76, 0.4);
    transform: translateY(-3px);
    color: #000;
}

/* Responsive */
@media(max-width: 900px) {
    .premium-grid-2 {
        grid-template-columns: 1fr;
    }

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

    .form-group-full {
        grid-column: span 1;
    }

    .btn-block-lg {
        grid-column: span 1;
    }

    .form-wrapper-luxury {
        padding: 2rem;
    }

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


.ib-header {
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F3F4F6;
}

.ib-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.ib-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

/* Premium List Styles */
.premium-list-rows li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #EEE;
    font-size: 0.95rem;
}

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

.premium-list-rows span {
    color: var(--text-muted);
}

.premium-list-rows strong {
    color: var(--primary-dark);
}

.premium-list-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.premium-list-bullets li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.premium-list-bullets strong {
    color: var(--primary-dark);
}

/* Form Card */
.form-card-premium {
    background: #FFF;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(46, 28, 60, 0.08);
    /* Premium shadow */
    border-top: 5px solid var(--primary-base);
}

.form-card-premium h2 {
    margin-bottom: 0.5rem;
}

.form-card-premium>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Map Section */
.map-section-premium {
    height: 500px;
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.map-overlay-card {
    position: absolute;
    top: 50px;
    left: 10%;
    background: #FFF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 5;
    max-width: 320px;
    border-left: 5px solid var(--accent-gold);
}

/* --- Ultra Modern Contact V3 --- */

/* Hero V3 */
.contact-hero-v3 {
    padding: 160px 0 100px;
    background: #FFF;
    position: relative;
    overflow: hidden;
}

.hero-v3-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(46, 28, 60, 0.03), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-v3-content h1 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 500px;
}

.hero-v3-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.v3-card {
    background: #FFF;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: var(--text-body);
}

.v3-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-base);
}

.v3-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.v3-card.primary .v3-icon {
    background: rgba(46, 28, 60, 0.1);
    color: var(--primary-dark);
}

.v3-card.secondary .v3-icon {
    background: #FFFAEB;
    color: #F59E0B;
}

.v3-card strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.v3-card small {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 700;
}


/* Main Content V3 */
.contact-content-v3 {
    padding: 0 0 100px;
}

.content-v3-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

/* Info Cards V3 (Right col) */
.info-card-v3 {
    background: #FFF;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: 0.3s;
}

.info-card-v3:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.ic-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.ic-icon-box {
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    color: var(--text-body);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ic-icon-box.warning {
    background: #FEF2F2;
    color: #EF4444;
}

.ic-header h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-dark);
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-body);
    font-size: 0.95rem;
}

.clean-list .dots {
    flex-grow: 1;
    margin: 0 1rem;
    border-bottom: 1px dotted #DDD;
}

.clean-list strong {
    color: var(--primary-dark);
}

.bullet-list-content {
    list-style: none;
    padding: 0;
}

.bullet-list-content li {
    margin-bottom: 1.2rem;
}

.bullet-list-content li strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.bullet-list-content li p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ic-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Form V3 */
.form-wrapper-v3 {
    background: #FFF;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-v3 .input-wrap {
    margin-bottom: 1.5rem;
}

.form-v3 label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.form-v3 input,
.form-v3 select,
.form-v3 textarea {
    width: 100%;
    padding: 1rem;
    background: #F9FAFB;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-v3 input:focus,
.form-v3 select:focus,
.form-v3 textarea:focus {
    background: #FFF;
    border-color: var(--primary-base);
    outline: none;
    box-shadow: 0 5px 20px rgba(46, 28, 60, 0.05);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
}

/* Location Mini */
.location-mini-v3 {
    background: var(--primary-dark);
    color: #FFF;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lm-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.lm-btn:hover {
    background: #FFF;
    color: var(--primary-dark);
}

/* Map V3 */
.map-v3-section {
    height: 450px;
    position: relative;
}

.map-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #FFF, transparent);
    pointer-events: none;
}

/* Mobile */
@media(max-width: 900px) {

    .hero-v3-grid,
    .content-v3-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-bg-glow {
        display: none;
    }
}

/* --- Contact V4: Premium Dark/Gold --- */

/* Hero V4 uses existing .about-hero-split for consistency, overrides here */
.contact-v4-hero {
    /* Identical to About Us Hero for brand consistency */
    display: block;
    /* Override flex if needed */
}

.contact-v4-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.luxury-card-mini {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #FFF;
    text-decoration: none;
    transition: 0.3s;
}

.luxury-card-mini:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
    border-color: var(--accent-gold);
}

.lcm-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    width: 40px;
    display: flex;
    justify-content: center;
}

.luxury-card-mini strong {
    display: block;
    font-size: 1rem;
}

.luxury-card-mini span {
    font-size: 0.9rem;
    opacity: 0.8;
}


/* Main Section V4 */
.contact-v4-main {
    padding: 6rem 0;
    background: #F9FAFB;
    position: relative;
}

/* Form Styles V4 */
.v4-form-card {
    background: #FFF;
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    /* Premium shadow */
    border-top: 5px solid var(--primary-base);
}

.v4-form-header {
    margin-bottom: 2rem;
}

.v4-form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.v4-form-header p {
    color: var(--text-muted);
}

.v4-form .form-group {
    margin-bottom: 1.5rem;
}

.v4-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.v4-form input,
.v4-form select,
.v4-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #FAFAFA;
    transition: 0.3s;
    font-size: 1rem;
}

.v4-form input:focus,
.v4-form select:focus,
.v4-form textarea:focus {
    background: #FFF;
    border-color: var(--primary-base);
    box-shadow: 0 0 0 4px rgba(46, 28, 60, 0.1);
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Info Box V4 */
.v4-info-box {
    background: #FFF;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.v4-info-box.warning {
    border-left: 4px solid #EF4444;
}

.vib-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F3F4F6;
}

.vib-header i {
    font-size: 1.5rem;
    color: var(--primary-base);
}

.v4-info-box.warning .vib-header i {
    color: #EF4444;
}

.vib-header h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--primary-dark);
}

.v4-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v4-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-body);
}

.v4-list .line {
    flex-grow: 1;
    border-bottom: 1px dotted #E5E7EB;
    margin: 0 1rem;
}

.v4-list strong {
    color: var(--primary-dark);
}

.v4-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v4-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.v4-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.v4-bullets li strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

/* Grid V4 */
.contact-v4-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
}

/* Map V4 */
.map-v4 {
    height: 450px;
    position: relative;
}

.map-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(46, 28, 60, 0.9);
    padding: 2rem 3rem;
    border-radius: 16px;
    color: #FFF;
    text-align: center;
    backdrop-filter: blur(5px);
    pointer-events: none;
    /* Let users click map? No, this blocks it. Actually better to have it clickable or remove pointer events if we want interaction. */
    pointer-events: auto;
    /* Let them click the button */
}

.map-overlay-text h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.map-overlay-text p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

@media(max-width: 900px) {
    .contact-v4-grid {
        grid-template-columns: 1fr;
    }

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

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- 404 Error Page --- */
.error-page-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #2E1C3C, #120818);
    color: #FFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.error-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern-dots.png');
    opacity: 0.1;
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(255, 192, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FFF;
}

.error-content .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFF;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFF;
}

/* --- Global Mobile Button Fixes --- */
@media (max-width: 900px) {
    .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
        max-width: 100%;
        /* Prevent overflow */
    }

    .btn-lg {
        padding: 0.9rem 1.8rem !important;
        font-size: 1rem !important;
    }

    /* Adjust specific large buttons in Hero if needed */
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* --- Specific Button Stacking Fixes --- */
@media (max-width: 900px) {



    /* CTA Section Buttons */
    .cta-box-glass {
        flex-direction: column;
        padding: 2rem !important;
        text-align: center;
    }

    .cta-btns {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100%;
        align-items: center;
        margin-top: 1.5rem;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 !important;
        display: flex;
        justify-content: center;
    }

    /* Pricing Page Buttons Mobile Fix */
    .hero-actions,
    .fcl-buttons {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
    }

    .hero-actions .btn,
    .fcl-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 0 1rem 0 !important;
        /* Add spacing below */
        display: flex;
        justify-content: center;
    }

    /* About Us Page Mobile Fixes */
    .about-hero-text h1 {
        font-size: 2rem !important;
        /* Significantly reduced size */
        line-height: 1.2;
        word-wrap: break-word;
        /* Ensure no overflow */
    }

    .about-hero-text .lead {
        font-size: 1rem !important;
    }

    /* Contact Page Mobile Fixes */
    .contact-hero-premium h1 {
        font-size: 2.2rem !important;
        line-height: 1.1;
    }

    .contact-hero-premium .eyebrow-accent {
        color: var(--accent-gold) !important;
        /* Ensure visibility on dark bg */
        display: inline-block;
        margin-bottom: 0.5rem;
    }
}
/* --- Kontakt Page Redesign (Match Mockup) --- */

.contact-hero-premium {
    background: linear-gradient(rgba(31, 16, 43, 0.95), rgba(31, 16, 43, 0.98)),
                url('assets/images/hero-bg.jpg') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: #FFF;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.info-grid-floating {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -60px;
    margin-bottom: 80px;
}

.info-card-glass {
    background: #FFF;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transition: transform 0.4s var(--transition-smooth);
}

.info-card-glass:hover {
    transform: translateY(-10px);
}

.ic-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 28, 60, 0.05);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.form-wrapper-luxury {
    background: #FFF;
    border-radius: 30px;
    padding: 5rem;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.premium-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-group-full { grid-column: span 2; }

.form-wrapper-luxury input,
.form-wrapper-luxury select,
.form-wrapper-luxury textarea {
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
    border-radius: 12px;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-with-icon i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.textarea-wrap i {
    top: 1.8rem;
    transform: none;
}

.btn-block-lg {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    box-shadow: 0 15px 40px rgba(255, 210, 76, 0.4);
}

.btn-block-lg:hover {
    background: #FFB000;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 210, 76, 0.5);
}

/* Sub Sections with White Background Cards */
.info-grid-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.premium-grid-2 {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.glass-card-premium {
    background: #FFF;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

/* Custom Table-like list for Hours */
.schedule-premium-layout h3 {
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .info-grid-floating { grid-template-columns: 1fr; }
    .premium-grid-2 { grid-template-columns: 1fr; }
    .form-wrapper-luxury { padding: 3rem 1.5rem; }
    .premium-form-grid { grid-template-columns: 1fr; }
    .form-group-half { grid-column: span 1; }
}

/* --- Kontakt Refinements --- */
.premium-grid-2 {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.info-card-glass h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.info-card-glass p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.schedule-premium-layout li span:first-child {
    color: var(--primary-dark);
    font-weight: 700;
}

@media (max-width: 1200px) {
    .premium-grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- Premium Contact Page Redesign --- */

/* Hero */
.contact-hero-cinematic {
    position: relative;
    padding: 180px 0 100px;
    background: var(--primary-dark);
    color: #FFF;
    overflow: hidden;
    text-align: center;
}

.contact-hero-cinematic::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--surface-off-white);
    transform: skewY(-2deg);
    z-index: 1;
}

.contact-hero-cinematic .container {
    position: relative;
    z-index: 2;
}

.contact-hero-cinematic .eyebrow-accent {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-hero-cinematic h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: #FFF;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-hero-cinematic .lead-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Split Layout */
.contact-split-section {
    padding: 80px 0 120px;
    position: relative;
    z-index: 10;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Info Column */
.contact-info-col h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.info-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #FFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.info-card-horizontal:hover {
    transform: translateX(10px);
    border-color: rgba(255, 210, 76, 0.5);
    box-shadow: var(--shadow-md);
}

.info-card-horizontal .ic-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(90, 62, 112, 0.05);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card-horizontal .ic-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.info-card-horizontal .ic-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Opening Hours Card */
.hours-premium-box {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary-base));
    border-radius: var(--radius-md);
    padding: 2.5rem;
    color: #FFF;
    position: relative;
    overflow: hidden;
}

.hours-premium-box::before {
    content: '017';
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.05;
    color: #FFF;
}

.hours-premium-box h3 {
    color: #FFF;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hours-premium-box h3 i {
    color: var(--accent-gold);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

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

.hours-list .hl-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.hours-list .hl-label i {
    color: var(--accent-gold);
    width: 16px;
    text-align: center;
}

.hours-list .hl-time {
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
}

.hours-list .hl-sub {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.courses-box {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

.courses-box h4 {
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.course-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-item:last-child {
    margin-bottom: 0;
}

.course-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.course-info .ci-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.course-info .ci-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Form Column */
.contact-form-col {
    position: relative;
}

.form-wrapper-glass {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.form-wrapper-glass::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.form-header-minimal h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-header-minimal p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Elegant Policy Section */
.policy-elegant-section {
    padding: 80px 0;
    background: #FFF;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface-off-white);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .policy-container {
        padding: 2rem;
    }
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.policy-header h2 {
    font-size: 2rem;
}

.policy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.policy-highlight {
    background: rgba(255, 210, 76, 0.1);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 2rem 0;
    font-style: italic;
    color: var(--primary-dark);
}

.policy-content strong {
    color: var(--primary-dark);
}

.policy-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.policy-content h4 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-content h4::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* --- Footer Hours Premium Strip --- */
.footer-hours-strip {
    padding: 0;
    margin-top: -2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 20;
}

.f-hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(46, 28, 60, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 2rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

@media (max-width: 1024px) {
    .f-hours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 0;
    }
    .fh-item:nth-child(2)::after { display: none; }
}

@media (max-width: 600px) {

    .footer-hours-strip {
        padding: 2rem 1rem;
        background: transparent;
        margin-top: -1rem;
    }

    /* We do NOT style the container. We override `.f-hours-grid` directly. */
    .footer-hours-strip .container {
        padding: 0;
        background: transparent;
        border: none;
    }

    /* The Main unified card */
    .f-hours-grid {
        display: flex; /* Overrides desktop grid */
        flex-direction: column;
        gap: 1.5rem; /* Even spacing between list items */
        padding: 1.5rem; /* Perfect, even padding all around the card (overrides desktop 2rem 0.5rem) */
        border-radius: 20px;
        /* Background and border are safely inherited from desktop */
    }

    /* Each Row Item */
    .fh-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        padding: 0; /* Overrides desktop horizontal padding */
        position: relative;
    }
    
    .fh-item:last-child {
        padding-bottom: 0;
    }

    /* Clean subtle divider skipping the icon */
    .fh-item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -0.75rem; /* Centers exactly in the 1.5rem gap */
        left: 3.5rem; /* Aligns with text start */
        right: 0;
        top: auto; /* Overrides desktop top: 50% */
        transform: none; /* Overrides desktop transform */
        width: auto; /* Overrides desktop 1px width */
        height: 1px; /* Horizontal line instead of vertical */
        background: rgba(255, 255, 255, 0.08); /* Faint line */
        display: block !important;
    }

    /* Icon Square */
    .fh-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        background: rgba(255, 210, 76, 0.08); /* Very subtle gold filled block */
        border: 1px solid rgba(255, 210, 76, 0.15);
        border-radius: 12px;
        color: var(--accent-gold);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0; /* Clear desktop margins */
    }

    /* Text Block */
    .fh-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.35rem; /* Tiny space between label and value */
        padding-top: 2px; /* optical nudge alignment with icon */
    }

    .fh-text strong {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--accent-gold);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        display: block;
        margin: 0;
    }

    .fh-text span {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        display: block;
    }
}

.fh-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0 2rem;
    position: relative;
}

.fh-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.fh-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.fh-item:hover .fh-icon {
    transform: scale(1.1) translateY(-3px);
    text-shadow: 0 5px 15px rgba(255, 210, 76, 0.3);
}

.fh-text {
    flex-grow: 1;
}

.fh-text strong {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-weight: 700;
}

.fh-text span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* --- Professional Contact Page Redesign V2 --- */
.contact-page-strip {
    /* Uses the same grid structure as footer strip, just positioned differently */
    margin-top: -4rem; /* Overlap the hero section */
    margin-bottom: 5rem;
    position: relative;
    z-index: 30;
}

/* Make it solid and vibrant instead of pale/transparent for the contact page */
.contact-page-strip .f-hours-grid {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-base) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 210, 76, 0.2); /* Subtle gold border */
    box-shadow: 0 20px 40px rgba(46, 28, 60, 0.2);
}

.contact-page-strip .fh-text span {
    color: rgba(255, 255, 255, 0.95); /* Brighter text */
}

.contact-page-strip .fh-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 210, 76, 0.15); /* Slight gold background for icons to pop */
    border-radius: 12px;
}

.contact-page-strip .fh-item:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.15); /* More visible divider */
}

.contact-pillars-section {
    padding: 2rem 0 5rem;
}

.contact-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 900px) {
    .contact-pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 210, 76, 0.4);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(90, 62, 112, 0.05); /* Primary light transparent */
    color: var(--primary-dark);
    font-size: 1.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: scale(1.1) rotate(5deg);
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pillar-card .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.pillar-card:hover .link-arrow {
    color: var(--accent-gold-hover);
}

.contact-form-section {
    padding: 2rem 0 100px;
}

.form-container-centered {
    max-width: 900px;
    margin: 0 auto;
}

.premium-centered-form {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Accent top border */
.premium-centered-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-light));
}

.form-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header-center h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .premium-centered-form {
        padding: 2.5rem 1.5rem;
    }
}

/* --- Villkor (Terms) Page Styles --- */
.terms-page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-base));
    padding: 10rem 0 6rem;
    text-align: center;
    color: #FFF;
    border-bottom: 2px solid var(--accent-gold);
}

.terms-page-hero .eyebrow-accent {
    color: var(--accent-gold) !important;
    background: rgba(255, 210, 76, 0.1);
    border: 1px solid rgba(255, 210, 76, 0.2);
}

.terms-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.5px;
    color: #FFFFFF !important;
}

.terms-page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    color: #FFFFFF !important;
}

.terms-section {
    padding: 6rem 0;
    background: #FAFAFA;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (max-width: 900px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }
}

.term-card {
    background: #FFF;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    position: relative;
}

.term-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), var(--primary-base));
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

@media (max-width: 768px) {
    .terms-page-hero h1 {
        font-size: 2.2rem !important;
        word-break: break-word;
    }
    .terms-page-hero p {
        font-size: 1.05rem !important;
    }
    .term-card {
        padding: 1.5rem;
    }
    .term-highlight-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    .cr-item {
        padding: 1.2rem;
    }
    /* Form overrides to ensure stacking on mobile */
    .premium-form-grid {
        grid-template-columns: 1fr !important;
    }
    .form-group-full, .form-group-half {
        grid-column: 1 / -1 !important;
    }
    /* Price card padding fix for mobile */
    .price-card-premium {
        padding: 1.5rem !important;
    }
}

.term-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Creative Background Decorations */
.term-card::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    font-size: 9rem;
    color: rgba(46, 28, 60, 0.02); /* Extremely subtle brand color */
    pointer-events: none;
    z-index: 0;
    transition: var(--transition-smooth);
}

.term-card:hover::after {
    transform: scale(1.1) rotate(-5deg);
    color: rgba(46, 28, 60, 0.04);
}

.term-card[data-card="avbokning"]::after { content: '\f133'; } /* Calendar */
.term-card[data-card="kurser"]::after { content: '\f51c'; }    /* Chalkboard */
.term-card[data-card="paket"]::after { content: '\f13d'; }     /* Anchor/Box alternate */
.term-card[data-card="elevcentralen"]::after { content: '\f3ed'; } /* Shield */
.term-card[data-card="ekonomi"]::after { content: '\f53d'; }   /* Coins/Money */

/* Additional Animated Garnish for Cards with Gaps */
.term-card[data-card="paket"]::before,
.term-card[data-card="elevcentralen"]::before,
.term-card[data-card="ekonomi"] .left-decorative-bg {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.08;
    bottom: 0%;
    right: 0%;
    border-radius: 50%;
    z-index: 0;
    filter: blur(10px);
    animation: floatingBlob 8s ease-in-out infinite alternate;
}

.term-card[data-card="ekonomi"] {
    background-image: radial-gradient(rgba(46, 28, 60, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
}

@keyframes floatingBlob {
    0% { transform: translate(10px, 10px) scale(1); }
    100% { transform: translate(-20px, -20px) scale(1.2); }
}

/* Visual Badges & Anchors */
.economy-visual-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(46, 28, 60, 0.03);
    border: 1px dashed rgba(46, 28, 60, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.economy-visual-badge i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.card-visual-anchor {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.15;
}

.visual-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-base), transparent);
}

.visual-dots {
    display: flex;
    gap: 5px;
    font-size: 6px;
    color: var(--primary-dark);
}

.term-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(46, 28, 60, 0.05); /* light primary */
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.term-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.term-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.term-card p strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.term-highlight-box {
    background: rgba(255, 210, 76, 0.15);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 2rem 0;
    font-style: normal;
    font-size: 1.05rem;
    color: var(--primary-dark);
    line-height: 1.6;
    font-weight: 500;
}

.term-list {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.term-list li {
    font-size: 1.05rem;
    color: var(--text-dark);
    background: #fdfdfd;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.6;
}

.term-list li i {
    color: var(--accent-gold);
    margin-top: 5px;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Custom Blocks for Course Rules */
.course-rules-grid {
    display: grid;
    gap: 1.2rem;
    margin-top: 1rem;
}

.cr-item {
    background: rgba(255, 210, 76, 0.06);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.cr-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
}

.cr-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* CTA Banner for Kontakt Page */
.terms-cta-banner {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    margin: 2rem auto 8rem;
    max-width: 900px;
}

.terms-cta-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.terms-cta-banner h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.terms-cta-banner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-inline: auto;
}

/* ============================================================
   BOOKING WIZARD — Hannas Trafikskola
   ============================================================ */

.booking-wizard-section {
    padding: 5rem 0 8rem;
    background: var(--surface-off-white);
}

/* Progress Bar */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.wp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.3s;
}
.wp-step.active { opacity: 1; }
.wp-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #aaa;
    transition: all 0.3s;
}
.wp-step.active .wp-circle {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(46,28,60,0.3);
}
.wp-step.done .wp-circle {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}
.wp-step span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.wp-step.active span { color: var(--primary-dark); }
.wp-line {
    flex: 1;
    height: 2px;
    background: #ddd;
    min-width: 40px;
    max-width: 100px;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}
.wp-line.done { background: var(--accent-gold); }

/* Wizard Card */
.wizard-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3.5rem;
}
.wizard-step.hidden { display: none; }
.wizard-step-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.wizard-step-header h2 {
    font-size: 1.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.wizard-step-header p {
    color: var(--text-muted);
    font-size: 1rem;
}
.selected-service-badge {
    display: inline-block;
    background: rgba(255,210,76,0.15);
    color: var(--primary-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.2rem;
}
.service-tile {
    background: var(--surface-off-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 1.8rem 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.service-tile:hover {
    border-color: var(--accent-gold);
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(46,28,60,0.1);
}
.st-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-base), var(--primary-dark));
    color: var(--accent-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}
.service-tile h3 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.service-tile p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Wizard Form */
.wizard-form, .wf-row { width: 100%; }
.wf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.wf-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.wf-group.wf-full { grid-column: 1 / -1; }
.wf-group label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.req { color: #DC2626; }
.optional { color: var(--text-muted); font-weight: 400; text-transform: none; }
.wf-input-wrap {
    position: relative;
}
.wf-input-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
}
.wf-input-wrap textarea ~ i,
.wf-input-wrap:has(textarea) i {
    top: 1.2rem;
    transform: none;
}
.wf-input-wrap input,
.wf-input-wrap select,
.wf-input-wrap textarea {
    width: 100%;
    padding: 0.95rem 1rem 0.95rem 2.8rem;
    border: 1.5px solid #E2E0E8;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    background: var(--surface-off-white);
    color: var(--text-main);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}
.wf-input-wrap input:focus,
.wf-input-wrap select:focus,
.wf-input-wrap textarea:focus {
    border-color: var(--primary-base);
    box-shadow: 0 0 0 3px rgba(46,28,60,0.08);
    background: #fff;
}
.wf-input-wrap textarea { resize: vertical; min-height: 90px; }

/* Hide native calendar icon but keep it clickable across the full field */
.wf-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.wf-input-wrap input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

/* Schedule Info Box */
.schedule-info-box {
    background: rgba(255,210,76,0.1);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.schedule-info-box.hidden { display: none; }

/* Wizard Nav */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    gap: 1rem;
}

/* Booking Summary (Step 4) */
.booking-summary {
    background: var(--surface-off-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}
.bs-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.bs-row:last-child { border-bottom: none; }
.bs-row:nth-child(even) { background: #fff; }
.bs-label {
    min-width: 160px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.bs-label i { width: 16px; color: var(--primary-base); }
.bs-value {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 500;
}
.booking-notice {
    background: rgba(46,28,60,0.04);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.booking-notice i { color: var(--primary-base); margin-top: 2px; }

/* Success State */
.booking-success {
    text-align: center;
    padding: 2rem 0;
}
.bs-icon {
    font-size: 5rem;
    color: #16A34A;
    margin-bottom: 1.5rem;
    animation: popIn 0.4s cubic-bezier(0.68,-0.55,0.27,1.55);
}
@keyframes popIn { from { transform: scale(0); opacity:0; } to { transform: scale(1); opacity:1; } }
.booking-success h2 { font-size: 2rem; color: var(--primary-dark); margin-bottom: 0.75rem; }
.booking-success p { color: var(--text-muted); font-size: 1.05rem; }
.bs-details {
    background: var(--surface-off-white);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 420px;
    text-align: left;
}
.bs-details p { margin: 0.5rem 0; font-size: 0.95rem; color: var(--primary-dark); }

/* Mobile Responsive */
@media (max-width: 640px) {
    .wizard-card { padding: 2rem 1.2rem; }
    .wf-row { grid-template-columns: 1fr; }
    
    /* Make the service grid perfectly stack in 1 column on mobile to prevent overflow */
    .service-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-tile { padding: 1.5rem 1rem; } /* Slightly tighter padding for mobile */

    .wizard-nav { flex-direction: column-reverse; }
    .wizard-nav .btn { width: 100%; text-align: center; }
    .wp-line { min-width: 20px; }
    .bs-label { min-width: 120px; font-size: 0.82rem; }
}

/* ============================================================
   BOKA PAGE — Additional Sections
   ============================================================ */

/* How It Works */
.how-it-works-section { padding: 6rem 0; background: #fff; }
.hiw-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.hiw-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.5rem; position: relative; }
.hiw-circle { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-base), var(--primary-dark)); color: var(--accent-gold); font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 8px 25px rgba(46,28,60,0.25); position: relative; z-index: 2; flex-shrink: 0; }
.hiw-line { position: absolute; top: 30px; left: 50%; width: 100%; height: 2px; background: linear-gradient(90deg, var(--accent-gold) 0%, rgba(255,210,76,0.2) 100%); z-index: 1; }
.hiw-line-hidden { display: none; }
.hiw-step h3 { font-size: 1.05rem; color: var(--primary-dark); font-weight: 700; margin-bottom: 0.6rem; }
.hiw-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Payment Cards */
.payment-info-section { padding: 5rem 0; background: var(--surface-off-white); }
.payment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.payment-card { background: #fff; border-radius: var(--radius-md); padding: 2.5rem 2rem; box-shadow: var(--shadow-sm); border-top: 4px solid var(--primary-base); }
.pay-icon { width: 52px; height: 52px; background: rgba(46,28,60,0.05); color: var(--primary-base); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.payment-card h3 { font-size: 1.1rem; color: var(--primary-dark); font-weight: 700; margin-bottom: 1.2rem; }
.pay-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.pay-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.pay-list li i.fa-check { color: #16A34A; font-size: 0.8rem; flex-shrink: 0; }
.pay-list li i.fa-triangle-exclamation { flex-shrink: 0; font-size: 0.8rem; }

/* ============================================
   Premium Alert Modal
   ============================================ */
.wizard-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 5, 30, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.wizard-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.wizard-modal-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.wizard-modal-overlay.active .wizard-modal-card {
    transform: translateY(0) scale(1);
}
.wizard-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}
.wizard-modal-icon.error {
    background: rgba(220, 38, 38, 0.08);
    color: #DC2626;
}
.wizard-modal-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}
.wizard-modal-icon.info {
    background: rgba(46, 28, 60, 0.06);
    color: var(--primary-base);
}
.wizard-modal-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}
.wizard-modal-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}
.wizard-modal-close {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}
.wizard-modal-close:hover {
    background: var(--primary-base);
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .wizard-modal-card { padding: 2rem 1.5rem 1.75rem; }
}

/* FAQ Accordion */
.faq-section-boka { padding: 6rem 0; background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.faq-item { border: 1.5px solid rgba(0,0,0,0.07); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item.open { border-color: var(--primary-base); box-shadow: 0 4px 20px rgba(46,28,60,0.08); }
.faq-q { width: 100%; background: none; border: none; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; text-align: left; font-family: var(--font-main); }
.faq-q span { font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); flex: 1; }
.faq-q i { color: var(--text-muted); font-size: 0.85rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-q { background: rgba(46,28,60,0.03); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.5rem; }
.faq-item.open .faq-a { max-height: 200px; padding: 1rem 1.5rem 1.2rem; }
.faq-a p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* CTA Banner */
.boka-cta-section { padding: 4rem 0 6rem; background: var(--surface-off-white); }
.boka-cta-box { background: linear-gradient(135deg, var(--primary-base) 0%, var(--primary-dark) 100%); border-radius: var(--radius-lg); padding: 3.5rem 4rem; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.boka-cta-text h2 { font-size: 1.8rem; color: #fff; margin-bottom: 0.6rem; }
.boka-cta-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 480px; line-height: 1.6; margin: 0; }
.boka-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* Mobile */
@media (max-width: 900px) {
    .hiw-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hiw-line, .hiw-line-hidden { display: none; }
    .payment-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .boka-cta-box { flex-direction: column; text-align: center; padding: 2.5rem 2rem; }
    .boka-cta-btns { justify-content: center; }
}
@media (max-width: 480px) {
    .hiw-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   TABS ELEV APP SECTION
   ============================================================ */
.tabs-app-section {
    padding: 5rem 0;
    background: #fff;
}
.tabs-app-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #3D2454 100%);
    border-radius: var(--radius-lg);
    padding: 4rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.tabs-app-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,210,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.tabs-app-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tabs-logo-img {
    width: 130px;
    height: 130px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.1);
}
.tabs-app-badge {
    display: inline-block;
    background: rgba(255,210,76,0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(255,210,76,0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.tabs-app-content h2 {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 0.9rem;
    font-weight: 700;
}
.tabs-app-content > p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 560px;
}
.tabs-app-content > p strong { color: var(--accent-gold); }

.tabs-app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.taf-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.87rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.08);
}
.taf-item i { color: var(--accent-gold); }

.tabs-store-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.store-btn i { font-size: 1.8rem; }
.store-btn div { display: flex; flex-direction: column; }
.store-btn span { font-size: 0.72rem; opacity: 0.8; line-height: 1; }
.store-btn strong { font-size: 1rem; line-height: 1.3; }
.store-btn.apple {
    background: #fff;
    color: var(--primary-dark);
}
.store-btn.apple:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,210,76,0.35);
}
.store-btn.google {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.store-btn.google:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .tabs-app-card { flex-direction: column; padding: 2.5rem 1.5rem; gap: 2rem; text-align: center; }
    .tabs-app-card::before { display: none; }
    .tabs-app-content h2 { font-size: 1.5rem; }
    .tabs-app-features { justify-content: center; }
    
    .tabs-store-btns { 
        flex-direction: column; 
        align-items: center; 
        gap: 1rem; 
    }
    .store-btn { 
        width: 100%; 
        max-width: 260px; 
        justify-content: center; 
    }
    .store-btn div {
        text-align: left;
        min-width: 105px; /* Ensures text block is uniform so icons align nicely */
    }
    
    .tabs-app-content > p { margin-inline: auto; }
    .tabs-app-badge { display: block; }
}
