/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
    /* Refined Color Palette - Soft & Professional */
    --primary: #4ECDC4;
    /* تركواز ناعم */
    --primary-dark: #3BAF9E;
    --primary-light: rgba(78, 205, 196, 0.15);
    --secondary: #6A89CC;
    /* أزرق لافندر ناعم */
    --accent: #82CCDD;
    /* أزرق سماوي فاتح */
    --text-dark: #2C3A47;
    /* لون نصوص غامق ناعم */
    --text-medium: #4B5D67;
    /* لون نصوص متوسط */
    --text-light: #8395A7;
    /* لون نصوص فاتح */
    --bg-light: #F9FCFD;
    /* خلفية بيضاء مائلة للأزرق الفاتح */
    --bg-white: #FFFFFF;
    --border-light: rgba(0, 0, 0, 0.05);

    /* Effects & Shadows */
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.88);
    --container-width: 1250px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --transition-normal: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ... Existing Styles ... */

/* =========================================
   12. PREMIUM PRO SUBPAGE STYLES
   ========================================= */

/* Parallax Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 58, 71, 0.4), rgba(44, 58, 71, 0.8));
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero .breadcrumb {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Premium Split Section (Image + Text) */
.split-section {
    display: flex;
    align-items: center;
    gap: 0;
    /* Full width approach */
    margin: 100px 0;
    position: relative;
}

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-section:hover .split-image img {
    transform: scale(1.05);
}

.split-content {
    flex: 1;
    padding: 80px;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.split-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 25px;
}

/* Modern Timeline */
.modern-timeline {
    position: relative;
    padding: 80px 0;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-dark), transparent);
    transform: translateX(-50%);
}

.timeline-row {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    position: relative;
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}

.timeline-col {
    width: 45%;
    padding: 0 40px;
}

.timeline-row:nth-child(odd) .timeline-col:first-child {
    text-align: right;
    margin-right: auto;
    margin-left: 0;
}

.timeline-row:nth-child(odd) .timeline-col:last-child {
    display: none;
    /* Empty side */
}

.timeline-row:nth-child(even) .timeline-col:first-child {
    display: none;
}

.timeline-row:nth-child(even) .timeline-col:last-child {
    text-align: left;
    margin-left: auto;
    margin-right: 0;
}

.timeline-year {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.timeline-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
    border-left: 5px solid var(--primary);
    transition: var(--transition-normal);
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Masonry Gallery Grid */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    break-inside: avoid;
    box-shadow: var(--shadow-medium);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

/* Doctor Pro Card */
.doc-pro {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 80px;
}

.doc-pro:nth-child(even) {
    flex-direction: row-reverse;
}

.doc-pro-img {
    flex: 0 0 400px;
    position: relative;
}

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

.doc-pro-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doc-pro-name {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.doc-pro-role {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .split-section {
        flex-direction: column !important;
    }

    .split-image {
        height: 400px;
        width: 100%;
    }

    .split-content {
        padding: 40px 20px;
    }

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

    .timeline-row {
        flex-direction: column;
        margin-left: 40px;
    }

    .timeline-dot {
        left: 0;
        transform: translateX(-50%);
    }

    .timeline-col {
        width: 100%;
        padding: 0 0 0 30px;
        margin: 0 !important;
        display: block !important;
        text-align: left !important;
    }

    .masonry-grid {
        column-count: 2;
    }

    .doc-pro {
        flex-direction: column !important;
    }

    .doc-pro-img {
        height: 500px;
        flex: none;
    }
}

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

    .masonry-grid {
        column-count: 1;
    }
}

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

ul {
    list-style: none;
}

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

/* Container Utility */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

/* =========================================
   13. STICKY INFORMATION PAGE LAYOUT
   ========================================= */

/* Main Grid Layout */
.sticky-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* Sticky Sidebar Navigation */
.sticky-nav-col {
    position: relative;
}

.sticky-nav {
    position: sticky;
    top: 150px;
    /* Below fixed header */
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
}

.sticky-nav h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-light);
    color: var(--text-dark);
}

.sticky-menu {
    list-style: none;
}

.sticky-menu li {
    margin-bottom: 5px;
}

.sticky-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition-normal);
}

.sticky-menu a:hover,
.sticky-menu a.active {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding-left: 20px;
}

.sticky-menu a i {
    opacity: 0.7;
    transition: var(--transition-normal);
}

.sticky-menu a:hover i {
    transform: translateX(5px);
    opacity: 1;
}

/* Info Section Content */
.info-section {
    scroll-margin-top: 140px;
    /* Offset for header */
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out;
}

.info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.info-section h2::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 40%;
    height: 6px;
    background: var(--primary-light);
    z-index: -1;
}

/* Premium Vertical Timeline (Process) */
.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--border-light));
}

.process-step {
    position: relative;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    z-index: 2;
    box-shadow: 0 0 0 5px white;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary);
}

.process-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-card i {
    color: var(--primary);
}

/* Download Cards Grid */
.download-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 25px;
}

.dl-premium-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.dl-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--text-light);
    /* Default inactive */
    transition: var(--transition-normal);
}

.dl-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.dl-premium-card:hover::before {
    background: var(--primary);
}

.dl-icon-box {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-medium);
    transition: var(--transition-normal);
}

.dl-premium-card:hover .dl-icon-box {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.dl-content h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.dl-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dl-action {
    margin-left: auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: var(--transition-normal);
}

.dl-premium-card:hover .dl-action {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Emergency Highlight Box */
.emergency-box-premium {
    background: #2C3A47;
    color: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.emergency-box-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.emb-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.emb-content p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.emb-number {
    text-align: right;
}

.emb-number span {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.emb-number strong {
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
}

/* Responsive Sticky */
@media (max-width: 992px) {
    .sticky-wrapper {
        grid-template-columns: 1fr;
    }

    .sticky-nav {
        position: static;
        margin-bottom: 40px;
    }

    .download-card-grid {
        grid-template-columns: 1fr;
    }

    .emergency-box-premium {
        flex-direction: column;
        text-align: center;
    }

    .emb-number {
        text-align: center;
    }
}

/* =========================================
   14. NEWS / AKTUELLES PAGE STYLES
   ========================================= */

/* Filter Bar */
.news-filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.news-filter {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: white;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.news-filter:hover,
.news-filter.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Featured News Card */
.featured-news {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 80px;
    height: 400px;
    transition: var(--transition-smooth);
}

.featured-news:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.featured-img {
    flex: 1.2;
    overflow: hidden;
    position: relative;
}

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

.featured-news:hover .featured-img img {
    transform: scale(1.05);
}

.featured-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.news-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.featured-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-content p {
    color: var(--text-medium);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Standard News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.news-card-img {
    height: 240px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.1);
}

.news-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card-body p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex: 1;
}

.read-more {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.news-card:hover .read-more i {
    transform: translateX(5px);
}

/* Pagination */
.news-pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-normal);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Newsletter Box */
.newsletter-box {
    background: #2C3A47;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: white;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.newsletter-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-family: inherit;
}

.newsletter-btn {
    padding: 15px 35px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

/* Responsive News */
@media (max-width: 992px) {
    .featured-news {
        flex-direction: column;
        height: auto;
    }

    .featured-img {
        height: 300px;
    }

    .featured-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

.sidebar-fixed {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
}

.sidebar-item {
    position: relative;
    display: flex;
    align-items: center;
}

.icon-circle {
    width: 58px;
    height: 58px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.3rem;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-circle:hover {
    background: var(--primary);
    color: white;
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.3);
}

/* Tooltip */
.sidebar-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(15px);
    background: var(--text-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    z-index: 1;
    pointer-events: none;
}

.sidebar-item:hover .sidebar-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Phone Pulse Animation */
.pulse {
    animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(78, 205, 196, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0);
    }
}

/* =========================================
   3. HEADER & NAV
   ========================================= */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 22px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    position: relative;
    padding: 8px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

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

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

/* =========================================
   4. HERO SECTION (Premium Redesign)
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fcfd 0%, #f0f8fa 100%);
}

/* Subtle Gradient Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(106, 137, 204, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f9fcfd 0%, #f0f8fa 100%);
    z-index: 0;
}

/* Hero Image with Soft Focus */
.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('https://d1.jeko.live/intro.png') no-repeat center center;
    background-size: cover;
    opacity: 0.85;
    z-index: 1;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(249, 252, 253, 0.95) 0%, rgba(249, 252, 253, 0.7) 45%, rgba(249, 252, 253, 0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    margin-bottom: 70px;
    max-width: 700px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(78, 205, 196, 0.15);
    z-index: -1;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* THE FLOATING SCHEDULE CARD - Premium Glassmorphism */
.schedule-card {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: fadeInUp 1s ease 0.5s both;
    transition: var(--transition-smooth);
}

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

.sch-col {
    padding: 45px 35px;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-normal);
}

.sch-col:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.sch-col h5 {
    font-size: 0.85rem;
    margin-bottom: 25px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.time-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Highlighted Column */
.sch-col.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
}

.sch-col.highlight h5 {
    color: white;
    opacity: 0.95;
}

.sch-col.highlight .time-row {
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.sch-col.highlight a {
    color: white;
}

.btn-schedule {
    margin-top: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: white;
    letter-spacing: 0.5px;
}

.btn-schedule i {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.btn-schedule:hover i {
    background: white;
    color: var(--primary);
    transform: translateX(8px);
}

/* =========================================
   5. ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(78, 205, 196, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-images {
    position: relative;
    height: 500px;
}

.img-main {
    width: 75%;
    height: 80%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    z-index: 2;
}

.img-main:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.img-sub {
    width: 60%;
    height: 55%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 8px solid white;
    transition: var(--transition-smooth);
    z-index: 1;
}

.img-sub:hover {
    transform: translateY(-5px);
}

/* =========================================
   6. SERVICES TEASERS
   ========================================= */
.teaser-section {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.teaser-box {
    flex: 1;
    min-width: 300px;
    padding: 80px 45px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.teaser-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.03) 0%, rgba(106, 137, 204, 0.03) 100%);
    z-index: 0;
    transition: var(--transition-normal);
    opacity: 0;
}

.teaser-box:hover::before {
    opacity: 1;
}

.teaser-box.light {
    background: var(--bg-light);
}

.teaser-box.white {
    background: var(--bg-white);
}

.teaser-box h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.teaser-box p {
    color: var(--text-medium);
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.teaser-box:hover {
    transform: translateY(-10px);
}

/* =========================================
   7. FULL SERVICES LIST
   ========================================= */
.full-services {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 650px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.fs-col {
    padding: 70px 50px;
}

.fs-text {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fs-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.fs-text .divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 25px 0;
    border-radius: 2px;
}

.fs-text p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.fs-list {
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fs-list ul {
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.fs-list li {
    padding: 16px 0;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    position: relative;
}

.fs-list li:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

.fs-list li::before {
    content: '✓';
    position: absolute;
    left: -25px;
    color: var(--primary);
    font-weight: bold;
    opacity: 0;
    transition: var(--transition-normal);
}

.fs-list li:hover::before {
    opacity: 1;
    left: -20px;
}

.fs-img {
    background:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
}

/* =========================================
   8. BUTTON STYLES
   ========================================= */
.btn-link {
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.btn-link i {
    margin-left: 12px;
    color: var(--primary);
    transition: var(--transition-normal);
}

.btn-link:hover {
    color: var(--primary);
}

.btn-link:hover::after {
    width: 100%;
}

.btn-link:hover i {
    transform: translateX(8px);
}

/* =========================================
   9. FOOTER & EMERGENCY
   ========================================= */
.emergency-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.emergency-bar p {
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.emergency-bar strong {
    font-size: 1.4rem;
    font-weight: 700;
}

footer {
    background: var(--bg-light);
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.footer-logo {
    opacity: 0.8;
    height: 55px;
    margin-bottom: 40px;
    filter: grayscale(100%) brightness(0.8);
    transition: var(--transition-normal);
}

.footer-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-nav li a {
    position: relative;
    padding-bottom: 5px;
}

.footer-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.footer-nav li a:hover {
    color: var(--primary);
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* =========================================
   10. ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   11. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-image {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        width: 45%;
        opacity: 0.7;
    }

    .schedule-card {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
        max-width: 600px;
    }

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

    .about-images {
        height: 400px;
        margin-top: 50px;
    }

    .full-services {
        grid-template-columns: 1fr;
    }

    .sidebar-fixed {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .fs-col {
        padding: 50px 30px;
    }

    .teaser-box {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-image {
        display: none;
    }

    .hero-overlay {
        background: rgba(249, 252, 253, 0.9);
    }

    .section-padding {
        padding: 80px 0;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================================
   13. NEW INFORMATIONEN PAGE STYLES
   ========================================= */

/* Calm & Clarity Hero */
.info-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1505330622279-bf7d7fc918f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center;
    background-size: cover;
    margin-bottom: 0;
}

.info-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 58, 71, 0.3), rgba(255, 255, 255, 1));
    z-index: 1;
}

.info-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.sub-headline {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.info-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Patient Journey Timeline */
.section-title-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.title-separator {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 20px;
}

.journey-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 40px 0;
}

.journey-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.journey-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-medium);
    font-size: 1.5rem;
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.journey-step:hover .journey-icon {
    transform: translateY(-5px);
    background: var(--primary);
    color: white;
}

.journey-content h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.journey-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.journey-connector {
    flex: 0 0 100px;
    height: 2px;
    background: #e0e0e0;
    margin-top: 40px;
    position: relative;
    top: 5px;
    /* Adjust based on icon size */
}

/* Glass Accordion FAQ */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: var(--transition-normal);
}

.faq-question span {
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    opacity: 0;
    transition: all 0.4s ease;
    background: var(--bg-light);
}

.faq-item.active {
    box-shadow: var(--shadow-medium);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approx height */
    padding: 20px 30px;
    opacity: 1;
}

/* Download Cards */
.downloads-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-card {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.download-card:hover {
    background: white;
    box-shadow: var(--shadow-medium);
    border-color: rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.dl-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 20px;
    box-shadow: var(--shadow-soft);
}

.dl-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dl-info span {
    font-weight: 600;
    color: var(--text-dark);
}

.dl-info small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.dl-arrow {
    color: var(--text-light);
    transition: var(--transition-normal);
}

.download-card:hover .dl-arrow {
    color: var(--primary);
}

/* Mobile Adjustments for Info Page */
@media (max-width: 992px) {
    .journey-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

    .journey-step {
        display: flex;
        text-align: left;
        margin-bottom: 40px;
        padding: 0;
    }

    .journey-icon {
        margin: 0 20px 0 0;
        flex: 0 0 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .journey-connector {
        display: none;
    }

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

/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =           1 5 .   K O N T A K T   P A G E   S T Y L E S           = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /         . c o n t a c t - g r i d    {
                 d i s p l a y :    g r i d ;
                 g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( 2 ,    1 f r ) ;
                 g a p :    4 0 p x ;
                 m a r g i n - b o t t o m :    8 0 p x ;
         
}

         . c o n t a c t - g l a s s - c a r d    {
                 b a c k g r o u n d :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 9 ) ;
                 b a c k d r o p - f i l t e r :    b l u r ( 1 0 p x ) ;
                 b o r d e r :    1 p x   s o l i d   r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 5 ) ;
                 b o r d e r - r a d i u s :    2 0 p x ;
                 p a d d i n g :    4 0 p x ;
                 b o x - s h a d o w :    v a r ( - - s h a d o w - s o f t ) ;
                 t r a n s i t i o n :    v a r ( - - t r a n s i t i o n - n o r m a l ) ;
         
}

         . c o n t a c t - g l a s s - c a r d : h o v e r    {
                 t r a n s f o r m :    t r a n s l a t e Y ( - 5 p x ) ;
                 b o x - s h a d o w :    v a r ( - - s h a d o w - h o v e r ) ;
                 b o r d e r - c o l o r :    v a r ( - - p r i m a r y ) ;
         
}

         . c - c a r d - h e a d e r    {
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 g a p :    2 0 p x ;
                 m a r g i n - b o t t o m :    3 0 p x ;
                 p a d d i n g - b o t t o m :    2 0 p x ;
                 b o r d e r - b o t t o m :    1 p x   s o l i d   v a r ( - - b o r d e r - l i g h t ) ;
         
}

         . c - i c o n    {
                 w i d t h :    6 0 p x ;
                 h e i g h t :    6 0 p x ;
                 b a c k g r o u n d :    v a r ( - - p r i m a r y - l i g h t ) ;
                 c o l o r :    v a r ( - - p r i m a r y ) ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 f o n t - s i z e :    1 . 5 r e m ;
         
}

         . c - d e t a i l s   p    {
                 m a r g i n - b o t t o m :    1 5 p x ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    f l e x - s t a r t ;
                 g a p :    1 5 p x ;
                 c o l o r :    v a r ( - - t e x t - m e d i u m ) ;
         
}

         . c - d e t a i l s   i    {
                 c o l o r :    v a r ( - - p r i m a r y ) ;
                 m a r g i n - t o p :    5 p x ;
         
}

         / *   M a p   S e c t i o n   * /     . m a p - c o n t a i n e r    {
                 h e i g h t :    4 5 0 p x ;
                 b o r d e r - r a d i u s :    2 0 p x ;
                 o v e r f l o w :    h i d d e n ;
                 b o x - s h a d o w :    v a r ( - - s h a d o w - m e d i u m ) ;
                 m a r g i n - b o t t o m :    1 0 0 p x ;
                 p o s i t i o n :    r e l a t i v e ;
                 b a c k g r o u n d :    # e 9 e f f 5 ;
                 / *   P l a c e h o l d e r   c o l o r   * /     
}

         . m a p - p l a c e h o l d e r    {
                 w i d t h :    1 0 0 % ;
                 h e i g h t :    1 0 0 % ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 c o l o r :    v a r ( - - t e x t - l i g h t ) ;
                 f o n t - s i z e :    1 . 2 r e m ;
                 f o n t - w e i g h t :    6 0 0 ;
         
}

         / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =           1 6 .   B O O K I N G   ( T E R M I N B U C H U N G )   W I Z A R D           = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /         . b o o k i n g - w i z a r d    {
                 m a x - w i d t h :    9 0 0 p x ;
                 m a r g i n :    - 5 0 p x   a u t o   1 0 0 p x ;
                 / *   O v e r l a p   h e r o   * /             p o s i t i o n :    r e l a t i v e ;
                 z - i n d e x :    1 0 ;
                 b a c k g r o u n d :    w h i t e ;
                 b o r d e r - r a d i u s :    2 0 p x ;
                 b o x - s h a d o w :    v a r ( - - s h a d o w - h o v e r ) ;
                 p a d d i n g :    5 0 p x ;
         
}

         / *   W i z a r d   S t e p s   * /     . w i z a r d - s t e p s    {
                 d i s p l a y :    f l e x ;
                 j u s t i f y - c o n t e n t :    s p a c e - b e t w e e n ;
                 m a r g i n - b o t t o m :    5 0 p x ;
                 p o s i t i o n :    r e l a t i v e ;
         
}

         . w i z a r d - s t e p s : : b e f o r e    {
                 c o n t e n t :    ' '  ;
                 p o s i t i o n :    a b s o l u t e ;
                 t o p :    2 0 p x ;
                 l e f t :    0 ;
                 w i d t h :    1 0 0 % ;
                 h e i g h t :    2 p x ;
                 b a c k g r o u n d :    v a r ( - - b g - l i g h t ) ;
                 z - i n d e x :    0 ;
         
}

         . w - s t e p    {
                 p o s i t i o n :    r e l a t i v e ;
                 z - i n d e x :    1 ;
                 t e x t - a l i g n :    c e n t e r ;
                 b a c k g r o u n d :    w h i t e ;
                 p a d d i n g :    0   1 0 p x ;
                 w i d t h :    3 3 . 3 3 % ;
         
}

         . w - n u m b e r    {
                 w i d t h :    4 0 p x ;
                 h e i g h t :    4 0 p x ;
                 b a c k g r o u n d :    v a r ( - - b g - l i g h t ) ;
                 c o l o r :    v a r ( - - t e x t - l i g h t ) ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 f o n t - w e i g h t :    7 0 0 ;
                 m a r g i n :    0   a u t o   1 0 p x ;
                 t r a n s i t i o n :    v a r ( - - t r a n s i t i o n - n o r m a l ) ;
         
}

         . w - s t e p . a c t i v e   . w - n u m b e r    {
                 b a c k g r o u n d :    v a r ( - - p r i m a r y ) ;
                 c o l o r :    w h i t e ;
         
}

         . w - l a b e l    {
                 f o n t - s i z e :    0 . 9 r e m ;
                 f o n t - w e i g h t :    6 0 0 ;
                 c o l o r :    v a r ( - - t e x t - l i g h t ) ;
         
}

         . w - s t e p . a c t i v e   . w - l a b e l    {
                 c o l o r :    v a r ( - - p r i m a r y - d a r k ) ;
         
}

         / *   S t e p   C o n t e n t   * /     . s t e p - c o n t e n t    {
                 d i s p l a y :    n o n e ;
                 a n i m a t i o n :    f a d e I n   0 . 5 s   e a s e ;
         
}

         . s t e p - c o n t e n t . a c t i v e    {
                 d i s p l a y :    b l o c k ;
         
}

         / *   S e l e c t i o n   C a r d s   ( R a d i o   B o x )   * /     . r a d i o - g r i d    {
                 d i s p l a y :    g r i d ;
                 g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( 2 ,    1 f r ) ;
                 g a p :    2 0 p x ;
         
}

         . r a d i o - c a r d - l a b e l    {
                 c u r s o r :    p o i n t e r ;
         
}

         . r a d i o - i n p u t    {
                 d i s p l a y :    n o n e ;
         
}

         . r a d i o - c a r d    {
                 b o r d e r :    2 p x   s o l i d   v a r ( - - b g - l i g h t ) ;
                 b o r d e r - r a d i u s :    1 5 p x ;
                 p a d d i n g :    3 0 p x ;
                 t e x t - a l i g n :    c e n t e r ;
                 t r a n s i t i o n :    v a r ( - - t r a n s i t i o n - n o r m a l ) ;
         
}

         . r a d i o - i n p u t : c h e c k e d + . r a d i o - c a r d    {
                 b o r d e r - c o l o r :    v a r ( - - p r i m a r y ) ;
                 b a c k g r o u n d :    v a r ( - - p r i m a r y - l i g h t ) ;
         
}

         . r a d i o - c a r d   i    {
                 f o n t - s i z e :    2 . 5 r e m ;
                 c o l o r :    v a r ( - - t e x t - l i g h t ) ;
                 m a r g i n - b o t t o m :    1 5 p x ;
                 d i s p l a y :    b l o c k ;
         
}

         . r a d i o - i n p u t : c h e c k e d + . r a d i o - c a r d   i    {
                 c o l o r :    v a r ( - - p r i m a r y ) ;
         
}

         . r a d i o - c a r d   h 4    {
                 m a r g i n - b o t t o m :    5 p x ;
                 f o n t - s i z e :    1 . 1 r e m ;
         
}

         / *   C a l e n d a r   M o n t h   M o c k u p   * /     . c a l e n d a r - m o c k    {
                 b o r d e r :    1 p x   s o l i d   v a r ( - - b o r d e r - l i g h t ) ;
                 b o r d e r - r a d i u s :    1 0 p x ;
                 o v e r f l o w :    h i d d e n ;
         
}

         . c a l - h e a d e r    {
                 b a c k g r o u n d :    v a r ( - - b g - l i g h t ) ;
                 p a d d i n g :    1 5 p x ;
                 t e x t - a l i g n :    c e n t e r ;
                 f o n t - w e i g h t :    7 0 0 ;
         
}

         . c a l - g r i d    {
                 d i s p l a y :    g r i d ;
                 g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( 7 ,    1 f r ) ;
                 p a d d i n g :    1 0 p x ;
                 g a p :    5 p x ;
         
}

         . c a l - d a y - n a m e    {
                 t e x t - a l i g n :    c e n t e r ;
                 f o n t - s i z e :    0 . 8 r e m ;
                 c o l o r :    v a r ( - - t e x t - m e d i u m ) ;
                 p a d d i n g :    1 0 p x   0 ;
         
}

         . c a l - d a t e    {
                 t e x t - a l i g n :    c e n t e r ;
                 p a d d i n g :    1 0 p x   0 ;
                 b o r d e r - r a d i u s :    5 p x ;
                 c u r s o r :    p o i n t e r ;
                 f o n t - s i z e :    0 . 9 r e m ;
         
}

         . c a l - d a t e : h o v e r    {
                 b a c k g r o u n d :    v a r ( - - b g - l i g h t ) ;
         
}

         . c a l - d a t e . a c t i v e    {
                 b a c k g r o u n d :    v a r ( - - p r i m a r y ) ;
                 c o l o r :    w h i t e ;
         
}

         . c a l - d a t e . d i s a b l e d    {
                 c o l o r :    # e 0 e 0 e 0 ;
                 c u r s o r :    n o t - a l l o w e d ;
         
}

         / *   T i m e   S l o t s   * /     . t i m e - s l o t s    {
                 d i s p l a y :    g r i d ;
                 g r i d - t e m p l a t e - c o l u m n s :    r e p e a t ( 3 ,    1 f r ) ;
                 g a p :    1 0 p x ;
                 m a r g i n - t o p :    2 0 p x ;
         
}

         . t i m e - b t n    {
                 p a d d i n g :    1 0 p x ;
                 b o r d e r :    1 p x   s o l i d   v a r ( - - p r i m a r y ) ;
                 b a c k g r o u n d :    w h i t e ;
                 c o l o r :    v a r ( - - p r i m a r y ) ;
                 b o r d e r - r a d i u s :    8 p x ;
                 c u r s o r :    p o i n t e r ;
                 f o n t - w e i g h t :    6 0 0 ;
                 t r a n s i t i o n :    v a r ( - - t r a n s i t i o n - n o r m a l ) ;
         
}

         . t i m e - b t n : h o v e r ,
     . t i m e - b t n . a c t i v e    {
                 b a c k g r o u n d :    v a r ( - - p r i m a r y ) ;
                 c o l o r :    w h i t e ;
         
}

         / *   F o r m   A c t i o n s   * /     . f o r m - a c t i o n s    {
                 m a r g i n - t o p :    4 0 p x ;
                 d i s p l a y :    f l e x ;
                 j u s t i f y - c o n t e n t :    f l e x - e n d ;
                 g a p :    2 0 p x ;
         
}

         . b t n - s c h e d u l e    {
                 b a c k g r o u n d :    v a r ( - - p r i m a r y ) ;
                 c o l o r :    w h i t e ;
                 p a d d i n g :    1 5 p x   4 0 p x ;
                 b o r d e r - r a d i u s :    5 0 p x ;
                 f o n t - w e i g h t :    7 0 0 ;
                 l e t t e r - s p a c i n g :    0 . 5 p x ;
                 b o r d e r :    n o n e ;
                 c u r s o r :    p o i n t e r ;
                 t r a n s i t i o n :    v a r ( - - t r a n s i t i o n - n o r m a l ) ;
                 b o x - s h a d o w :    0   1 0 p x   2 0 p x   r g b a ( 7 8 ,    2 0 5 ,    1 9 6 ,    0 . 3 ) ;
         
}

         . b t n - s c h e d u l e : h o v e r    {
                 t r a n s f o r m :    t r a n s l a t e Y ( - 2 p x ) ;
                 b o x - s h a d o w :    0   1 5 p x   3 0 p x   r g b a ( 7 8 ,    2 0 5 ,    1 9 6 ,    0 . 4 ) ;
         
}

         . b t n - b a c k    {
                 p a d d i n g :    1 5 p x   3 0 p x ;
                 b a c k g r o u n d :    t r a n s p a r e n t ;
                 b o r d e r :    n o n e ;
                 c o l o r :    v a r ( - - t e x t - m e d i u m ) ;
                 f o n t - w e i g h t :    6 0 0 ;
                 c u r s o r :    p o i n t e r ;
         
}

         / *   C o n t a c t   F o r m   S i m p l e   * /     . c o n t a c t - f o r m - s i m p l e    {
                 b a c k g r o u n d :    w h i t e ;
                 p a d d i n g :    5 0 p x ;
                 b o r d e r - r a d i u s :    2 0 p x ;
                 b o x - s h a d o w :    v a r ( - - s h a d o w - m e d i u m ) ;
         
}

         . f o r m - g r o u p    {
                 m a r g i n - b o t t o m :    2 5 p x ;
         
}

         . f o r m - c o n t r o l    {
                 w i d t h :    1 0 0 % ;
                 p a d d i n g :    1 5 p x   2 0 p x ;
                 b o r d e r :    1 p x   s o l i d   v a r ( - - b o r d e r - l i g h t ) ;
                 b o r d e r - r a d i u s :    1 0 p x ;
                 f o n t - f a m i l y :    i n h e r i t ;
                 t r a n s i t i o n :    v a r ( - - t r a n s i t i o n - n o r m a l ) ;
                 b a c k g r o u n d :    v a r ( - - b g - l i g h t ) ;
         
}

         . f o r m - c o n t r o l : f o c u s    {
                 o u t l i n e :    n o n e ;
                 b o r d e r - c o l o r :    v a r ( - - p r i m a r y ) ;
                 b a c k g r o u n d :    w h i t e ;
         
}

         / *   R e s p o n s i v e   W i z a r d   * /     @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )    {
                 . b o o k i n g - w i z a r d    {
                             p a d d i n g :    3 0 p x   2 0 p x ;
                     
    }

                     . r a d i o - g r i d    {
                             g r i d - t e m p l a t e - c o l u m n s :    1 f r ;
                     
    }

                     . c o n t a c t - g r i d    {
                             g r i d - t e m p l a t e - c o l u m n s :    1 f r ;
                     
    }

         
}

/* =========================================
   15. BOOKING WIZARD STYLES (NEW)
   ========================================= */

.booking-section {
    min-height: 800px;
}

.wizard-container {
    max-width: 900px;
    margin: -100px auto 50px;
    /* Overlap hero */
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    overflow: hidden;
    padding: 50px;
}

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

.wizard-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.wizard-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* Progress Bar */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 60px;
    padding: 0 40px;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: #eee;
    z-index: 0;
}

.progress-line-fill {
    position: absolute;
    top: 20px;
    left: 60px;
    height: 4px;
    background: var(--primary);
    z-index: 0;
    transition: width 0.5s ease;
}

.step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step-item.active,
.step-item.completed {
    opacity: 1;
}

.step-circle {
    width: 44px;
    height: 44px;
    background: white;
    border: 3px solid #eee;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 0 5px rgba(78, 205, 196, 0.2);
}

.step-item.completed .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Wizard Content */
.wizard-step {
    animation: fadeIn 0.5s ease;
}

.step-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* Location Grid */
.location-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.location-card {
    cursor: pointer;
    position: relative;
    display: block;
}

.location-card input {
    display: none;
}

.loc-card-inner {
    background: white;
    border: 2px solid transparent;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover .loc-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.location-card input:checked+.loc-card-inner {
    border-color: var(--primary);
    background: #f0fdfc;
}

.loc-img {
    height: 180px;
    overflow: hidden;
}

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

.location-card:hover .loc-img img {
    transform: scale(1.1);
}

.loc-info {
    padding: 25px;
    text-align: center;
}

.loc-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.loc-info p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-badge.open {
    background: #e3f9e5;
    color: #27ae60;
}

.status-badge.closed {
    background: #ffe3e3;
    color: #c0392b;
}

.check-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.location-card input:checked+.loc-card-inner .check-circle {
    opacity: 1;
    transform: scale(1);
}

/* Reason Grid */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.reason-card {
    cursor: pointer;
    display: block;
}

.reason-card input {
    display: none;
}

.reason-inner {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.reason-card:hover .reason-inner {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.reason-card:hover .reason-icon {
    transform: scale(1.1);
}

.reason-card input:checked+.reason-inner {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

.reason-card input:checked+.reason-inner .reason-icon {
    color: white;
}

/* Wizard Actions */
.wizard-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.btn-wizard {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-wizard:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

.btn-wizard.btn-prev {
    background: transparent;
    color: var(--text-medium);
    border: 2px solid var(--border-light);
}

.btn-wizard.btn-prev:hover {
    background: #f5f5f5;
    color: var(--text-dark);
    border-color: var(--text-light);
    box-shadow: none;
}

/* Trust Row */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .booking-section {
        min-height: auto;
    }

    .wizard-container {
        padding: 30px 20px;
        margin-top: -50px;
    }

    .wizard-progress {
        padding: 0;
    }

    .progress-line,
    .progress-line-fill {
        left: 30px;
        right: 30px;
    }

    .step-text {
        display: none;
        /* Hide text on mobile */
    }

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

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

    .trust-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* =========================================
   16. WIZARD STEP 3 & 4 STYLES (CALENDAR/FORM)
   ========================================= */

/* Step 3: Date & Time Split View */
.date-time-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.calendar-wrapper {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.cal-nav {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.cal-nav:hover {
    color: var(--primary);
}

.cal-month {
    font-size: 1.1rem;
    text-transform: uppercase;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.cal-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.cal-day.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(78, 205, 196, 0.4);
}

.cal-day.disabled {
    color: #ddd;
    cursor: not-allowed;
    text-decoration: line-through;
    pointer-events: none;
}

.cal-day.empty {
    cursor: default;
    pointer-events: none;
}

/* Time Slots */
.time-slots-wrapper h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.selected-date-display {
    color: var(--primary);
}

.morning-slots,
.afternoon-slots {
    margin-bottom: 30px;
}

.time-slots-wrapper h5 {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-slots-wrapper h5::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot {
    cursor: pointer;
    position: relative;
}

.time-slot input {
    display: none;
}

.time-slot span {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-medium);
    transition: all 0.2s;
}

.time-slot:hover span:not(.booked) {
    border-color: var(--primary);
    color: var(--primary);
}

.time-slot input:checked+span {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.time-slot input:disabled+span.booked {
    background: #f9f9f9;
    color: #ccc;
    text-decoration: line-through;
    cursor: not-allowed;
    border-color: transparent;
}


/* Step 4: Details Form */
.details-form-container {
    max-width: 700px;
    margin: 0 auto 50px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 5px;
}

.input-wrapper,
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i,
.select-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--text-light);
    font-size: 1rem;
    z-index: 2;
}

.input-wrapper input,
.select-wrapper select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    /* Space for icon */
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fcfcfc;
    transition: all 0.3s ease;
}

.form-group textarea {
    padding: 15px;
    /* No icon usually */
    resize: vertical;
}

.input-wrapper input:focus,
.select-wrapper select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.1);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.form-check input {
    margin-top: 4px;
    accent-color: var(--primary);
    transform: scale(1.2);
}

.form-check a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-finish {
    background: var(--text-dark);
}

.btn-finish:hover {
    background: black;
}

/* Responsive for Steps 3 & 4 */
@media (max-width: 850px) {
    .date-time-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================================
   17. LUXURY KONTAKT PAGE STYLES
   ========================================= */

/* A. Cinematic Hero */
.contact-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    /* Professional Office Image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 58, 71, 0.9), rgba(78, 205, 196, 0.4));
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 30px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtext {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 50px;
}

.hero-scroll-btn {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.8;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* B. Floating Contact Cards */
.contact-cards-section {
    position: relative;
    z-index: 3;
    margin-top: -100px;
    /* Overlap Hero */
    margin-bottom: 80px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.glass-card.highlight {
    background: white;
    border-top: 4px solid var(--primary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

.card-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    flex-grow: 1;
    /* Push details down */
}

.contact-details {
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.detail-row .label {
    color: var(--text-medium);
}

.detail-row .value {
    color: var(--text-dark);
    font-weight: 600;
}

.detail-row .value.highlight-red {
    color: #e74c3c;
}

.card-link {
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    color: var(--primary-dark);
}

.btn-primary-link {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.5px;
    justify-content: center;
}

.btn-primary-link:hover {
    background: var(--primary-dark);
    color: white;
}


/* C. Split Map Section */
.locations-map-section {
    padding: 0;
    margin-bottom: 0;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.split-content {
    flex: 1;
    background: #fcfcfc;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.split-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.gold-separator {
    width: 60px;
    height: 3px;
    background: #d4a373;
    /* Gold accent */
    margin-bottom: 40px;
}

.location-block {
    margin-bottom: 40px;
}

.location-block h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.address {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.address i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.opening-hours-compact {
    background: white;
    padding: 15px 20px;
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.oh-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.btn-directions {
    display: inline-block;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-directions:hover {
    background: var(--text-dark);
    color: white;
}

.split-map {
    flex: 1;
    min-height: 400px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
    filter: saturate(0.8) contrast(1.1);
    /* Cinematic map look */
}


/* D. Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #fff;
}

.form-wrapper-glass {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 30px;
    background: white;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
}

.premium-form .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group.floating {
    position: relative;
    flex: 1;
    margin-bottom: 30px;
}

.form-group.floating input,
.form-group.floating select,
.form-group.floating textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s;
    border-radius: 0;
}

.form-group.floating label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-group.floating input:focus,
.form-group.floating textarea:focus,
.form-group.floating select:focus,
.form-group.floating input:not(:placeholder-shown),
.form-group.floating textarea:not(:placeholder-shown) {
    border-bottom-color: var(--primary);
}

.form-group.floating input:focus+label,
.form-group.floating textarea:focus+label,
.form-group.floating select:focus+label,
.form-group.floating input:not(:placeholder-shown)+label,
.form-group.floating textarea:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary);
}

.btn-submit-luxury {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-submit-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(78, 205, 196, 0.4);
}

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

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

    .split-layout {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-wrapper-glass {
        padding: 30px;
    }
}


     