/* ==========================================
   FAHRSCHULE SAM - WEISS & LILA DESIGN
   ========================================== */

:root {
    /* Pink Farbpalette */
    --primary: #EC4899;
    --primary-dark: #DB2777;
    --primary-light: #F472B6;
    --primary-50: #FDF2F8;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;

    /* Shadows */
    --shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    --shadow-lg: 0 10px 40px rgba(139, 92, 246, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-700);
    transition: 0.3s;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(253, 242, 248, 0.55) 100%);
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-logo {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-greeting {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Button */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   INFO SECTION
   ========================================== */
.info-section {
    padding: 80px 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: var(--primary);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-card h3 {
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    color: var(--gray-500);
}

.info-card a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s;
}

.info-card a:hover {
    color: var(--primary);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--gray-900);
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-card h3 {
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 18px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* License Badges */
.license-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.license-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

/* Specific Classes Grid */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.class-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.class-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.15);
}

.class-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.class-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.class-desc small {
    display: block;
    margin-top: 5px;
    color: var(--gray-500);
    opacity: 0.8;
}

/* Registration Cards Row + Video Below */
.info-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.registration-card {
    background: var(--white);
    padding: 20px 20px;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(236, 72, 153, 0.10);
    border: 1px solid var(--gray-100);
    border-top: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
}

.registration-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
    font-weight: 500;
}

/* The check icon */
.check-list li::before {
    content: "✓";
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* has-sub: 2-column grid — col1: icon, col2: text / sub-point spans full width */
.check-list li.has-sub {
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 10px;
    row-gap: 5px;
    align-items: start;
}

.check-list li.has-sub::before {
    grid-column: 1;
    grid-row: 1;
    margin-top: 2px;
}

.check-list li.has-sub .li-text {
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.5;
}

.check-list li.has-sub .sub-point {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-left: 30px;
    margin-top: 0;
}

.sub-point {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--gray-500);
    padding-left: 30px;
    width: 100%;
    font-weight: 400;
    line-height: 1.4;
}

.sub-point svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--primary-light);
    transform: scaleX(-1);
    opacity: 0.8;
}

/* Car Image in About Section */
.car-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.car-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.car-image-wrapper:hover .car-image {
    transform: scale(1.03);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

/* ==========================================
   MAP SECTION
   ========================================== */
.map-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    display: block;
}

.map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 18px;
}

.map-address svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray-500);
}

.contact-form {
    background: var(--gray-50);
    padding: 35px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.form-feedback {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.form-feedback.error {
    display: block;
    background: #FEE2E2;
    color: #DC2626;
    border: 1px solid #FCA5A5;
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.instagram-section {
    background: var(--white);
    padding: 28px 0;
    border-top: 1px solid var(--gray-100);
}

.instagram-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 32px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff8f0 0%, #fce4f0 50%, #ede4f7 100%);
    border: 1.5px solid rgba(233, 30, 99, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-wrap: wrap;
    box-shadow: 0 4px 18px rgba(233,30,99,0.08);
}

.instagram-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(233,30,99,0.18);
    border-color: rgba(233, 30, 99, 0.35);
}

.ig-icon-wrap {
    flex-shrink: 0;
}

.ig-icon {
    width: 52px;
    height: 52px;
    display: block;
}

.ig-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.ig-handle {
    font-size: 20px;
    font-weight: 700;
    color: #c2185b;
    letter-spacing: -0.3px;
}

.ig-sub {
    font-size: 14px;
    color: var(--gray-500);
}

.ig-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e91e63 0%, #6a1b9a 100%);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(233,30,99,0.35);
    transition: box-shadow 0.3s;
}

.instagram-banner:hover .ig-cta {
    box-shadow: 0 6px 22px rgba(233,30,99,0.5);
}

.ig-arrow {
    width: 16px;
    height: 16px;
}

/* ==========================================
   GOOGLE REVIEWS SECTION
   ========================================== */
.reviews-section {
    background: #f4f6f9;
    padding: 70px 0 50px;
    border-top: 1px solid var(--gray-200);
}

/* Header: score + Google brand */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-score-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-score-num {
    font-size: 64px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.reviews-stars-lg {
    font-size: 28px;
    color: #FBBC04;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 4px;
}

.reviews-count-text {
    font-size: 14px;
    color: var(--gray-500);
}

.reviews-google-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-g-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.google-label {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

/* Review Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.review-stars {
    font-size: 14px;
    color: #FBBC04;
    letter-spacing: 1px;
}

.review-text {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.65;
    flex: 1;
}

/* CTA Banner */
.reviews-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--white);
    border-radius: 16px;
    padding: 22px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    flex-wrap: wrap;
}

.reviews-cta-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
}

.reviews-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #4285F4;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(66,133,244,0.35);
}

.reviews-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66,133,244,0.45);
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-score-num {
        font-size: 48px;
    }
}

/* ==========================================
   TEAM SECTION
   ========================================== */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: stretch;
    gap: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--gray-500);
    opacity: 0.5;
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.team-role {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.team-desc {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 25px;
}

.team-competence {
    margin-top: auto;
}

.team-competence h4 {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.competence-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .team-image-wrapper {
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }

    .competence-tags {
        justify-content: center;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #111111;
    color: rgba(255,255,255,0.6);
    padding: 14px 0;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    transition-delay: var(--delay, 0s);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .classes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .registration-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================
   DSGVO COOKIE BANNER & MAP PLACEHOLDER
   ========================================== */

/* Map Placeholder */
.map-wrapper {
    position: relative;
    background: var(--gray-100);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 400px;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.map-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.map-placeholder h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 14px;
    color: var(--gray-500);
    max-width: 400px;
    margin-bottom: 20px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--gray-500);
    color: var(--gray-500);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: var(--gray-500);
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 30px 20px;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--gray-500);
    max-width: 700px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons button {
        flex: 1;
        text-align: center;
        padding: 12px 15px;
    }
}

/* Floating Cookie Button */
.floating-cookie-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
    cursor: pointer;
    z-index: 9998;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.floating-cookie-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.6);
    background-color: var(--primary-dark);
}

.floating-cookie-btn svg {
    width: 24px;
    height: 24px;
}