﻿
:root {
    --navy: #1a3a5c;
    --navy-dark: #0f2338;
    --navy-mid: #244d73;
    --teal: #0a8f8f;
    --teal-light: #0db8b8;
    --cream: #f5f0eb;
    --cream-dark: #ede5da;
    --white: #ffffff;
    --text-light: rgba(245,240,235,0.85);
    --text-muted: rgba(245,240,235,0.6);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--navy-dark);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--navy-dark);
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo img {
    height: 44px;
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--teal-light);
        }

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: background 0.2s !important;
}

    .nav-cta:hover {
        background: var(--teal-light) !important;
        color: var(--navy-dark) !important;
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
    }

/* ── HERO ── */
#home {
    min-height: 100vh;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
}

    #home::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(10,143,143,0.12) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgba(26,58,92,0.6) 0%, transparent 50%);
    }

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(10,143,143,0.2);
    border: 1px solid rgba(10,143,143,0.4);
    color: var(--teal-light);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--teal-light);
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

.hero-text p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.2s;
    border: 2px solid var(--teal);
}

    .btn-primary:hover {
        background: var(--teal-light);
        border-color: var(--teal-light);
        color: var(--navy-dark);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.2s;
}

    .btn-outline:hover {
        border-color: var(--white);
        background: rgba(255,255,255,0.08);
    }

.hero-info {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

    .hero-info-item svg {
        width: 18px;
        height: 18px;
        color: var(--teal-light);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .hero-info-item p {
        color: var(--text-muted);
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .hero-info-item strong {
        color: var(--text-light);
        display: block;
        font-size: 0.88rem;
    }

.hero-image {
    flex: 0 0 420px;
    position: relative;
}

    .hero-image img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
        aspect-ratio: 3/4;
        display: block;
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }

.hero-image-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--teal);
    color: var(--white);
    padding: 1rem 1.4rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(10,143,143,0.4);
}

    .hero-image-card .num {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
    }

    .hero-image-card .label {
        font-size: 0.75rem;
        opacity: 0.85;
        margin-top: 2px;
    }

/* ── SECTION BASE ── */
section {
    padding: 90px 5%;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(26,58,92,0.7);
    max-width: 600px;
    margin-top: 0.8rem;
}

.section-header {
    margin-bottom: 3rem;
}

/* ── SERVICES ── */
#services {
    background: var(--navy-mid);
}

    #services .section-title {
        color: var(--white);
    }

    #services .section-label {
        color: var(--teal-light);
    }

    #services .section-subtitle {
        color: var(--text-light);
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.3s;
    cursor: default;
}

    .service-card:hover {
        background: rgba(10,143,143,0.15);
        border-color: rgba(10,143,143,0.4);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(10,143,143,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .service-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── ABOUT ── */
#about {
    background: var(--cream);
}

.about-inner {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 420px;
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
        aspect-ratio: 3/4;
        display: block;
        box-shadow: 0 20px 50px rgba(26,58,92,0.2);
    }

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: var(--teal);
    opacity: 0.15;
    z-index: -1;
}

.about-text {
    flex: 1;
}

    .about-text .section-title {
        color: var(--navy-dark);
    }

    .about-text h3 {
        font-family: var(--font-display);
        font-size: 1.25rem;
        color: var(--teal);
        font-weight: 500;
        margin: 1rem 0;
    }

    .about-text p {
        color: rgba(26,58,92,0.8);
        line-height: 1.8;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

.about-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.about-tag {
    background: var(--navy-dark);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-stat {
    background: var(--navy-dark);
    color: var(--white);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
}

    .about-stat .num {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        color: var(--teal-light);
        line-height: 1;
    }

    .about-stat .lbl {
        font-size: 0.75rem;
        opacity: 0.7;
        margin-top: 4px;
    }

/* ── WHY CHOOSE ── */
#why {
    background: var(--navy-dark);
}

    #why .section-title {
        color: var(--white);
    }

    #why .section-label {
        color: var(--teal-light);
    }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s;
}

    .why-card:hover {
        background: rgba(10,143,143,0.12);
        border-color: rgba(10,143,143,0.3);
    }

.why-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(10,143,143,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.why-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.why-right {
    position: relative;
}

    .why-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        min-height: 400px;
    }

/* ── TESTIMONIALS ── */
#reviews {
    background: var(--cream-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(26,58,92,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(26,58,92,0.14);
    }

.quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.6;
    color: var(--teal);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(26,58,92,0.75);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

    .testimonial-author img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--teal);
    }

    .testimonial-author strong {
        display: block;
        font-size: 0.9rem;
        color: var(--navy-dark);
    }

    .testimonial-author span {
        font-size: 0.75rem;
        color: var(--teal);
    }

.stars {
    color: #f5a623;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

/* ── MEDIA ── */
#media {
    background: var(--cream);
}

.media-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.media-text {
    flex: 1;
}

    .media-text .section-title {
        color: var(--navy-dark);
    }

    .media-text p {
        color: rgba(26,58,92,0.7);
        line-height: 1.8;
        margin: 1rem 0 1.5rem;
    }

.media-img {
    flex: 0 0 340px;
}

    .media-img a {
        display: block;
    }

    .media-img img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(26,58,92,0.15);
        transition: transform 0.3s;
    }

        .media-img img:hover {
            transform: scale(1.02);
        }

.media-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy-dark);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* ── CONTACT ── */
#contacts {
    background: var(--navy-dark);
}

    #contacts .section-title {
        color: var(--white);
    }

    #contacts .section-label {
        color: var(--teal-light);
    }

.contact-inner {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

    .contact-info p {
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(10,143,143,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-detail strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-detail span {
    color: var(--text-muted);
    font-size: 0.83rem;
    line-height: 1.5;
}

.contact-detail a {
    color: var(--teal-light);
    text-decoration: none;
}

.contact-form {
    flex: 0 0 480px;
}

.form-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

    .form-box h3 {
        font-family: var(--font-display);
        font-size: 1.6rem;
        color: var(--white);
        margin-bottom: 1.5rem;
    }

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        color: var(--text-light);
        font-size: 0.82rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0.04em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        background: rgba(255,255,255,0.08);
        border: 1.5px solid rgba(255,255,255,0.12);
        border-radius: 10px;
        padding: 0.75rem 1rem;
        color: var(--white);
        font-family: var(--font-body);
        font-size: 0.9rem;
        transition: border-color 0.2s;
        outline: none;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--teal);
            background: rgba(10,143,143,0.08);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.3);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
    }

    .form-group select option {
        background: var(--navy-dark);
        color: var(--white);
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    width: 100%;
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 0.9rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 0.5rem;
}

    .form-submit:hover {
        background: var(--teal-light);
        color: var(--navy-dark);
    }

    .form-submit:active {
        transform: scale(0.99);
    }

/* ── FOOTER ── */
footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 30px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.82rem;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--teal-light);
        }

.footer-copy {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-info {
        justify-content: center;
    }

    .hero-image {
        flex: none;
        width: 100%;
        max-width: 380px;
    }

    .about-inner {
        flex-direction: column;
    }

    .about-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-right {
        display: none;
    }

    .media-inner {
        flex-direction: column;
    }

    .media-img {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .contact-inner {
        flex-direction: column;
    }

    .contact-form {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 0 4%;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 60px 4%;
    }

    .about-stats {
        grid-template-columns: repeat(3,1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text, .hero-image {
    animation: fadeUp 0.8s ease both;
}

.hero-image {
    animation-delay: 0.2s;
}
/* ── VIDEOS ── */
#videos {
    background: var(--navy-dark);
}

    #videos .section-title {
        color: var(--white);
    }

    #videos .section-label {
        color: var(--teal-light);
    }

    #videos .section-subtitle {
        color: var(--text-light);
    }

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .video-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        border-color: rgba(10,143,143,0.4);
    }

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

    .video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.video-info {
    padding: 1.2rem 1.4rem 1.4rem;
}

.video-tag {
    display: inline-block;
    background: rgba(10,143,143,0.2);
    color: var(--teal-light);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
}

.video-info h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.video-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.videos-cta {
    text-align: center;
    margin-top: 2.5rem;
}

    .videos-cta a {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255,255,255,0.06);
        border: 1.5px solid rgba(255,255,255,0.15);
        color: var(--white);
        padding: 0.75rem 1.8rem;
        border-radius: 50px;
        text-decoration: none;
        font-size: 0.88rem;
        font-weight: 500;
        transition: all 0.2s;
    }

        .videos-cta a:hover {
            background: var(--teal);
            border-color: var(--teal);
        }