:root {
    --blue: #29abe2;
    --blue-dark: #1a7ab0;
    --blue-light: #e8f6fd;
    --white: #fff;
    --dark: #0d1b2a;
    --gray: #f5f8fb;
    --text: #2c3e50;
    --text-light: #7a8c9e;
    --transition: all 0.4s cubic-bezier(.25, .8, .25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* === NAVIGATION — transparent with blur, white on scroll (matching other pages) === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    .logo-light {
        display: block;
    }

    .logo-dark {
        display: none;
    }
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(41, 171, 226, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);

    .logo-light {
        display: none;
    }

    .logo-dark {
        display: block;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 42px;
    height: 42px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(41, 171, 226, 0.4);
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    line-height: 1.2;
}

.nav-logo-text span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.75;
}

nav.scrolled .nav-logo-text {
    color: var(--dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    position: relative;
}

nav.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
}

nav.scrolled .nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    background: var(--blue);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(41, 171, 226, 0.35);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 171, 226, 0.45);
    background: var(--blue-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 38px;
    height: 38px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(.25, .8, .25, 1);
}

nav.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* PAGE HERO — clean and minimal */
.page-hero {
    padding-top: 80px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1497366754035-f200581393ab?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 5%;
    max-width: 700px;
    margin-left: 5%;
}

.breadcrumb {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}

.page-hero-tag {
    display: inline-block;
    background: rgba(41, 171, 226, 0.2);
    border: 1px solid rgba(41, 171, 226, 0.4);
    color: var(--blue);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: white;
    line-height: 1.15;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--blue);
}

/* CONTACT SECTION — only info cards + map (form removed) */
.contact-section {
    padding: 80px 5%;
    background: white;
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--blue);
}

.contact-info-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* INFO CARDS - simple, centered grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 50px;
}

.info-card {
    background: var(--gray);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(41, 171, 226, 0.1);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(41, 171, 226, 0.12);
    border-color: rgba(41, 171, 226, 0.3);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--blue);
    margin: 0 auto 22px;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    background: var(--blue);
    color: white;
}

.info-text h4 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-text a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.info-text a:hover {
    text-decoration: underline;
}

/* MAP */
.map-container {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 60px 5% 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-top: 16px;
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 5%;
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a {
    color: var(--blue);
    text-decoration: none;
}

.footer-contact i {
    color: var(--blue);
    width: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

/* MOBILE */
@media(max-width:900px) {
    .info-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 8px 0;
        gap: 0;
        border-bottom: 2px solid rgba(41, 171, 226, 0.2);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .nav-links a {
        padding: 16px 6%;
        display: block;
        color: var(--text) !important;
        font-size: 1rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--blue) !important;
        background: var(--blue-light);
        border-left: 4px solid var(--blue);
        padding-left: calc(6% - 4px);
    }

    .nav-links a::after {
        display: none;
    }
}


/* FORM */
.contact-form-wrapper {
    background: white;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 171, 226, 0.1);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: var(--gray);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2329abe2' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(41, 171, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(41, 171, 226, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 16px;
}

/* SUCCESS STATE */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.visible {
    display: block;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
}

.error-message {
    color: #e63946;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.input-error {
    border: 1px solid #e63946 !important;
}