* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #4e1e4b;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Color palette */
:root {
    --blue-deep: #a5e808;
    --blue-soft: #eef6fc;
    --gray-light: #f7f9fc;
    --gray-mid: #e9ecf0;
    --gray-soft: #4a5c6e;
    --white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 20, 40, 0.02);
    --transition: all 0.25s ease;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar – sticky, bold */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    transition: var(--transition);
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-deep);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.logo span {
    color: var(--gray-soft);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #1e2f4e;
    font-size: 0.98rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-links a:hover {
    border-bottom-color: var(--blue-deep);
    color: var(--blue-deep);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--blue-deep);
}

/* mobile menu slide */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: white;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.05);
    padding: 40px 24px;
    transition: left 0.35s ease;
    z-index: 1001;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav a {
    text-decoration: none;
    color: #1e2f4e;
    font-weight: 500;
    font-size: 1.1rem;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.overlay.active {
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--blue-deep);
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(10, 75, 122, 0.12);
}

.btn:hover {
    background: #0c5f94;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(10, 75, 122, 0.18);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid white;
    color: white;
    box-shadow: none;
}

.btn-outline:hover {
    background: white;
    color: var(--blue-deep);
    border-color: white;
}

/* Hero – unique editorial design */
.hero {
    --hero-accent: #a5e808;
    --hero-dark: #0f172a;
    background: #fafbfc;
    padding: 100px 0 120px;
    color: var(--hero-dark);
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(10, 75, 122, 0.12) 0%, rgba(13, 148, 136, 0.08) 100%);
    top: -120px;
    right: -80px;
}

.hero-shape-2 {
    width: 280px;
    height: 280px;
    background: rgba(13, 148, 136, 0.1);
    bottom: 10%;
    left: -60px;
}

.hero-shape-3 {
    width: 160px;
    height: 160px;
    background: rgba(10, 75, 122, 0.08);
    top: 50%;
    right: 25%;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
}

.hero-content {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--hero-accent);
    margin-bottom: 20px;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--hero-accent);
    border-radius: 50%;
    animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--hero-dark);
    margin-bottom: 20px;
}

.hero-title-accent {
    display: inline-block;
    color: var(--hero-accent);
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--hero-accent), rgba(13, 148, 136, 0.35));
    border-radius: 3px;
    z-index: -1;
}

.hero-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-cta-primary {
    background: var(--hero-accent);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.hero-cta-primary:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.4);
}

.hero-cta-phone {
    background: transparent;
    color: var(--hero-dark);
    border: 2px solid #e2e8f0;
}

.hero-cta-phone:hover {
    border-color: var(--hero-accent);
    color: var(--hero-accent);
    background: rgba(13, 148, 136, 0.06);
}

.hero-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
}

.hero-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta i {
    color: var(--hero-accent);
    font-size: 1rem;
}

.hero-visual {
    flex: 0 0 min(100%, 480px);
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 24px 24px 24px 0;
    overflow: hidden;
    box-shadow: 16px 24px 48px -16px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--hero-accent), var(--blue-deep));
    z-index: 2;
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 340px;
    vertical-align: middle;
}

.hero-floating-card {
    position: absolute;
    bottom: -12px;
    left: -12px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hero-dark);
    z-index: 3;
}

.hero-floating-stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 1rem;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 28px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    font-weight: 500;
}

.stat-item i {
    color: #b5e0ff;
    margin-right: 8px;
}

/* Section spacing */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 20px;
}

.section-sub {
    color: var(--gray-soft);
    font-size: 1.2rem;
    margin-bottom: 48px;
    max-width: 700px;
}

/* Feature boxes */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    padding: 28px 20px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-mid);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 28px -8px rgba(0, 60, 100, 0.08);
    border-color: #cde3ed;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--blue-deep);
    margin-bottom: 16px;
}

/* service vertical list */
.service-vertical {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 0;
    border-bottom: 1px solid var(--gray-mid);
}

.service-row:last-child {
    border-bottom: none;
}

.service-icon {
    font-size: 2.6rem;
    color: var(--blue-deep);
    min-width: 70px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0a3d5e;
    margin-bottom: 10px;
}

/* premium alternating */
.premium-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.premium-block {
    display: flex;
    align-items: center;
    gap: 48px;
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.premium-block:nth-child(even) {
    flex-direction: row-reverse;
}

.premium-text {
    flex: 1.2;
}

.premium-image {
    flex: 0.8;
    background: var(--blue-soft);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    font-size: 3rem;
    color: var(--blue-deep);
}

/* accordion */
.accordion-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-mid);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 24px;
    background: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: 0.15s;
}

.accordion-header:hover {
    background: var(--blue-soft);
}

.accordion-header i {
    transition: transform 0.2s;
}

.accordion-content {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    background: #fafdff;
    border-top: 0px solid transparent;
}

.accordion-item.active .accordion-content {
    max-height: 180px;
    padding: 0 24px 20px 24px;
    border-top: 1px solid var(--gray-mid);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Contact section – unique design */
.contact-section {
    --contact-accent: #0d9488;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 240px;
    background: linear-gradient(135deg, rgba(10, 75, 122, 0.06) 0%, rgba(13, 148, 136, 0.04) 100%);
    pointer-events: none;
}

.contact-head {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.contact-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--contact-accent);
    margin-bottom: 12px;
}

.contact-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-sub {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 420px;
    margin: 0 auto;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(13, 148, 136, 0.12);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(10, 75, 122, 0.08) 100%);
    color: var(--contact-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 6px;
}

.contact-card a,
.contact-card span {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--contact-accent);
}

.contact-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.contact-btn-call {
    background: var(--contact-accent);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}

.contact-btn-call:hover {
    background: #0f766e;
    transform: translateY(-2px);
}

.contact-btn-map {
    background: #fff;
    color: #0f172a;
    border: 2px solid #e2e8f0;
}

.contact-btn-map:hover {
    border-color: var(--contact-accent);
    color: var(--contact-accent);
    background: rgba(13, 148, 136, 0.06);
}

.contact-map-wrap {
    position: relative;
}

.contact-map-frame {
    position: relative;
    border-radius: 24px 24px 0 24px;
    overflow: hidden;
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.contact-map-frame iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.contact-map-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--contact-accent), var(--blue-deep));
}

.contact-map-address {
    margin-top: 14px;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    padding-left: 4px;
}

/* Footer – unique design */
.footer {
    background: linear-gradient(180deg, #115353 0%, #0c1222 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 0;
    position: relative;
    overflow: hidden;
}



.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.footer-logo span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact-mini a,
.footer-contact-mini span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-contact-mini a:hover {
    color: #0d9488;
}

.footer-contact-mini i {
    color: #0d9488;
    width: 18px;
    text-align: center;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.98rem;
    transition: var(--transition);
}

.footer-list a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-back-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-back-top:hover {
    background: #0d9488;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-split {
        flex-direction: column;
        gap: 48px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-visual {
        flex: 1;
        max-width: 100%;
        order: 2;
    }

    .hero-image-frame img {
        min-height: 260px;
    }

    .hero-floating-card {
        left: 12px;
        bottom: 12px;
    }

    .premium-block,
    .premium-block:nth-child(even) {
        flex-direction: column;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map-frame {
        border-radius: 20px 20px 0 20px;
    }

    .contact-map-frame iframe {
        height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 40px;
    }

    .footer-brand {
        max-width: none;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stat-badge {
        grid-template-columns: 1fr;
    }
}

/* subtle animations */
.feature-item,
.btn,
.service-row,
.premium-block {
    transition: transform 0.2s, box-shadow 0.25s;
}

img,
i {
    transition: 0.15s;
}

hr {
    opacity: 0.2;
}
