﻿@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Alexandria', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* ── HERO ── */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0; 
    padding-top: 0; 
}

    .hero-section video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

.hero-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    z-index: 10;
    font-family: 'Alexandria', sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

    .hero-text h1 {
        font-size: 48px;
        font-weight: 50;
        margin: 0 0 10px;
        line-height: 1.2;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    }

        .hero-text h1 strong {
            font-weight: 700;
        }

    .hero-text p {
        font-size: 20px;
        font-weight: 50;
        margin: 0;
    }

.learn-more-btn {
    position: absolute;
    top: 72%;
    left: 8%;
    z-index: 10;
    padding: 12px 32px;
    border: 2px solid white;
    border-radius: 50px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Alexandria', sans-serif;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

    .learn-more-btn:hover {
        background: white;
        color: #1D75B3;
        transform: translateY(-4px);
    }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-in.visible, .slide-left.visible, .slide-right.visible, .zoom-in.visible {
        opacity: 1;
        transform: none;
    }

/* ── DISCLAIMER ── */
.disclaimer-section {
    background: white;
    padding: 25px 8%;
    text-align: center;
}

    .disclaimer-section small {
        color: #666;
        font-size: 0.85rem;
        line-height: 1.7;
        font-family: 'Alexandria', sans-serif;
    }

/* ── ABOUT ── */
.about-section {
    background: #eef3f8;
    padding: 70px 8%;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.about-title {
    min-width: 180px;
    line-height: 1.2;
}

    .about-title h5 {
        color: #005AA9;
        font-size: 1.6rem;
        font-weight: 300;
        margin: 0;
        font-family: 'Alexandria', sans-serif;
    }

    .about-title h3 {
        color: #005AA9;
        font-size: 1.6rem;
        font-weight: 400;
        margin: 0;
        font-family: 'Alexandria', sans-serif;
    }

    .about-title h2 {
        color: #175BA7;
        font-size: 1.6rem;
        font-weight: 700;
        margin: 0;
        font-family: 'Alexandria', sans-serif;
    }

.rotating-images {
    position: relative;
    width: 300px;
    height: 300px;
    min-width: 300px;
    border-radius: 50%;
    background: transparent;
    overflow: hidden;
}

.rotating-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.85) rotate(-8deg);
    transition: opacity 1s ease, transform 1s ease;
}

    .rotating-img.active {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        z-index: 5;
    }

.about-description {
    flex: 1;
    font-size: 1.2rem;
    color: #175BA7;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Alexandria', sans-serif;
    margin: 0;
}

/* ── SERVICES ── */
.services-section {
    padding: 0;
    margin: 0;
}

.service-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    cursor: pointer;
}

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

    .service-card:hover img {
        transform: scale(1.08);
    }

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
    transition: background 0.4s ease;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.service-card-right .service-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.service-card-right:hover .service-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.service-overlay h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0 0 30px;
    line-height: 1.3;
    font-family: 'Alexandria', sans-serif;
}

    .service-overlay h3 strong {
        font-weight: 700;
    }

/* BUTTONS — always visible, no override possible */
a.btn-custom-white,
.btn-custom-white {
    background: transparent !important;
    border: 2px solid white !important;
    color: white !important;
    font-weight: 400;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-block !important;
    font-size: 1rem;
    font-family: 'Alexandria', sans-serif;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: background 0.3s ease, color 0.3s ease !important;
}

    a.btn-custom-white:hover,
    .btn-custom-white:hover {
        background: white !important;
        color: #005AA9 !important;
    }

/* ── STORY ── */
.story-section {
    padding: 80px 8%;
    background: white;
}

.story-title {
    color: #005AA9;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 20px;
    font-family: 'Alexandria', sans-serif;
}

.story-text {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.6;
    font-family: 'Alexandria', sans-serif;
    margin: 0;
}

.story-text-col {
    padding-right: 50px !important;
}

.story-image-col {
    padding-left: 50px !important;
}

.story-image {
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .story-image:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }

/* ── MAP ── */
.map-section-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.map-container-full {
    width: 100%;
    height: 650px;
    position: relative;
}

    .map-container-full iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
    }

.map-button-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.btn-visit-maps {
    display: inline-block;
    background: #005AA9;
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Alexandria', sans-serif;
    transition: background 0.4s, transform 0.4s;
    white-space: nowrap;
}

    .btn-visit-maps:hover {
        background: #B1C732;
        color: white;
        transform: translateY(-4px);
    }

/* ── SCROLL TOP ── */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #005AA9;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

    .scroll-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        background: #B1C732;
        transform: translateY(-4px);
    }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .about-inner {
        flex-direction: column;
        gap: 30px;
    }

    .about-title {
        text-align: center;
    }

    .about-description {
        text-align: center;
    }

    .rotating-images {
        width: 260px;
        height: 260px;
        min-width: 260px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .story-text-col {
        padding-right: 15px !important;
    }

    .story-image-col {
        padding-left: 15px !important;
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .service-card {
        height: 400px;
    }

    .service-overlay h3 {
        font-size: 1.8rem;
    }

    .map-container-full {
        height: 500px;
    }

    .story-section {
        padding: 60px 20px;
    }

    .about-section {
        padding: 50px 20px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .service-card {
        height: 340px;
    }

    .service-overlay h3 {
        font-size: 1.5rem;
    }

    .story-title {
        font-size: 1.8rem;
    }
}

