:root {
    --bg: #f3f7fb;
    --surface: #ffffff;
    --surface-dark: #0a1e2f;
    --primary: #0077b6;
    --primary-dark: #04517d;
    --secondary: #ff7a18;
    --text: #11263a;
    --text-soft: #4a6074;
    --line: #d7e3ee;
    --shadow: 0 18px 50px rgba(7, 48, 82, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 5% 5%, rgba(0, 119, 182, 0.09), transparent 35%),
        radial-gradient(circle at 95% 0%, rgba(255, 122, 24, 0.08), transparent 30%),
        var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
    color: #0b1f32;
}

a {
    text-decoration: none;
    color: var(--primary);
}

.site-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(70px);
    z-index: -1;
    pointer-events: none;
}

.site-orb-one {
    width: 320px;
    height: 320px;
    background: rgba(0, 119, 182, 0.12);
    left: -130px;
    top: 70px;
}

.site-orb-two {
    width: 260px;
    height: 260px;
    background: rgba(255, 122, 24, 0.14);
    right: -100px;
    top: 240px;
}

.topbar {
    background: linear-gradient(90deg, #06273d, #093b5d);
    color: #d8f1ff;
    font-size: 0.88rem;
}

.topbar a {
    color: #d8f1ff;
    transition: color 0.25s ease;
}

.topbar a:hover {
    color: #ffffff;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-header .navbar {
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(9, 59, 93, 0.1);
    backdrop-filter: blur(12px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 800;
    color: #07233a;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--primary), #00b4d8);
    color: #fff;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.brand-text {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link {
    color: #173a55;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-cta {
    background: linear-gradient(120deg, var(--secondary), #ff9f45);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.7rem 1.3rem;
    box-shadow: 0 10px 30px rgba(255, 122, 24, 0.25);
}

.btn-cta:hover {
    color: #fff;
    transform: translateY(-2px);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 2.2rem;
    text-align: center;
}

.section-title h2 {
    font-size: clamp(1.7rem, 3.3vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.section-title p {
    color: var(--text-soft);
    max-width: 680px;
    margin: 0 auto;
}

.hero-slider {
    padding: 3rem 0 1.5rem;
}

.hero-slider .carousel-item {
    border-radius: 28px;
    overflow: hidden;
}

.hero-slide-inner {
    background: linear-gradient(130deg, rgba(3, 45, 72, 0.95), rgba(0, 119, 182, 0.82));
    color: #fff;
    min-height: 470px;
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.hero-slide-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255, 122, 24, 0.45), transparent 45%);
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 3.5rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1,
.hero-content h2 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content p {
    color: #d9f3ff;
    margin-bottom: 1.3rem;
}

.hero-image {
    min-height: 280px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.hero-image img,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.9rem;
}

.hero-badge {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    border-radius: 999px;
    padding: 0.36rem 0.9rem;
    font-size: 0.8rem;
}

.trust-strip {
    margin-top: -0.6rem;
}

.trust-strip .card {
    border: none;
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: linear-gradient(120deg, #ffffff, #f6fbff);
}

.metric {
    text-align: center;
    padding: 1rem;
}

.metric h3 {
    margin-bottom: 0.2rem;
    color: var(--primary-dark);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 119, 182, 0.12);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.about-image {
    border-radius: 22px;
    min-height: 380px;
    overflow: hidden;
}

.service-card {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 1.4rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(8, 66, 103, 0.16);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(0, 119, 182, 0.15), rgba(0, 180, 216, 0.2));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.price-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    padding: 1.6rem;
    position: relative;
    box-shadow: 0 10px 28px rgba(6, 45, 73, 0.08);
}

.price-card.highlighted {
    border-color: transparent;
    background: linear-gradient(145deg, #05304f, #0d4f78);
    color: #e8f6ff;
    transform: translateY(-8px);
}

.price-tag {
    font-size: 2.1rem;
    font-weight: 800;
    margin: 0.65rem 0;
}

.price-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.price-card li {
    margin-bottom: 0.52rem;
    padding-left: 1.4rem;
    position: relative;
}

.price-card li::before {
    content: '\f26e';
    font-family: bootstrap-icons;
    position: absolute;
    left: 0;
    top: 0;
    color: #17b26a;
}

.price-card.highlighted li::before {
    color: #6ef7b9;
}

.blog-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    height: 100%;
}

.blog-card .content {
    padding: 1.1rem;
}

.blog-meta {
    font-size: 0.84rem;
    color: var(--text-soft);
}

.contact-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    padding: 1.5rem;
    height: 100%;
}

.footer-cta-wrap {
    background: linear-gradient(140deg, #08456c, #0d6fa7, #f2782f);
    border-radius: 24px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    align-items: center;
    box-shadow: var(--shadow);
}

.site-footer {
    background: #071f31;
    color: #bfd6e6;
}

.site-footer h4,
.site-footer h5 {
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a,
.footer-social a {
    color: #d4e8f6;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    right: 18px;
    bottom: 24px;
    background: #22c55e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 14px 34px rgba(34, 197, 94, 0.42);
    z-index: 1200;
}

.page-hero {
    padding: 4rem 0 2.2rem;
}

.page-hero .inner {
    background: linear-gradient(145deg, #093a5a, #0b5f90);
    color: #fff;
    border-radius: 24px;
    padding: 2.2rem;
}

.content-panel {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    padding: 1.5rem;
}

.form-control,
.form-select {
    border-color: #c8d9e7;
    padding: 0.68rem 0.78rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #59a7d4;
    box-shadow: 0 0 0 0.25rem rgba(0, 119, 182, 0.15);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-slide-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 2.3rem 1.4rem;
    }

    .hero-image {
        min-height: 240px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .about-split,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .brand-text {
        max-width: 130px;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .topbar {
        font-size: 0.8rem;
    }
}
