html {
    scroll-behavior: smooth;
}

.text-center { text-align: center; }
.my-auto     { margin-top: auto; margin-bottom: auto; }
.w-100       { width: 100%; }

:root {
    --main-color: #1A5FA8;
    --main-color-focus: #154E8C;
    --color-dark: #1a1a1a;
    --accent-amber: #E8A33D;
    --accent-amber-dark: #C8841F;

    --font-display: 'Archivo', sans-serif;

    /* Type scale - Major Third (1.25×), fluid where meaningful */
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.25rem;
    --text-xl:   clamp(1.375rem, 2vw, 1.5rem);
    --text-2xl:  clamp(1.625rem, 3vw, 2rem);
    --text-3xl:  clamp(1.875rem, 4vw, 2.5rem);
    --text-hero: clamp(3rem, 8vw, 6rem);
}

html, body {
    background-color: white;
    color: var(--color-dark);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* =====================
   Display typography
   ===================== */

.hero-title,
#site-name,
.intro-section h1,
.features-intro h2,
.cta-content h2,
.reviews-section h2,
.about-intro h2,
.trust-intro h2,
.hours-container h2,
.feature-card h3,
.service-card-title,
.contact-card-new h3,
.footer-col h3,
.footer-col h4 {
    font-family: var(--font-display);
}

p {
    margin-top: revert;
}

/* =====================
   Navigation
   ===================== */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
    background: rgba(10, 20, 40, 0.45);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#site-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

#site-brand:hover {
    text-decoration: none;
}

#site-logo {
    width: 38px;
    height: 38px;
    border-radius: 7px;
    display: block;
    flex-shrink: 0;
}

#site-name {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

#site-brand:hover #site-name {
    color: var(--accent-amber);
}

#nav-toggle {
    position: static;
    z-index: auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 0.4rem 0.75rem;
    transition: background 0.25s, border-color 0.25s;
}

#nav-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

#nav-toggle:active {
    background: rgba(232, 163, 61, 0.18);
    border-color: var(--accent-amber);
    color: var(--accent-amber);
    transition: background 0.08s ease, border-color 0.08s ease, color 0.08s ease;
}

#nav-toggle:active .nav-toggle-label {
    color: var(--accent-amber);
}

.nav-toggle-icon {
    font-size: 1.2rem;
    line-height: 1;
    position: relative;
    top: 0.1em;
}

.nav-toggle-label {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
}

#nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 999;
}

#nav-overlay.visible {
    display: block;
}

#nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    background: rgba(8, 16, 32, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding-top: 4.5rem;
}

#nav-drawer.open {
    transform: translateX(0);
}

#nav-drawer ul,
#nav-drawer ul li {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

#nav-drawer ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

#nav-drawer ul li a {
    display: block;
    padding: 1.25rem 2rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: var(--text-base);
    letter-spacing: 0.02em;
    transition: color 0.2s, padding-left 0.2s, background 0.2s;
    position: relative;
}

#nav-drawer ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: var(--accent-amber);
    border-radius: 0 2px 2px 0;
    transition: transform 0.2s ease;
}

#nav-drawer ul li a:hover {
    color: white;
    padding-left: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
}

#nav-drawer ul li a:hover::before {
    transform: translateY(-50%) scaleY(1);
}

#nav-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.3rem 0.5rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

#nav-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}

body.nav-open {
    overflow: hidden;
}

/* =====================
   Hero Section
   ===================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper div gives overflow:hidden to a regular block element instead of
   relying on the positioned ancestor - browsers skip overflow clipping for
   hardware-composited video layers in some rendering paths. */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 30, 60, 0.65), rgba(5, 20, 50, 0.82));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}

.hero-title {
    font-size: var(--text-hero);
    color: white;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin: 0;
}

.hero-subtitle {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    margin-top: 1rem;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.4rem;
    animation: scrollBounce 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
    50% { transform: translateX(-50%) translateY(9px); opacity: 0.9; }
}

/* =====================
   Inner Page Headers
   ===================== */

.intro-section {
    width: 100%;
    min-height: 40vh;
    padding-top: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    color: white;
}

.intro-section-contact {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../img/contact.jpg") center/cover;
}

.intro-section-services {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../img/workers.jpg") center/cover;
}

.intro {
    font-family: 'Inter', sans-serif;
}

.intro > p {
    color: white;
    font-size: var(--text-lg);
    margin-left: 5%;
    margin-right: 5%;
}

.intro-section h1 {
    font-size: var(--text-3xl);
    font-weight: 700;
}

/* =====================
   Separator
   ===================== */

.separator {
    display: block;
    border: none;
    height: 2px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) -50%, var(--main-color) 50%, rgba(0, 0, 0, 0) 150%);
}

/* =====================
   Features Section
   ===================== */

.features-section {
    position: relative;
    z-index: 1;
    padding: 5rem 10%;
    background: white;
}

.features-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.features-intro h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.features-intro p {
    color: #555;
    line-height: 1.8;
    font-size: var(--text-base);
}

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

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #666;
    font-size: var(--text-base);
    line-height: 1.7;
}

.feature-card a {
    color: var(--main-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--main-color), var(--main-color-focus));
    color: var(--accent-amber);
    font-size: 2rem;
    box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.32), 0 6px 20px rgba(26, 95, 168, 0.25);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-icon:hover {
    box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.55), 0 8px 28px rgba(26, 95, 168, 0.3);
    transform: translateY(-2px);
}

/* =====================
   CTA Banner
   ===================== */

.cta-banner {
    position: relative;
    z-index: 1;
    background: linear-gradient(rgba(10, 30, 60, 0.80), rgba(5, 20, 50, 0.90)), url('../img/workers.jpg') center/cover;
    padding: 6rem 10%;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--text-base);
}

/* =====================
   Reviews Section
   ===================== */

.reviews-section {
    position: relative;
    z-index: 1;
    padding: 4rem 10%;
    text-align: center;
    background: #f8f9fa;
}

.reviews-section h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.reviews-logos {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2rem 2.5rem;
    width: 280px;
    background: white;
    border-top: 3px solid var(--main-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-top-color 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 8px 40px rgba(26, 95, 168, 0.15);
    border-top-color: var(--accent-amber);
    transform: translateY(-3px);
    text-decoration: none;
}

.review-card-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 0.04em;
}

.review-image-google,
.review-image-oferteo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* =====================
   Footer
   ===================== */

.site-footer {
    position: relative;
    z-index: 1;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 10% 0;
}

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

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.footer-col p {
    font-size: var(--text-sm);
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.55rem 0;
}

.footer-col p a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col p a:hover {
    color: var(--accent-amber);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent-amber);
}

.footer-icon {
    color: var(--main-color);
    margin-right: 0.5rem;
    width: 1rem;
    text-align: center;
    display: inline-block;
}

.footer-reviews {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    max-height: 40px;
    width: auto;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.footer-badge:hover {
    opacity: 1;
}

.footer-badge-google {
    max-height: 28px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: var(--text-xs);
    margin: 0;
}

.footer-credit {
    margin: 0.35rem 0 0;
    opacity: 0.7;
}

.footer-credit a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer-credit a:hover {
    color: var(--main-color);
}

/* =====================
   Utilities
   ===================== */

.color-main {
    color: var(--main-color);
}

/* =====================
   Buttons
   ===================== */

.btn {
    background: transparent;
    color: var(--main-color);
    text-decoration: none;
    padding: .75rem 1.25rem;
    font-weight: 500;
    border: 2px solid var(--main-color);
    border-radius: 0;
    margin-top: 1%;
}

.btn:hover {
    background: var(--main-color);
    border-color: var(--main-color) !important;
    color: white;
}

.btn:focus {
    background: var(--main-color-focus);
    box-shadow: none;
}

.btn-blue {
    color: var(--main-color);
}

.btn-circle-down {
    color: white;
}

.btn-circle-down:hover {
    color: var(--main-color);
}

.btn-icon {
    margin-left: 5px;
}

/* =====================
   Cookie Banner
   ===================== */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 9999;
    font-size: var(--text-sm);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    text-align: center;
}

#cookie-banner button {
    flex-shrink: 0;
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: .4rem 1rem;
    cursor: pointer;
    font-weight: 600;
}

/* =====================
   Services Page
   ===================== */

.card-service {
    border-radius: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .15), 0 3px 10px 0 rgba(0, 0, 0, .1);
}

.service-description {
    font-size: var(--text-lg);
    margin-left: 20px;
    vertical-align: super;
    font-weight: 600;
}

.icon-check {
    color: #77dd77;
}

/* =====================
   Contact Page
   ===================== */

#google-map {
    width: 100%;
    min-height: 300px;
    border-top: var(--main-color) 2px solid;
    border-bottom: var(--main-color) 2px solid;
    border-right: none;
    border-left: none;
}

#google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.card-contact {
    border: none;
    margin-bottom: 25px;
}

.card-contact i,
.card-contact .btn {
    color: var(--main-color);
}

.card-contact .btn {
    font-weight: bold;
    border-width: 2px;
}

.card-contact .btn:hover,
.card-contact .btn:hover > i {
    color: white !important;
}

.card-contact > .card-footer {
    background-color: transparent;
    border: none;
}

.contact-details {
    margin-top: 20px;
}

.card-contact h2.card-title {
    font-size: var(--text-2xl);
}

.contact-value {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* =====================
   Gallery
   ===================== */

.img-gallery {
    border-radius: .3rem !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2), 0 3px 10px 0 rgba(0, 0, 0, .15) !important;
    width: 100%;
}

/* =====================
   Back to top button
   ===================== */

#btn-up {
    display: none;
    opacity: .5;
    width: 50px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    margin: 25px;
}

#btn-up:active {
    background-color: var(--main-color);
}

/* =====================
   Cookies Alert
   ===================== */

#cookies-alert {
    display: none;
    margin-bottom: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.75);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
}

#cookies-alert .close {
    color: var(--accent-amber);
    text-shadow: none;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
}

#cookies-alert .close:hover {
    color: var(--accent-amber);
    opacity: 1;
}

/* =====================
   Responsive
   ===================== */

@media (max-width: 992px) {
    .features-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

@media (max-width: 1200px) {
    .row {
        width: 100%;
    }

    .features-section {
        padding: 3rem 5%;
    }

    .cta-banner {
        padding: 4rem 5%;
    }

    .reviews-section {
        padding: 3rem 5%;
    }

    .site-footer {
        padding: 3rem 5% 0;
    }

    #btn-up {
        margin: 10px;
    }

    .row-service-description {
        text-align: left;
        width: 100%;
    }

    .row-service-description .fa-3x {
        font-size: 2rem;
    }

    .service-description {
        font-weight: 400;
    }
}

@media (max-width: 767px) {
    #nav-drawer {
        width: 85vw;
    }
}

/* =====================
   Services Section
   ===================== */

.services-section {
    padding: 5rem 10%;
    background: white;
}

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

.service-card {
    background: white;
    border-left: 3px solid var(--main-color);
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 40px rgba(26, 95, 168, 0.15);
    transform: translateY(-3px);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-card-header .feature-icon {
    margin: 0;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.service-card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin: 0;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555;
    font-size: var(--text-base);
}

.service-card-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.service-card-list li:last-child {
    border-bottom: none;
}

.service-card-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--accent-amber);
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.service-card-body {
    color: #555;
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-card-body p {
    margin: 0;
}

/* =====================
   Expandable Service Cards
   ===================== */

details.service-card {
    cursor: default;
}

details.service-card > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 0;
    user-select: none;
}

details.service-card > summary::-webkit-details-marker {
    display: none;
}

details.service-card[open] > summary {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card-summary-text {
    flex: 1;
    min-width: 0;
}

.service-card-teaser {
    color: #777;
    font-size: var(--text-sm);
    margin: 0.3rem 0 0;
    line-height: 1.5;
    font-weight: 400;
}

.service-card-chevron {
    color: var(--main-color);
    font-size: 0.9rem;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    padding-left: 0.5rem;
}

details.service-card[open] .service-card-chevron {
    transform: rotate(180deg);
}

details.service-card[open] {
    align-self: stretch;
}

/* =====================
   About / O nas page
   ===================== */

.intro-section-o-nas {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../img/workers.jpg") center/cover;
}

.about-section {
    padding: 5rem 10%;
    background: white;
}

.about-intro {
    max-width: 820px;
    margin: 0 auto;
}

.about-intro h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-intro p {
    color: #555;
    line-height: 1.9;
    font-size: var(--text-base);
    margin-bottom: 1.25rem;
}

.trust-section {
    padding: 5rem 10%;
    background: #f8f9fa;
}

.trust-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.trust-intro h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
}

.trust-section .features-cards {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {
    .about-section,
    .trust-section {
        padding: 3rem 5%;
    }
}

@media (max-width: 992px) {
    .trust-section .features-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* White outline button for dark/blue backgrounds */
.btn-outline-white {
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
    display: inline-block;
}

.btn-outline-white:hover {
    background: white;
    border-color: white;
    color: var(--main-color);
}

/* =====================
   Contact Section
   ===================== */

.contact-section {
    padding: 5rem 10%;
    background: white;
}

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

.contact-card-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-top: 3px solid var(--main-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-top-color 0.3s ease;
}

.contact-card-new:hover {
    box-shadow: 0 8px 40px rgba(26, 95, 168, 0.15);
    border-top-color: var(--accent-amber);
    transform: translateY(-3px);
}

.contact-card-new .feature-icon {
    margin: 0 auto 1.5rem;
}

.contact-card-new h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 1rem;
}


.contact-value-email {
    font-size: var(--text-base);
    font-weight: 600;
    word-break: break-all;
    margin-bottom: 0.25rem;
}

.contact-value-sm {
    font-size: var(--text-base);
    font-weight: 600;
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.contact-card-new .btn {
    margin-top: auto;
    display: inline-block;
}

/* Map */
.map-section iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
    border-top: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
}

/* Opening hours */
.hours-section {
    padding: 5rem 10%;
    background: #f8f9fa;
}

.hours-container {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.hours-container .feature-icon {
    margin: 0 auto 1.5rem;
}

.hours-container h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 0;
}

.hours-table {
    width: 100%;
    margin-top: 2rem;
}

.hours-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row:nth-child(even) {
    background: rgba(26, 95, 168, 0.04);
}

.hours-day {
    text-align: right;
    color: #555;
    padding-right: 2rem;
    font-size: var(--text-base);
}

.hours-time {
    text-align: left;
    font-weight: 600;
    font-size: var(--text-base);
}

.hours-closed {
    color: #aaa;
    font-weight: 400;
}

/* =====================
   Gallery Page
   ===================== */

.intro-section-gallery {
    position: relative;
    overflow: hidden;
    background: none;
}

.intro-section-gallery::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: url("../img/gallery/gallery_1.jpeg") center/cover;
    filter: blur(8px);
    z-index: 0;
}

.intro-section-gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1;
}

.intro-section-gallery .intro {
    position: relative;
    z-index: 2;
}

.gallery-section {
    padding: 4rem 10%;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(232, 163, 61, 0);
    transition: background 0.35s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(232, 163, 61, 0.28);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-a { grid-column: 1 / 4; aspect-ratio: 4 / 3; }
.gallery-b { grid-column: 4 / 6; aspect-ratio: 4 / 3; }
.gallery-c { grid-column: 1 / 3; aspect-ratio: 4 / 3; }
.gallery-d { grid-column: 3 / 6; aspect-ratio: 4 / 3; }
.gallery-e { grid-column: 1 / 6; aspect-ratio: 21 / 9; }

/* =====================
   Responsive - new sections
   ===================== */

@media (max-width: 1200px) {
    .services-section,
    .contact-section,
    .hours-section,
    .gallery-section {
        padding: 3rem 5%;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .gallery-a, .gallery-b,
    .gallery-c, .gallery-d {
        grid-column: auto;
        aspect-ratio: 1;
    }

    .gallery-e {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-a, .gallery-b,
    .gallery-c, .gallery-d,
    .gallery-e {
        grid-column: auto;
        aspect-ratio: 4 / 3;
    }

    .hours-day {
        padding-right: 1rem;
    }
}
