/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #2c5f8d;
    --light-navy: #4a7ba7;
    --dark-navy: #1a3d5c;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --text-dark: #1a1a1a;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-blue);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-break {
    display: none;
}

.logo-subtitle {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.7rem;
    color: var(--navy-blue);
    line-height: 1.4;
    font-weight: 500;
    margin-top: 0.25rem;
}

.logo-address {
    display: none;
    color: var(--navy-blue);
}

.logo-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-blue);
}

.logo-phone i.mdi {
    font-size: 1.2rem;
    color: var(--navy-blue);
    display: inline-block;
    line-height: 1;
    width: 1.2rem;
    height: 1.2rem;
    text-align: center;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--navy-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 2rem 0;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.nav-link:hover {
    background-color: var(--light-gray);
    color: var(--navy-blue);
    border-left-color: var(--navy-blue);
    padding-left: 2.5rem;
}

.nav-link.active {
    color: var(--navy-blue);
    border-left-color: var(--navy-blue);
    background-color: rgba(44, 95, 141, 0.05);
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('src/images/hero_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(44, 95, 141, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--navy-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

/* Introduction Section */
.intro {
    background-color: var(--light-gray);
}

/* Video Section */
.video {
    background-color: var(--white);
    padding-top: 2.42rem;
    padding-bottom: 3.63rem;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.42rem;
    align-items: center;
    max-width: 1089px;
    margin: 0 auto;
}

.video-text {
    padding-right: 1rem;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    padding-left: 1rem;
    border-left: 3px solid var(--light-navy);
    margin: 0 0 0.5rem 0;
}

.video-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-light);
    margin: 0 0 1rem 0;
}

.video-text p:not(.video-subtitle) {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 508px;
    margin: 0 auto;
    min-height: 242px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(44, 95, 141, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 767px) {
    .video-title {
        font-size: 1.25rem;
    }

    .video-content {
        grid-template-columns: 1fr;
        gap: 1.82rem;
    }

    .video-text {
        padding-right: 0;
        order: 1;
    }

    .video-container {
        order: 2;
        max-width: 100%;
        min-height: 218px;
    }
}

@media (max-width: 480px) {
    .video-container {
        min-height: 182px;
    }
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-image-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    align-self: center;
}

.intro-image-caption {
    margin: 2.5rem 0 0 0;
    font-size: 1.05rem;
}

.intro-image-caption em {
    font-style: italic;
    color: var(--navy-blue);
    font-weight: 500;
    display: block;
    padding-left: 1rem;
    border-left: 3px solid var(--light-navy);
    text-align: left;
}

.intro-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(44, 95, 141, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-image:hover {
    transform: scale(1.02);
}

.intro-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    text-align: left;
}

.intro-text em {
    font-style: italic;
    color: var(--navy-blue);
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--light-navy);
    text-align: left;
}

.intro-text-more {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    text-align: left;
}

.intro-text-more em {
    text-align: left;
}

.intro-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--navy-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.intro-expand-btn:hover {
    background-color: var(--light-navy);
}

.intro-expand-btn:active {
    transform: scale(0.98);
}

.intro-more {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
    width: 100%;
}

.intro-more.is-expanded {
    max-height: 2000px;
    opacity: 1;
    margin-top: 2rem;
}

.intro-more-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.intro-image-block--secondary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
    max-width: 400px;
}

.intro-image-wrapper--secondary {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image-wrapper--secondary .intro-image {
    width: 100%;
}

.intro-image-caption--secondary {
    margin: 0;
    font-size: 1.05rem;
    text-align: left;
    width: 100%;
}

.intro-image-caption--secondary em {
    font-style: italic;
    color: var(--navy-blue);
    font-weight: 500;
    display: block;
    margin: 0.5rem 0 0;
    padding-left: 1rem;
    border-left: 3px solid var(--light-navy);
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

/* Metrics Section */
.metrics {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: var(--white);
    padding: 5rem 0;
}

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

.metric-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

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

.metric-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.metric-card:hover .metric-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.metric-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--white);
    letter-spacing: -2px;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlight Sections (Fogtechnikai + Garancia) */
.highlight-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    color: var(--white);
    padding: 0;
    overflow-x: hidden;
}

.highlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    align-items: stretch;
}

.highlight-row--reversed .highlight-content-wrap {
    order: 1;
    justify-content: flex-end;
}

.highlight-row--reversed .highlight-images {
    order: 2;
}

/* Highlight Section 3: Content center, 2 images each side - same bg as metrics */
.highlight-section--centered {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
}

.highlight-section--centered .highlight-row {
    height: 352px;
    min-height: 352px;
    max-height: 352px;
}

.highlight-section--centered .highlight-images {
    height: 352px;
    min-height: 352px;
    max-height: 352px;
}

.highlight-row--centered {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
}

.highlight-content-wrap--centered {
    justify-content: center;
    order: 2;
}

.highlight-content-wrap--centered .highlight-content {
    border-left: none;
}

.highlight-content-wrap--centered .highlight-title {
    text-align: center;
}

.highlight-images--left {
    order: 1;
}

.highlight-images--right {
    order: 3;
}

.highlight-section--centered .highlight-images--left img {
    transform: translateX(-100vw);
}

.highlight-section--centered .highlight-images--right img {
    transform: translateX(100vw);
}

.highlight-section--centered.animate-in .highlight-images--left img,
.highlight-section--centered.animate-in .highlight-images--right img {
    transform: translateX(0);
}

.highlight-images--one img {
    min-height: 0;
}

.highlight-content-wrap {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 2rem;
}

.highlight-content-wrap > .highlight-content {
    flex: 1;
    min-width: 0;
}

/* Images: full side to screen edge, side by side */
.highlight-images {
    display: grid;
    gap: 0;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    overflow: hidden;
}

.highlight-images--three {
    grid-template-columns: repeat(3, 1fr);
}

.highlight-images--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    justify-self: stretch;
    min-height: 260px;
}

.highlight-images--one {
    grid-template-columns: 1fr;
    max-width: 100%;
    justify-self: stretch;
}

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

/* First section: each image slides in from left viewport edge */
.highlight-images--three img {
    transform: translateX(-100vw);
}

.highlight-images--three img:nth-child(1) { transition-delay: 0s; }
.highlight-images--three img:nth-child(2) { transition-delay: 0.1s; }
.highlight-images--three img:nth-child(3) { transition-delay: 0.2s; }

.highlight-section.animate-in .highlight-images--three img {
    transform: translateX(0);
}

.highlight-images--two img {
    min-height: 260px;
}

/* Second section: each image slides in from right viewport edge */
.highlight-images--two img {
    transform: translateX(100vw);
}

.highlight-images--two img:nth-child(1) { transition-delay: 0s; }
.highlight-images--two img:nth-child(2) { transition-delay: 0.15s; }

.highlight-section.animate-in .highlight-images--two img {
    transform: translateX(0);
}

/* Content: clean card with left accent */
.highlight-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-left: 4px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    max-width: 420px;
    min-height: 120px;
    width: 100%;
    box-sizing: border-box;
}

.highlight-content:hover {
    background: rgba(255, 255, 255, 0.1);
}

.highlight-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.highlight-body {
    flex: 1;
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.35rem 0;
    color: var(--white);
}

.highlight-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

/* Services Grid - Flip Cards */
.services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    perspective: 1000px;
    cursor: pointer;
    height: 360px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(44, 95, 141, 0.08);
    border: 1px solid rgba(44, 95, 141, 0.1);
    background-color: var(--white);
}

.service-card-front {
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.service-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    border-radius: 16px 16px 0 0;
}

.service-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1.5rem;
}

.service-icon-back {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 0.75rem;
}

.service-icon-back i {
    font-size: 2.25rem;
    color: var(--navy-blue);
}

.service-card-back .service-description {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
    text-align: center;
    align-self: stretch;
}

.service-card-back .service-description + .service-description {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.service-flip-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(44, 95, 141, 0.2);
}

.service-icon i {
    font-size: 3rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.service-card:hover .service-card-front .service-title {
    color: var(--light-navy);
}

.service-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Price List */
.prices {
    background-color: var(--light-gray);
}

.price-list {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
}

.price-category {
    margin-bottom: 2.5rem;
}

.price-category:last-child {
    margin-bottom: 0;
}

.price-category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-navy);
    letter-spacing: 0.5px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(44, 95, 141, 0.08);
    transition: all 0.3s ease;
}

.price-category .price-item:last-child {
    border-bottom: 1px solid rgba(44, 95, 141, 0.08);
    margin-bottom: 0;
}

.price-item:hover {
    padding-left: 1rem;
    background-color: var(--light-gray);
    margin: 0 -1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.price-service {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.5;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-blue);
    white-space: nowrap;
    flex-shrink: 0;
}

.price-list-footer {
    margin: 2rem -1.5rem -1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    border-radius: 0 0 12px 12px;
}

.price-list-footer .price-note {
    margin: 0;
    text-align: center;
    color: var(--white);
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.95;
}

.price-list-footer .price-note + .price-note {
    margin-top: 0.5rem;
}

.price-note-payment-options {
    color: var(--white);
    font-style: normal;
    font-weight: 600;
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.95;
}

.price-list-footer .price-note + .price-note-payment-options {
    margin-top: 0.5rem;
}

.price-note {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    text-align: center;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
    margin: 0;
}

.contact-image-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.02);
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}


/* Responsive Design */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        display: flex;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        border-left: none;
        border-bottom: 2px solid transparent;
        color: var(--text-dark);
        background-color: transparent;
    }

    .nav-link:hover {
        background-color: transparent;
        padding-left: 1rem;
        border-left: none;
        border-bottom-color: var(--navy-blue);
    }

    .nav-link.active {
        color: var(--navy-blue);
        border-left: none;
        border-bottom-color: var(--navy-blue);
        background-color: transparent;
        font-weight: 600;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

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

    .metric-number {
        font-size: 4rem;
    }

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

    .price-list {
        padding: 2.5rem;
    }

    .price-list-footer {
        margin: 2rem -2.5rem -2.5rem;
        padding: 1.5rem 2.5rem;
    }

    .price-category-title {
        font-size: 1.1rem;
    }

    .price-service {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 1.25rem;
    }

    .intro-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }

    .intro-image-block {
        margin: 0;
        max-width: 100%;
    }

    .intro-image-wrapper {
        margin: 0;
    }

    .intro-more {
        grid-template-columns: 1.2fr 1fr;
    }

    .intro-image-block--secondary {
        max-width: 100%;
    }

    .intro-image-wrapper--secondary {
        max-width: 100%;
    }

    .intro-text {
        text-align: justify;
    }

    .logo-break {
        display: none;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        font-size: 0.8rem;
    }

    .logo-address {
        display: block;
    }

    .logo-phone {
        display: flex;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-image-wrapper {
        height: 400px;
    }

    .map-container {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }

    .metric-number {
        font-size: 4.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (max-width 767px) - overrides for phones */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero {
        min-height: 500px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .metrics {
        padding: 3rem 0;
    }

    .highlight-section {
        padding: 0;
    }

    .highlight-row {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
        max-height: none;
    }

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

    .highlight-content-wrap {
        padding: 2rem 1.5rem;
        justify-content: center;
    }

    .highlight-content-wrap--centered {
        min-height: auto;
    }

    .highlight-row--reversed .highlight-content-wrap {
        justify-content: center;
    }

    .highlight-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        min-height: 140px;
        padding: 1.25rem 1.5rem;
    }

    .highlight-images {
        min-height: 200px;
        max-width: 100%;
    }

    /* Tablet: 3-image sections show only 2 images */
    .highlight-images--three {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-images--three img:nth-child(3) {
        display: none;
    }

    /* Centered section: left 2→1 on small screens, right always 1 */
    .highlight-section--centered .highlight-images--left img:nth-child(2) {
        display: none;
    }

    .highlight-section--centered .highlight-images--left {
        grid-template-columns: 1fr;
    }

    .highlight-images--two {
        min-height: 180px;
    }

    .highlight-images img {
        min-height: 200px;
    }

    .highlight-images--two img {
        min-height: 180px;
    }

    .highlight-title {
        font-size: 1.15rem;
    }

    .highlight-text {
        font-size: 0.95rem;
    }

    .metrics-grid {
        gap: 2rem;
    }

    .metric-icon {
        width: 70px;
        height: 70px;
    }

    .metric-icon i {
        font-size: 2rem;
    }

    .metric-number {
        font-size: 2.75rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }

    .service-card {
        height: 300px;
    }

    .service-card-front,
    .service-card-back {
        padding: 1.75rem 1.25rem;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }

    .service-icon i {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-flip-hint {
        font-size: 0.8rem;
    }

    .service-icon-back {
        width: 65px;
        height: 65px;
        margin-bottom: 0.5rem;
    }

    .service-icon-back i {
        font-size: 1.75rem;
    }

    .service-card-back .service-description {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .service-card-back .service-description + .service-description {
        padding-top: 0.4rem;
        margin-top: 0.4rem;
    }

    .price-list {
        padding: 1rem;
    }

    .price-list-footer {
        margin: 1.5rem -1rem -1rem;
        padding: 1rem;
    }

    .price-list-footer .price-note,
    .price-note-payment-options {
        font-size: 0.85rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 1rem 0;
    }

    .price-service {
        font-size: 0.9rem;
    }

    .price-amount {
        font-size: 1rem;
    }

    .contact-image-wrapper,
    .map-container {
        height: 280px;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .intro-text-more {
        font-size: 1rem;
    }

    .intro-content {
        gap: 2rem;
    }

    .intro-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .intro-image-caption {
        margin-top: 1rem;
    }

    .nav-container {
        padding: 0.75rem 16px;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-text {
        min-width: unset;
    }
}

/* Extra small mobile (max-width 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .hero {
        min-height: 450px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .service-card {
        height: 280px;
    }

    .service-card-front,
    .service-card-back {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-icon-back {
        width: 58px;
        height: 58px;
        margin-bottom: 0.4rem;
    }

    .service-icon-back i {
        font-size: 1.5rem;
    }

    .service-card-back .service-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .service-card-back .service-description + .service-description {
        padding-top: 0.35rem;
        margin-top: 0.35rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .highlight-content-wrap {
        padding: 1.5rem 1rem;
        justify-content: center;
    }

    .highlight-row--reversed .highlight-content-wrap {
        justify-content: center;
    }

    .highlight-content {
        align-items: center;
        text-align: center;
        min-height: 130px;
        padding: 1rem 1.25rem;
    }

    .highlight-images {
        min-height: 160px;
    }

    /* Mobile: 3-image sections show only 2 images */
    .highlight-images--three {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-images--three img:nth-child(3) {
        display: none;
    }

    /* Centered section: left 2→1 on mobile, right always 1 */
    .highlight-section--centered .highlight-images--left img:nth-child(2) {
        display: none;
    }

    .highlight-section--centered .highlight-images--left {
        grid-template-columns: 1fr;
    }

    .highlight-images--two {
        min-height: 140px;
    }

    .highlight-images img {
        min-height: 160px;
    }

    .highlight-images--two img {
        min-height: 140px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
    }

    .highlight-icon i {
        font-size: 2.25rem;
    }

    .highlight-title {
        font-size: 1.05rem;
    }

    .highlight-text {
        font-size: 0.9rem;
    }

    .contact-image-wrapper,
    .map-container {
        height: 240px;
    }

    .price-category-title {
        font-size: 1rem;
    }
}

/* Tablet (768px - 1023px) - optional refinements */
@media (min-width: 768px) and (max-width: 1023px) {
    .service-card {
        height: 340px;
    }

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

    .contact-image-wrapper {
        grid-column: 1 / -1;
    }

    /* Tablet: 3-image sections show only 2 images */
    .highlight-images--three {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-images--three img:nth-child(3) {
        display: none;
    }

    /* Centered section: left 2→1 on tablet, right always 1 */
    .highlight-section--centered .highlight-images--left img:nth-child(2) {
        display: none;
    }

    .highlight-section--centered .highlight-images--left {
        grid-template-columns: 1fr;
    }
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    color: var(--white);
    padding: 1rem 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent-text {
    flex: 1;
    min-width: 260px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

.cookie-consent-btn {
    flex-shrink: 0;
    padding: 0.6rem 1.5rem;
    background: var(--white);
    color: var(--navy-blue);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-consent-btn:hover {
    background: var(--light-gray);
    transform: scale(1.02);
}

.cookie-consent-btn:active {
    transform: scale(0.98);
}

