:root {
    --primary-color: #35a8ac;
    --primary-light: #2a9094;
    --accent-color: #013e2f; /* Dark Green */
    --accent-light: #e6f4f1;
    --bg-light: #fdfbf7;
    --text-dark: #333333;
    --text-muted: #666666;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #013e2f;
}

.text-primary-custom { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-light-custom { background-color: var(--bg-light) !important; }

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
	height: 110px;
}
.navbar-brand {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand i {
    color: var(--accent-color);
    font-size: 2rem;
}
.navbar-brand span {
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
    color: var(--text-muted);
}
.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 10px;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: #013e2f;
}
.btn-primary-custom {
    background-color: #013e2f;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-custom:hover {
    background-color: #025742;
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-custom {
    background-color: transparent;
    color: #013e2f;
    border: 2px solid #013e2f;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-outline-custom:hover {
    background-color: #013e2f;
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 50px 0;
    background-color: #fff;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
    max-width: 100%;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: var(--primary-light);
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 30px;
}
.hero-image-wrapper {
    position: relative;
    height: auto;
}
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(53, 168, 172, 0.15);
    z-index: 1;
}
.hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: 10px;
    background: rgba(53, 168, 172, 0.9);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    border: 5px solid var(--accent-color);
}
.hero-image-badge i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Features Strip */
.features-strip {
    background-color: var(--primary-color);
    padding: 35px 0;
}
.feature-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.12);
    height: 100%;
    transition: background 0.3s;
}
.feature-strip-item:hover {
    background: rgba(255,255,255,0.05);
}
.feature-strip-item--last {
    border-right: none;
}
.feature-strip-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: rgba(1,62,47,0.12);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: all 0.35s;
    box-shadow: 0 0 0 0 rgba(1,62,47,0);
}
.feature-strip-item:hover .feature-strip-icon {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(1,62,47,0.4);
    transform: scale(1.08);
}
.feature-strip-text h6 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.feature-strip-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}

/* Services Section */
.services-section {
    padding: 40px 0;
    background-color: #fff;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h6 {
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.service-card h4 {
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}
.btn-link-custom {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn-link-custom:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}
.why-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.why-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.why-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}
.why-list li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.stat-box i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}
.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.stat-box p {
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* Testimonial Section */
.testimonial-section {
    position: relative;
    padding: 100px 0;
    color: #fff;
    background-color: var(--primary-color);
    overflow: hidden;
}
.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: overlay;
}
.testimonial-content {
    position: relative;
    z-index: 2;
}
.quote-icon {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.8;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
}
.testimonial-author {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.cta-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-cta-wp {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #013e2f;
    color: #fff;
    padding: 30px 0 20px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
}
.footer-logo i {
    color: #fff;
    font-size: 2rem;
}
.footer-logo span {
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
    color: #fff;
    opacity: 0.85;
}
.footer p {
    color: #fff;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.6;
}
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}
.social-links a:hover {
    background: #fff;
    color: #013e2f;
}
.footer h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    text-decoration: underline;
}
.contact-info {
    list-style: none;
    padding: 0;
}
.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #fff;
    opacity: 0.9;
}
.contact-info i {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 3px;
}
.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== Appointment Modal ===== */
.appt-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(53,168,172,0.2);
}
.appt-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.appt-modal-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.appt-modal-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(1,62,47,0.2);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-color);
}
.appt-modal-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}
.appt-modal-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    margin: 0;
}
.appt-close-btn {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.appt-close-btn:hover {
    background: rgba(255,255,255,0.25);
}
.appt-modal-body {
    padding: 28px;
    background: #fff;
    max-height: 75vh;
    overflow-y: auto;
}
/* Custom scrollbar */
.appt-modal-body::-webkit-scrollbar { width: 5px; }
.appt-modal-body::-webkit-scrollbar-track { background: #f1f1f1; }
.appt-modal-body::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }

/* Form Fields */
.appt-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.appt-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}
.appt-field label i {
    color: var(--accent-color);
    font-size: 0.8rem;
}
.appt-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8e6;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fafcfb;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}
.appt-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(53,168,172,0.08);
    background: #fff;
}
.appt-input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.08) !important;
}
.appt-invalid {
    display: none;
    font-size: 0.75rem;
    color: #dc3545;
    font-weight: 500;
}
.appt-textarea {
    resize: vertical;
    min-height: 90px;
}
.appt-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23013e2f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* Form Footer */
.appt-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eef1f0;
}
.appt-cancel-btn {
    background: transparent;
    border: 1.5px solid #ddd;
    color: #666;
    border-radius: 50px;
    padding: 9px 22px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.appt-cancel-btn:hover {
    border-color: #bbb;
    color: #444;
    background: #f5f5f5;
}
.appt-submit-btn {
    background: linear-gradient(135deg, #013e2f, #025742);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(1,62,47,0.3);
}
.appt-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1,62,47,0.4);
    color: #fff;
}
.appt-submit-btn:disabled {
    opacity: 0.75;
}

/* Success Screen */
.appt-success {
    text-align: center;
    padding: 40px 20px;
}
.appt-success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 16px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.appt-success h5 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.appt-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .hero-image-wrapper {
        display: none;
    }
    .hero-section {
        padding: 30px 0;
        text-align: center;
        overflow: hidden;
    }
    .hero-content {
        padding-right: 0;
    }
    .row {
        --bs-gutter-x: 1.5rem;
        margin-right: 0;
        margin-left: 0;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .services-section, .why-choose-section, .cta-section {
        padding: 50px 0;
    }
    .testimonial-section {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .testimonial-text {
        font-size: 1.5rem;
    }
    .footer {
        padding: 20px 0 20px;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    .contact-info li {
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .services-section, .why-choose-section, .cta-section {
        padding: 40px 0;
    }
    .hero-section {
        padding: 40px 0;
    }
    .testimonial-section {
        padding: 50px 0;
    }
    /* Smaller buttons on mobile */
    .btn-primary-custom,
    .btn-outline-custom,
    .btn-cta-wp {
        padding: 8px 18px !important;
        font-size: 0.83rem !important;
        gap: 6px;
    }
    .btn-primary-custom br {
        display: none;
    }
    .btn-cta-wp i {
        font-size: 1rem !important;
    }
    /* Modal buttons on mobile */
    .appt-submit-btn {
        padding: 9px 18px;
        font-size: 0.82rem;
        gap: 6px;
    }
    .appt-cancel-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
    .appt-footer {
        flex-direction: column-reverse;
        gap: 8px;
    }
    .appt-footer .appt-submit-btn,
    .appt-footer .appt-cancel-btn {
        width: 100%;
        justify-content: center;
    }
    /* Feature strip: 2x2 grid on mobile - no divider lines */
    .feature-strip-item {
        padding: 24px 10px;
        border-right: none;
        border-bottom: none;
    }
    .feature-strip-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 1.6rem;
    }
    .feature-strip-text h6 {
        font-size: 0.85rem;
    }
    .feature-strip-text p {
        font-size: 0.72rem;
    }
}
@media (max-width: 767px) {
	.features-strip {
    background-color: var(--primary-color);
    padding: 0px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 25px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.logo-img{
	height: 95px !important;
}
}