:root {
    --primary: #0F6E6E;
    --primary-light: #168d8d;
    --primary-soft: rgba(15, 110, 110, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --text: #334155;
    --text-light: #64748b;
    --bg-body: #f0f4f8;
    /* Soft blue-grey background to make glass pop */
    --gradient-bg: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    --radius: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--bg-body);
    background-image:
        radial-gradient(at 0% 0%, rgba(15, 110, 110, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(15, 110, 110, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 34px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(15, 110, 110, 0.2);
}

.btn-primary:hover {
    background: #0a5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 110, 110, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque for nav */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 15px 40px;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transform: scale(2);
    transform-origin: left center;
    margin-left: 20px;
    /* Compensation for scale shift if needed, or visual breathing room */
    transition: height 0.4s ease, transform 0.4s ease;
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    margin-left: 35px;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

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

.nav-links .btn-primary {
    margin-left: 35px;
    padding: 10px 24px;
    font-size: 0.9rem;
    color: white !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 0;
    /* Removing margin to let sections flow */
}

/* Adding a custom shape divider or just letting it be full screen */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    /* Slight angle */
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* Slight zoom for parallax feel if we added it */
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 110, 110, 0.85), rgba(15, 110, 110, 0.4));
    backdrop-filter: blur(2px);
}

.hero-content {
    max-width: 700px;
    margin-top: 60px;
    /* Offset for fixed nav */
    padding-left: 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    max-width: 550px;
}

.hero-content .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

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

/* Sections */
.section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.6;
}

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

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    padding: 30px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.card-body {
    padding: 0;
}

.card-body h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 600;
}

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

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 40px rgba(15, 110, 110, 0.3);
}

.cta-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-banner p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Team */
.team {
    /* No bg color change, keep minimalist flow */
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    flex: 0 1 300px;
    background: rgba(255, 255, 255, 0.5);
    /* Lighter glass */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 40px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-member .bio {
    font-size: 0.95rem;
    color: var(--text-light);
}

.team-img-wrapper {
    width: 200px;
    height: 250px;
    margin: 0 auto 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.team-member .role {
    display: block;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 5px;
}

/* Contact Split Section */
.contact-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.contact-left,
.contact-right {
    flex: 1 1 400px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-info-item .label {
    display: block;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.contact-info-item .value {
    color: var(--text-light);
    font-size: 1rem;
    text-decoration: none;
}

/* Why Choose Box */
.why-choose-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(15, 110, 110, 0.3);
}

.why-choose-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* New Site Footer */
.site-footer {
    background: var(--primary);
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 80px 0 30px;
    margin-top: 80px;
}

.footer-top-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.brand-col {
    flex: 2 1 300px;
}

.links-col,
.contact-col {
    flex: 1 1 200px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 300px;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.bottom-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    opacity: 0.8;
}

.bottom-links a:hover {
    opacity: 1;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        width: 95%;
        padding: 15px 25px;
    }

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

@media (max-width: 768px) {
    .navbar {
        border-radius: 20px;
        top: 10px;
        width: calc(100% - 20px);
    }

    .nav-links {
        position: fixed;
        top: 80px;
        /* Below nav */
        left: 0;
        /* Changed from right logic to simple container */
        width: 100%;
        height: auto;
        background: transparent;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        padding: 20px;
        transition: var(--transition);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.1rem;
    }

    .nav-links .btn-primary {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

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

    .hero-bg {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
    }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}