:root {
    --primary: #0D9488;
    --primary-dark: #0F766E;
    --primary-light: #F0FDFA;
    --secondary: #2563EB;
    --accent: #F59E0B;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-main: #FFFFFF;
    --bg-alt: #F8FAFC;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --container-width: 1200px;
    /* Consistent section spacing */
    --section-py: 5rem;
    --section-py-mobile: 3rem;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: #CCFBF1;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
}

/* ── Header ──────────────────────────────────────────── */
header {
    height: 72px;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E2E8F0;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.header-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* ── Hero Section ────────────────────────────────────── */
.hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: 3.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
}

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

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat strong {
    display: block;
    font-size: 1.875rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 1.5rem;
    left: -0.75rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.9rem 1.2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    border-left: 3px solid var(--primary);
}

.fc-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, var(--primary), #e91e8c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-icon-wrap i {
    color: #fff;
    width: 20px;
    height: 20px;
}

.fc-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.fc-text strong {
    font-size: 0.9rem;
    color: #1E293B;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.fc-text span {
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Section Header ──────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ── Services Section ────────────────────────────────── */
.services {
    padding: var(--section-py) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

/* ── Team Grid ──────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.team-card-pro {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid #F1F5F9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(199,36,119,0.14);
}

.team-card-pro .team-photo-wrap {
    height: 70px;
    background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 60%, #F5D0FE 100%);
    position: relative;
    flex-shrink: 0;
}

.team-card-pro .team-photo-wrap img {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 6px 18px rgba(199,36,119,0.15);
    object-fit: cover;
    object-position: top center;
}

.team-card-body {
    padding: 2.5rem 1rem 1rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card-body h3 {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1E293B;
    letter-spacing: -0.01em;
}

.team-card-body .team-role {
    display: inline-block;
    margin-bottom: 0.6rem;
    padding: 0.2rem 0.7rem;
    background: linear-gradient(135deg, #FDF2F8, #FCE7F3);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.72rem;
    border-radius: 999px;
    border: 1px solid #FBCFE8;
}

.team-card-body .team-desc {
    font-size: 0.78rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-card-body .team-insta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #E1306C;
    font-weight: 600;
    font-size: 0.72rem;
    text-decoration: none;
    padding: 0.25rem 0.65rem;
    background: #FDF2F8;
    border-radius: 999px;
    border: 1px solid #FCE7F3;
    transition: all 0.2s ease;
    margin-top: auto;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-card-body .team-insta:hover {
    background: #FCE7F3;
    transform: translateY(-2px);
}

.team-card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, #F472B6 100%);
    flex-shrink: 0;
}

.service-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.service-card .link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

/* ── About Section ───────────────────────────────────── */
.about {
    padding: var(--section-py) 0;
    background-color: var(--bg-alt);
}

.about .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.5rem;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.75rem;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: 0.975rem;
}

.features {
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.features li i {
    color: var(--primary);
    width: 18px;
    flex-shrink: 0;
}

/* ── CTA Section ─────────────────────────────────────── */
.cta {
    padding: var(--section-py) 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 0.875rem;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer ──────────────────────────────────────────── */
footer {
    padding: 4rem 0 2rem;
    background-color: #0F172A;
    color: var(--white);
}

footer .grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-info p {
    margin: 1.25rem 0;
    color: #94A3B8;
    max-width: 280px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

footer h4 {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a {
    color: #94A3B8;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    color: #94A3B8;
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #64748B;
    font-size: 0.85rem;
    gap: 1rem;
}

/* ── Tablet (max 992px) ──────────────────────────────── */
@media (max-width: 992px) {
    :root {
        --section-py: 4rem;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero .grid,
    .about .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-stats {
        gap: 1.75rem;
    }

    .stat strong {
        font-size: 1.6rem;
    }

    .image-wrapper img {
        height: 340px;
    }

    .about-image img {
        height: 100%;
        max-height: 400px;
        object-fit: cover;
    }

    .about-content h2,
    .section-header h2 {
        font-size: 1.9rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.9rem;
    }

    footer .grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-column: 1 / -1;
    }

    .footer-info p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .nav-links, .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .floating-card {
        left: 0.5rem;
        bottom: 1rem;
        padding: 0.75rem 1rem;
    }
}

/* ── Mobile (max 600px) ──────────────────────────────── */
@media (max-width: 600px) {
    :root {
        --section-py: 3rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2.5rem 0 2.5rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .stat strong {
        font-size: 1.4rem;
    }

    .image-wrapper img {
        height: 260px;
    }

    .floating-card {
        left: 0.25rem;
        bottom: 0.75rem;
        padding: 0.6rem 0.85rem;
        gap: 0.6rem;
    }

    .fc-icon-wrap {
        width: 32px;
        height: 32px;
    }

    .fc-text strong {
        font-size: 0.8rem;
    }

    .fc-text span {
        font-size: 0.7rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-image img {
        height: 100%;
        max-height: 300px;
        object-fit: cover;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .cta-box {
        padding: 2.25rem 1.25rem;
        border-radius: var(--radius-md);
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    footer {
        padding: 3rem 0 1.5rem;
    }

    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-info {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.25rem;
    }

    .badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.85rem;
    }
}
