@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0A4D3C;
    /* Deep Emerald */
    --primary-light: #126B54;
    --accent: #D4AF37;
    /* Gold */
    --bg: #F8FAF9;
    --white: #FFFFFF;
    --dark: #121413;
    --text: #1A1C1B;
    --text-muted: #6B7280;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow: 0 10px 30px -10px rgba(0, 77, 60, 0.1);
    --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Standard Utilities */
.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Page Header Standard */
.page-header {
    padding: 160px 0 60px;
    background: var(--bg);
    border-bottom: 1px solid #f0f0f0;
}

.page-header .breadcrumbs {
    justify-content: center;
    margin-bottom: 16px;
    opacity: 0.7;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.page-header h1 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.page-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .page-header .breadcrumbs {
        margin-bottom: 12px;
    }
}

/* Typography Overhaul */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-label {
    display: inline-block;
    background: rgba(10, 77, 60, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 10px 20px -5px rgba(10, 77, 60, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-light);
}

.btn-white {
    background: var(--white);
    color: var(--primary) !important;
}

/* Header - Modern Minimal */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled,
header.header-internal {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent);
}

.logo i {
    color: var(--accent);
    font-size: 28px;
}

header.scrolled .logo,
header.header-internal .logo {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.9;
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

header.scrolled .nav-links a,
header.header-internal .nav-links a {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 10px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent) !important;
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-btns-right .btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-toggle {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-bottom: -60px;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 80px);
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0.9;
}

/* Mobile App Bottom Nav */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    height: 64px;
    border-radius: 100px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
}

.mobile-nav-item.active {
    color: var(--primary);
}

/* WhatsApp Chat Widget */
.wa-widget {
    position: fixed;
    right: 25px;
    bottom: 95px;
    z-index: 9999;
}

.wa-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: var(--transition);
}

.wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF3B30;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
}

.mobile-nav-item {
    position: relative;
    /* For badge positioning */
}

.nav-badge {
    position: absolute;
    top: 5px;
    right: 25%;
    background: #FF3B30;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
}

/* Notification Bubble - Mobile Only */
@media (max-width: 768px) {
    .wa-notif-bubble {
        position: fixed;
        bottom: 95px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: var(--primary);
        color: white;
        padding: 10px 20px;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
    }

    .wa-notif-bubble.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .wa-notif-bubble .bubble-arrow {
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid var(--primary);
    }

    /* Pulse animation for bubble to grab attention */
    .wa-notif-bubble.show {
        animation: bubblePulse 2s infinite 1s;
    }

    @keyframes bubblePulse {
        0% {
            transform: translateX(-50%) scale(1);
        }

        50% {
            transform: translateX(-50%) scale(1.05);
        }

        100% {
            transform: translateX(-50%) scale(1);
        }
    }
}

.wa-notif-bubble {
    display: none;
}

@media (max-width: 768px) {
    .wa-notif-bubble {
        display: block;
    }
}

.wa-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    transform-origin: bottom center;
    animation: popupFade 0.3s ease;
}

@media (max-width: 768px) {
    .wa-widget {
        right: 0;
        left: 0;
        bottom: 84px;
        /* Exactly above bottom nav */
        display: flex;
        justify-content: center;
    }

    .wa-popup {
        right: auto;
        left: auto;
        width: calc(100vw - 40px);
        max-width: 350px;
    }
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wa-popup.active {
    display: block;
}

.wa-header {
    background: var(--primary);
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wa-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #eee;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-avatar::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid white;
}

.wa-body {
    padding: 20px;
    background: #F0F2F5;
}

.wa-msg {
    background: white;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    font-size: 14px;
    display: inline-block;
    max-width: 90%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: #444;
}

.wa-input-area {
    padding: 15px;
    background: white;
    display: flex;
    gap: 10px;
}

.wa-input-area input {
    flex: 1;
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.wa-send {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.mobile-nav-item i {
    font-size: 20px;
}

/* Feature Cards - App Style */
.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(10, 77, 60, 0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 24px;
}

/* Services App Grid */
.services-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.service-app-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--dark);
}

.service-app-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.service-app-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

.service-app-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.service-app-info p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 64px;
    max-width: 600px;
}

/* Appointment Bar */
.appointment-bar {
    background: var(--primary);
    padding: 60px;
    border-radius: var(--radius-lg);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}


/* Footer modern minimal */
footer {
    padding: 80px 0 40px;
    background: var(--white);
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logo-footer {
    color: var(--primary) !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span {
    color: var(--accent);
}

.breadcrumbs i {
    font-size: 10px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 991px) {
    .app-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }

    .about-grid div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        width: 100%;
        gap: 12px !important;
    }

    .stats-grid .card {
        padding: 15px !important;
    }

    .about-grid img {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: var(--radius-md);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col .logo {
        justify-content: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-col p {
        max-width: 300px;
        margin: 0 auto;
    }

    .appointment-bar {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .hero {
        height: 80vh;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .hero h1 {
        font-size: 42px;
    }

    .mobile-nav {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .header-btns-right .btn {
        display: none;
    }

    .header-btns-right {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        background: transparent;
        color: var(--accent);
        border: 2px solid rgba(212, 175, 55, 0.2);
        border-radius: 14px;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        cursor: pointer;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

    .menu-toggle:active {
        transform: scale(0.9);
        background: rgba(212, 175, 55, 0.1);
    }

    header.scrolled .menu-toggle,
    header.header-internal .menu-toggle {
        border-color: rgba(212, 175, 55, 0.3);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: var(--white);
        z-index: 3000;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 40px;
        display: block !important;
    }

    .mobile-menu-overlay.active {
        right: 0;
    }

    .close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--primary);
        cursor: pointer;
    }

    .mobile-menu-logo {
        font-size: 28px;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 60px;
    }

    .mobile-menu-logo span {
        color: var(--accent);
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mobile-nav-links a {
        font-size: 24px;
        font-weight: 800;
        color: var(--text);
        text-transform: uppercase;
        letter-spacing: -0.02em;
    }

    .mobile-nav-links a.active {
        color: var(--accent);
    }

    .mobile-menu-footer {
        margin-top: 60px;
    }

    .logo {
        color: var(--white) !important;
    }

    header.scrolled .logo,
    header.header-internal .logo {
        color: var(--primary) !important;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        margin-bottom: -30px;
    }

    .features-container {
        margin-top: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    footer {
        padding-bottom: 110px;
    }

}
/* CSS Updated: 2026-01-30 02:57:45 */
