@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #000000;
    --primary-light: #4fc3f7;
    --secondary: #7bc043;
    --bg-main: #f5fbf6;
    /* Soft minty beige background */
    --white: #ffffff;
    --text-main: #111111;
    --text-muted: #555555;
    --radius-xl: 60px;
    --radius-lg: 40px;
    --radius-md: 24px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.5;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

/* Typography Overrides */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

/* Header & Nav */
header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

header.scrolled {
    background: rgba(245, 251, 246, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

nav {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    letter-spacing: -0.5px;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.8rem 2.5rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

.header-cta .btn-outline {
    background: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-cta .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-wrapper {
    max-width: var(--container-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-black {
    background: var(--primary-light);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-black span.arrow {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    transform: rotate(-45deg);
}

.btn-black:hover {
    background: #3eb4e6;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 195, 247, 0.25);
}

.hero-secondary {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-rating span.stars {
    color: #ffb400;
    font-size: 1.2rem;
}

.hero-rating span.score {
    font-weight: 800;
    font-size: 1.5rem;
}

.hero-rating span.label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-visual {
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.badge-experts {
    position: absolute;
    bottom: 60px;
    left: -40px;
    background: var(--secondary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.badge-experts h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.badge-experts p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Section Common */
section {
    padding: 8rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.section-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.section-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
}

.section-header-split h2 {
    font-size: 3.5rem;
    max-width: 500px;
}

.section-header-split p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 450px;
    line-height: 1.7;
}

/* Why Us Section */
.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 600px;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.why-img-1 {
    grid-area: 1 / 1 / 3 / 2;
}

.why-img-2 {
    grid-area: 1 / 2 / 2 / 3;
}

.why-img-3 {
    grid-area: 2 / 2 / 3 / 3;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-top .why-grid {
    grid-template-columns: repeat(3, 1fr);
}

.why-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.why-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section */
.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-item-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-img-wrap {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item-new:hover img {
    transform: scale(1.08);
}

.service-item-new h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.service-item-new p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer New */
footer.footer-new {
    background: transparent;
    padding-top: 4rem;
}

.footer-top {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 5rem;
}

.footer-top a {
    color: var(--text-main);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.footer-top a:hover {
    color: var(--primary-light);
}

.footer-bottom-new {
    margin-top: 5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1100px) {

    .hero-wrapper,
    .section-header-split,
    .why-container,
    .why-grid,
    .services-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .badge-experts {
        bottom: 30px;
        left: 20px;
        padding: 1.2rem;
    }

    .badge-experts h3 {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-top .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-images {
        height: 400px;
    }
}