:root {
    --primary-orange: #f1820e;
    --primary-blue: #004E89;
    --dark-blue: #002F5D;
    --light-orange: #ff9d3d;
    --accent-blue: #1A659E;
    --light-bg: #F8F9FA;
    --gradient-orange: linear-gradient(135deg, #f1820e 0%, #ff9d3d 100%);
    --gradient-blue: linear-gradient(135deg, #004E89 0%, #1A659E 100%);

    /* Akzentfarben */
    --accent-blue: #004E89;
    --accent-teal: #2a9d8f;
    --cream: #fff8f0;
    --warm-white: #fffaf5;
    
    /* Gradients */
    --gradient-orange: linear-gradient(135deg, #f1820e 0%, #ff6b35 50%, #ff9f1c 100%);
    --gradient-sunset: linear-gradient(135deg, #ff6b35 0%, #f1820e 50%, #dc6601 100%);
    --gradient-warm: linear-gradient(135deg, #ffb347 0%, #ff9f1c 50%, #f1820e 100%);
    --gradient-fire: linear-gradient(45deg, #ff6b35, #f1820e, #ff9f1c, #ffb347);
    --gradient-glow: radial-gradient(circle, rgba(241, 130, 14, 0.4) 0%, transparent 70%);
}

        /* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v24-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Animated Background Glow */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 159, 28, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(241, 130, 14, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1.4rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.navbar-brand img {
    height: 53px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand-text {
    font-size: 0.73rem;
    color: #13235b;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1;
    transition: all 0.3s ease;
    opacity: 1;
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.navbar.scrolled .navbar-brand-text {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.1em !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-orange) !important;
}

/* Header */
.header-section {
    /*background-image: linear-gradient(135deg, rgba(0, 66, 117, 0.9) 0%, rgba(0, 66, 117, 0.5) 100%), 
                      url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;*/
    min-height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
}

/* Header Quote - Optimiert */
.header-quote {
    position: relative;
    padding: 2rem 3rem 4rem 3rem;
    margin-bottom: 2.5rem;
    top: 60px;
}

.header-quote::before {
    content: '"';
    position: absolute;
    top: -16px;
    left: 0;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.header-quote p {
    font-size: 2.2rem;
    font-weight: 300;
    color: white;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.header-quote .quote-author {
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: 500;
    letter-spacing: 1px;
}

.btn-primary-custom {
    background: var(--primary-orange);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(241, 130, 14, 0.3);
}

.btn-primary-custom:hover {
    background: var(--light-orange);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 130, 14, 0.4);
}

/* Highlight Strip - Laufband */
.highlight-strip {
    background: url(../img/bg_body.jpg) no-repeat;
    background-size: cover;
    padding: 1.2rem 0;
    position: relative;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 3rem;
    color: var(--primary-blue);
    font-size: 1.15rem;
    font-weight: 500;
}

.marquee-item strong {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0.5rem;
}

.marquee-item .separator {
    margin: 0 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Intro Section */
.intro-section {
    padding: 6rem 0;
    background: white;
}

.intro-image {
    position: relative;
    height: 500px;
}

.intro-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-image-main.animate {
    opacity: 1;
    transform: translateY(0);
}

.intro-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image-main:hover img {
    transform: scale(1.05);
}

.intro-image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 5px solid white;
    z-index: 3;
    opacity: 0;
    transform: translateX(-30px) translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.intro-image-secondary.animate {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.intro-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image-secondary:hover img {
    transform: scale(1.05);
}

.intro-image-accent {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: var(--gradient-orange);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease 0.4s;
}

.intro-image-accent.animate {
    opacity: 0.15;
}

.intro-text h2 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-top: 2rem;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-section h3 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.value-badge {
    background: white;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.value-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-badge i {
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.value-badge span {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(248, 249, 250, 0.92), rgba(248, 249, 250, 0.92)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section-title h2::before {
    right: calc(100% + 20px);
}

.section-title h2::after {
    left: calc(100% + 20px);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card ul {
    text-align: left;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-blue);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: var(--gradient-orange);
}

.service-card h3 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

.service-btn {
    background: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 78, 137, 0.3);
}

.service-collapse {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.service-collapse p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-collapse ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.service-collapse ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Callout Section */
.callout-section {
    padding: 6rem 0;
    background: var(--gradient-sunset);
    position: relative;
    overflow: hidden;
}

.callout-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatBig 10s ease-in-out infinite;
}

.callout-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: floatBig 12s ease-in-out infinite reverse;
}

@keyframes floatBig {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Decorative lines */
.callout-section .callout-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.callout-section .callout-lines::before,
.callout-section .callout-lines::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.callout-section .callout-lines::before {
    top: 30%;
    left: -50%;
    transform: rotate(-5deg);
    animation: lineMove 8s linear infinite;
}

.callout-section .callout-lines::after {
    bottom: 30%;
    right: -50%;
    transform: rotate(5deg);
    animation: lineMove 10s linear infinite reverse;
}

@keyframes lineMove {
    from { transform: translateX(0) rotate(-5deg); }
    to { transform: translateX(50%) rotate(-5deg); }
}

.callout-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.callout-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.callout-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* White Button - Shimmer Effect */
.btn-white-custom {
    background: white;
    color: var(--primary-orange);
    padding: 1.1rem 2.8rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 0 0 var(--primary-orange);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Shimmer effect */
.btn-white-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(241, 130, 14, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-white-custom:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--primary-orange);
    color: white;
    border-color: white;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(241, 130, 14, 0.3);
}

.btn-white-custom:hover::before {
    left: 100%;
}

.btn-white-custom:active {
    transform: translateY(-2px) scale(0.98);
}

/* Location Section - NEU */
.location-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.location-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.opening-hours-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.opening-hours-card h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.opening-hours-card h3 i {
    color: var(--primary-orange);
    font-size: 1.8rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: var(--primary-blue);
}

.hours-list .time {
    color: #555;
}

.hours-list .closed {
    color: #999;
    font-style: italic;
}

.contact-quick {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-orange);
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.2em;
}

.contact-quick-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.contact-quick-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-quick-item a:hover {
    color: var(--primary-orange);
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: white;
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer h5 {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer h6 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(241, 130, 14, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(241, 130, 14, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .header-quote p {
        font-size: 1.6rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 38px;
    }
    
    .navbar-brand-text {
        font-size: 0.8rem;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 32px;
    }
    
    .navbar.scrolled .navbar-brand-text {
        opacity: 0;
        max-height: 0;
    }
    
    .header-section {
        min-height: 80vh;
    }
    
    .header-quote {
        padding: 1.5rem;
    }
    
    .header-quote::before {
        font-size: 5rem;
        top: -10px;
    }
    
    .header-quote p {
        font-size: 1.3rem;
    }
    
    .header-quote .quote-author {
        font-size: 1rem;
    }
    
    .highlight-strip {
        padding: 1rem 0;
    }
    
    .marquee-item {
        font-size: 1rem;
        padding: 0 2rem;
    }
    
    .services-section {
        background-attachment: scroll;
    }
    
    .values-section h3 {
        font-size: 1.5rem;
    }
    
    .value-badge {
        padding: 1rem 0.8rem;
    }
    
    .value-badge i {
        font-size: 1.5rem;
    }
    
    .value-badge span {
        font-size: 0.85rem;
    }
    
    .intro-image {
        margin-top: 3rem;
        height: 400px;
    }
    
    .intro-image-main {
        width: 80%;
        height: 300px;
    }
    
    .intro-image-secondary {
        width: 70%;
        height: 250px;
    }
    
    .intro-image-accent {
        width: 100px;
        height: 100px;
        right: 5%;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .callout-content h2 {
        font-size: 2rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .opening-hours-card {
        margin-top: 2rem;
    }
    .section-title h2::before,
    .section-title h2::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 0;
        height: 0;
        background: var(--gradient-orange);
        border-radius: 2px;
    }
}

/* Google Maps */

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--gradient-blue);
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-consent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.92) 0%, rgba(26, 101, 158, 0.92) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.consent-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 35px;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 20px 60px rgba(0, 47, 93, 0.35);
}

.consent-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(241, 130, 14, 0.3);
}

.consent-card h5 {
    margin: 0 0 10px;
    font-weight: 600;
    color: var(--dark-blue);
}

.consent-card p {
    margin: 0 0 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.btn-consent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-orange);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    justify-content: center;
}

.btn-consent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 130, 14, 0.45);
}

.privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 12px;
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.privacy-link:hover {
    color: var(--primary-orange);
}