:root {
    --blue: #21539e;
    --blue-dark: #163a74;
    --blue-deep: #0d2650;
    --blue-mid: #2d6cc0;
    --blue-light: #d6e4f7;
    --blue-pale: #eef4fc;
    --sky: #4a90d9;
    --white: #ffffff;
    --off: #f4f8fe;
    --text: #111827;
    --muted: #6b7280;
    --border: #dce8f5;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 24px rgba(33, 83, 158, 0.07);
    transition: box-shadow 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-drop {
    background: transparent;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-name {
    font-family: 'Lora', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: -0.3px;
}

.nav-logo-name span {
    font-weight: 400;
    font-style: italic;
    color: var(--blue-mid);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-menu a:hover {
    color: var(--blue);
    background: var(--blue-pale);
}

.nav-cta {
    background: var(--blue) !important;
    color: white !important;
    border-radius: 8px;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
}

/* ─── HERO ─── */
#Home {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

#myVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            160deg,
            rgba(13, 38, 80, 0.1) 0%,
            rgba(33, 83, 158, 0.2) 50%,
            rgba(13, 38, 80, 0.3) 100%
    );
}

/* animated water ripple */
.hero-ripple {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.hero-ripple svg {
    width: 200%;
    height: 100%;
    animation: rippleSlide 8s linear infinite;
}

@keyframes rippleSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 6% 72px;
    animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0.3
    }
}

.hero-content h1 {
    font-family: 'Lora', serif;
    font-size: clamp(36px, 6vw, 74px);
    font-weight: 600;
    color: white;
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 720px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--blue-mid);
}

.hero-content span {
    font-style: italic;
    font-size: clamp(20px, 6vw, 42px);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(14px, 1.8vw, 17px);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 5vh;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* hero stat strip */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    background: rgba(13, 38, 80, 0.85);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    flex: 1;
    padding: 18px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat strong {
    display: block;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: #7ec8f7;
    line-height: 1;
}

.hero-stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

/* ─── SECTION UTILITY ─── */
.section-label {
    display: inline-block;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-sub {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    max-width: 500px;
}

/* ─── SERVICES ─── */
#About {
    padding: 100px 5%;
    background: var(--off);
}

.services-header {
    text-align: center;
    margin-bottom: 52px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.svc-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 34px 28px 28px;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--sky), var(--blue));
    border-radius: 0 0 18px 18px;
    transition: width 0.35s ease;
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(33, 83, 158, 0.13);
    border-color: var(--blue-light);
}

.svc-card:hover::after {
    width: 100%;
}

.svc-icon {
    width: 54px;
    height: 54px;
    background: var(--blue-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.svc-card:hover .svc-icon {
    background: var(--blue-light);
}

.svc-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── ABOUT BAND ─── */
.about-section {
    background: var(--white);
    padding: 80px 5%;
}

.about-section-header {
    max-width: 1280px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-band {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    max-width: 1280px;
    margin: 0 auto;
    box-shadow: 0 24px 80px rgba(13, 38, 80, 0.18);
}

.about-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.about-band::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

.about-left .section-title {
    color: white;
}

.about-left .section-label {
    color: #7ec8f7;
}

.about-left p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}

.about-left {
    height: 100%;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.pillar {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    text-align: center;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(126, 200, 247, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pillar-num {
    font-size: 30px;
    font-weight: 800;
    color: #7ec8f7;
    line-height: 1;
    text-shadow: 0 0 24px rgba(126, 200, 247, 0.35);
}

.pillar-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-self: stretch;
}

.about-right .trust-item {
    flex: 1;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid transparent;
    border-radius: 14px;
    padding: 20px 22px;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: #7ec8f7;
    transform: translateX(5px);
    box-shadow: -4px 0 20px rgba(126, 200, 247, 0.1);
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(126, 200, 247, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.25s;
}

.trust-item:hover .trust-icon {
    background: rgba(126, 200, 247, 0.25);
    transform: scale(1.08);
}

.trust-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ─── CONTACT ─── */
#Contact {
    padding: 100px 5%;
    background: var(--white);
}

.contact-inner {
    max-width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-left {
    padding-top: 8px;
    height: 100%;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 36px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.22s;
    flex: 1;
    justify-content: center;
}

.social-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-pale);
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 17px;
}

.contact-info-block {
    margin-top: 36px;
    padding: 24px;
    background: var(--blue-pale);
    border-radius: 16px;
    border: 1px solid var(--blue-light);
}

.contact-info-block h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text);
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    color: var(--blue);
    width: 18px;
    text-align: center;
}

/* form */
.contact-form-card {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 40px 36px;
    height: 100%;
}

.contact-form-card h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-form-card > p {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 28px;
}

.fg {
    margin-bottom: 14px;
}

.fg input,
.fg textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 11px;
    background: white;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fg input:focus, .fg textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(33, 83, 158, 0.08);
}

.fg input::placeholder, .fg textarea::placeholder {
    color: #b0bec5;
}

.fg textarea {
    height: 110px;
    resize: none;
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
    color: white;
    border: none;
    border-radius: 11px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.3px;
    margin-top: 2vh;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(33, 83, 158, 0.35);
}

/* ─── LOCATION ─── */
#Location {
    padding: 100px 5%;
    background: var(--off);
}

.location-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.map-card {
    margin-top: 40px;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid var(--blue-light);
    box-shadow: 0 20px 60px rgba(33, 83, 158, 0.1);
    height: 480px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ─── FLOAT WPP ─── */
.button-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: wppPulse 2.5s ease-in-out infinite;
    transition: transform 0.2s;
}

.button-wpp:hover {
    transform: scale(1.1);
}

@keyframes wppPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ─── FOOTER ─── */
footer {
    background: var(--blue-deep);
    position: relative;
    overflow: hidden;
}

.footer-top-wave {
    display: block;
    width: 100%;
    line-height: 0;
}

.footer-top-wave svg {
    display: block;
}

.footer-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 5% 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 52px;
}

.f-brand .f-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.f-logo-drop {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
}

.f-logo-name {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.f-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 240px;
}

.f-social {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.f-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.22s;
}

.f-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    transform: translateY(-3px);
}

.f-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 18px;
}

.f-col ul {
    list-style: none;
}

.f-col ul li {
    margin-bottom: 10px;
}

.f-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.f-col ul li a:hover {
    color: white;
}

.f-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.f-contact-row i {
    color: var(--sky);
    width: 16px;
}

.f-wpp-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 6px;
    transition: all 0.22s;
}

.f-wpp-btn:hover {
    background: #1eaa53;
    transform: translateY(-2px);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(33, 83, 158, 0.4);
    border: 1px solid rgba(74, 144, 217, 0.25);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-badge i {
    color: var(--sky);
    font-size: 10px;
}

/* ─── REVIEWS ─── */
#Reviews {
    padding: 100px 5%;
    background: var(--off);
}

.reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.reviews-inner .section-sub {
    margin-top: 14px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 44px auto 48px;
    background: var(--blue-pale);
    border: 1.5px solid var(--blue-light);
    border-radius: 18px;
    padding: 24px 40px;
    max-width: 520px;
    flex-wrap: wrap;
}

.reviews-rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.reviews-score-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1;
}

.reviews-stars {
    display: flex;
    gap: 4px;
    color: #f5a623;
    font-size: 1.1rem;
}

.reviews-score-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: 12px;
    transition: all 0.25s;
}

.reviews-google-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(33, 83, 158, 0.3);
}

.reviews-google-link i {
    font-size: 15px;
}

.reviews-widget-wrap {
    margin-top: 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .f-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        display: none;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fg-row {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .about-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .social-row {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .f-brand {
        grid-column: auto;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

}