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

:root {
    --primary: #1AB394;
    --primary-dark: #148f76;
    --primary-light: rgba(26, 179, 148, 0.1);
    --secondary: #0F172A;
    /* Deeper slate for more premium feel */
    --accent: #E67E22;
    --text: #334155;
    --text-light: #64748B;
    --bg: #FFFFFF;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.1;
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 40px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

nav.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
}

.nav-logo img {
    height: 50px;
    transition: var(--transition);
}

#nav-check {
    display: none;
}

.nav-btn {
    display: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-mobile {
    display: none;
}

.desktop-only {
    display: inline-block;
}

.btn-cta {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(26, 179, 148, 0.39);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 179, 148, 0.23);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 10% 80px;
    background: radial-gradient(circle at top right, rgba(26, 179, 148, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(26, 179, 148, 0.05), transparent);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--secondary);
}

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

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(26, 179, 148, 0.2);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Services */
.services {
    padding: 100px 10%;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
    border: 1px solid var(--bg-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
    background: var(--primary-light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 24px;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}


/* About */
.about {
    padding: 120px 10%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 30px 30px 0px var(--primary-light);
    transition: var(--transition);
}

.about-image:hover {
    box-shadow: 20px 20px 0px var(--primary);
}

.about-image img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    padding: 120px 10%;
    background: var(--bg-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 32px;
    box-shadow: var(--shadow);
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author h4 {
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    font-weight: 700;
}

.star-rating {
    color: #F1C40F;
    margin-bottom: 10px;
    display: block;
}

/* Contact */
.contact {
    padding: 120px 10%;
    background-color: var(--secondary);
    color: white;
}


.contact h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
}

.contact-item a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Footer Logo */
.footer-logo {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
}


/* Team */
.team {
    padding: 100px 10%;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: var(--bg-light);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin-bottom: 5px;
    color: var(--secondary);
}

.team-card .role {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Contact Form & Map */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect on dark bg */
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-wrapper h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    font-size: 1rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    box-shadow: var(--shadow);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    margin-top: 2px;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile & Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    nav {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 15px 30px;
    }

    .nav-btn {
        display: block;
    }

    .nav-btn label {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
    }

    .nav-btn label span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--secondary);
        border-radius: 5px;
        position: absolute;
        transition: var(--transition);
    }

    .nav-btn label span:nth-child(1) {
        top: 0;
    }

    .nav-btn label span:nth-child(2) {
        top: 11px;
    }

    .nav-btn label span:nth-child(3) {
        top: 22px;
    }

    #nav-check:checked~.nav-btn label span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }

    #nav-check:checked~.nav-btn label span:nth-child(2) {
        opacity: 0;
    }

    #nav-check:checked~.nav-btn label span:nth-child(3) {
        transform: rotate(-45deg);
        top: 11px;
    }

    .nav-links {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 0;
        background: var(--white);
        top: 80px;
        left: 0;
        overflow: hidden;
        transition: var(--transition);
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-top: 1px solid var(--bg-light);
    }

    .nav-links a {
        padding: 20px;
        display: block;
        width: 100%;
    }

    #nav-check:checked~.nav-links {
        height: auto;
        padding-bottom: 20px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

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

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 60px;
        justify-content: center;
    }

    .about {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-image {
        order: -1;
        box-shadow: 15px 15px 0px var(--primary-light);
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}