

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}



/* SECTIONS */
.section-title {
    text-align: center;
    margin: 80px 0 40px;
}

/* Specialties */
.specialties {
    padding: 80px 60px;
    text-align: center;
}
.subtitle {
    max-width: 600px;
    margin: 10px auto 40px;
    color: #666;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.card h3 {
    margin-bottom: 10px;
}

.card a {
    display: inline-block;
    margin-top: 15px;
    color: #3f7f73;
    text-decoration: none;
    font-weight: 600;
}
/* TESTIMONIAL */
.testimonial {
    padding: 80px 0;
    text-align: center;
    font-size: 20px;
}

/* ==============================
HEADER
============================== */

/* fix logo */
.site-logo img {
    max-height: 150px;
    width: auto;
    display: block;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* remove wordpress menu bullets */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.main-nav ul li {
    list-style: none;
}

.main-nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 18px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==============================
LOGO
============================== */

.site-logo img {
    height: 150px;
}

/* ==============================
MENU
============================== */

.menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #444;
    font-size: 16px;
    transition: all .25s ease;
    position: relative;
}

/* Hover underline */

.menu li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: #6c9f91;
    transition: width .25s ease;
}

.menu li a:hover {
    color: #6c9f91;
}

.menu li a:hover::after {
    width: 100%;
}

/* Active page */

.menu .current-menu-item a {
    color: #6c9f91;
    font-weight: 600;
}

/* ==============================
CTA BUTTON
============================== */

.btn-primary {
    background: #6c9f91;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-primary:hover {
    background: #5a887c;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ==============================
HAMBURGER
============================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #333;
    display: block;
}

/* ==============================
MOBILE MENU
============================== */

@media (max-width: 900px) {

    
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .main-nav.active {
        display: flex;
    }

    .menu {
        flex-direction: column;
        gap: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-primary {
        display: none;
    }

}
.services {
    padding: 80px 0;
}
.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
}

.wpcf7 input[type="submit"] {
    background: #2f6f68;
    color: white;
    border: none;
    padding: 14px;
    cursor: pointer;
}
a:focus,
button:focus {
    outline: 3px solid #2f6f68;
    outline-offset: 2px;
}

.blog-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.blog-card h2 a {
    color: #2f6f68;
    text-decoration: none;
}

.meta {
    font-size: 14px;
    color: #777;
}

.read-more {
    color: #2f6f68;
    font-weight: bold;
}

.testimonials {
    padding: 100px 0;
    background: #f2f6f5;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: auto;
}

.testimonial-slide {
    display: none;
    animation: fadeSlide 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide blockquote {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-slide .author {
    font-weight: bold;
    color: #2f6f68;
}

.slider-controls {
    margin-top: 30px;
}

.slider-controls button {
    background: #2f6f68;
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 8px;
}

/* Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stars {
    margin-bottom: 12px;
}

.stars span {
    color: #ccc;
    font-size: 20px;
}

.stars span.filled {
    color: #f5b301;
}

.client-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
}

/* FADE */
.testimonial-slider.fade .testimonial-slide {
    animation: fadeSlide 0.6s ease-in-out;
}

/* SLIDE */
.testimonial-slider.slide .testimonial-slide {
    animation: slideIn 0.6s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateX(40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* About */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 60px;
    align-items: center;
}

.about-image {
    height: 320px;
    border-radius: 16px;
    position: relative;
}

.badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #f4a261;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
}

.page-hero {
    padding: 120px 8% 80px;
    background: #f6f7f8;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3rem);
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

.about {
    padding: 100px 8%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-photo img {
    width: 100%;
    border-radius: 16px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-home {
    padding: 100px 8%;
    background: #fff;
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-home-photo img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.about-home-content h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.about-home-content p {
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 900px) {
    .about-home-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.entry-subtitle {
    margin-top: 12px;
    color: #666;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.consult-hero {
    background: linear-gradient(135deg, #4CAF8D, #2F8F83);
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.consult-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.consult-wrapper {
    padding: 70px 20px;
    background: #f7f9fb;
}

.consult-card {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    background: white;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
}

.consult-left h2 {
    margin-bottom: 10px;
}

.consult-left p {
    margin-bottom: 25px;
    color: #666;
}

.consult-right {
    background: #f2f6f8;
    padding: 30px;
    border-radius: 14px;
}

.consult-info h3 {
    margin-bottom: 20px;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #e3e6ea;
    font-size: 15px;
}

.wpcf7-submit {
    background: #4CAF8D;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.wpcf7-submit:hover {
    background: black}

@media(max-width:900px) {
    .consult-card {
        grid-template-columns: 1fr;
    }
}


.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: auto;
}

.testimonial-slide {
    display: none;
    animation: fade 60s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 1;
    }

    to {
        opacity: 2;
    }
}

.testimonial-text {
    font-size: 18px;
    margin: 25px 0;
    color: #555;
}

.testimonial-stars {
    color: #f5b301;
    font-size: 22px;
}

.testimonial-photo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-top: 20px;
}

.booking-success {
    background: #e8f7f1;
    padding: 18px;
    border-radius: 12px;
    margin-top: 15px;
    font-weight: 600;
    animation: pop .4s ease;
}

@keyframes pop {
    0% {
        transform: scale(.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* SERVICES PAGE MODERN */

.services-wrapper {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0;
}

.services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
}

.service-card-modern {
    background: #ffffff;
    border-radius: 18px;
    padding: 80px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: all .3s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.service-card-modern h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2f6f68;
}

.service-card-modern p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card-modern .btn-primary {
    background: #2f6f68;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: inline-block;
}

.service-card-modern .btn-primary:hover {
    background: #235651;
}

/* ===== MODERN SERVICES ===== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Card */

.service-card-modern {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover animation */

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Icon */

.service-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

/* Title */

.service-card-modern h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2f6f68;
}

/* Text */

.service-card-modern p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Button */

.service-card-modern .btn-primary {
    background: #2f6f68;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: inline-block;
    transition: .25s;
}

.service-card-modern .btn-primary:hover {
    background: #235651;
}

/* ===== SCROLL REVEAL ===== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.services-intro {
    max-width: 720px;
    margin: 20px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

}

/* ===== ABOUT HERO (UNIQUE STYLE) ===== */

.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f2f6f5, #ffffff);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    margin-bottom: 15px;
    color: #2f6f68;
}

.about-hero p {
    max-width: 600px;
    margin: auto;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* subtle decorative effect */
.about-hero::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: #2f6f68;
    opacity: 0.05;
    border-radius: 50%;
}

.about-hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
background: linear-gradient(135deg, #2f6f68, #3f7f73)
    opacity: 0.05;
    border-radius: 50%;
}

.page-hero {
    padding: 100px 0;
    background: #2f6f68;
    color: #fff;
    text-align: center;
}
.page-hero p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== ABOUT PAGE ===== */

.about-section {
    padding: 80px 0;
    background: #f9fbfa;
}

/* layout */

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* image */

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* text */

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.about-text p {
    margin-bottom: 18px;
}

.about-text strong {
    color: #2f6f68;
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}

.about-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    /* 👈 circle image */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: auto;
}

/* mobile */

@media (max-width:768px) {
    .about-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===== SERVICES GRID FIX ===== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 👈 2 columns */
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.service-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

/* hover effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: #2f6f68;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card .btn {
    display: inline-block;
    margin-top: auto;
    padding: 12px 22px;
    background: #2f6f68;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* hover animation */
.service-card .btn:hover {
    background: #3f7f73;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 111, 104, 0.3);
}

@media (max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* 👈 1 column on mobile */
    }
}

/* Remove bullets */
.nav-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile dropdown */
.nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Show menu */
.nav-menu.active {
    display: block;
}

/* Items */
.nav-menu-list li {
    border-bottom: 1px solid #eee;
}

.nav-menu-list li a {
    display: block;
    padding: 14px;
    text-decoration: none;
    color: #333;
}

.nav-menu-list li a:hover {
    background: #f5f5f5;
}

/* hamburger */
.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    z-index: 1000;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
}

/* ===== SERVICE CARDS BUTTON FIX ===== */

.service-card-modern {
    display: flex;
    flex-direction: column;
}

.service-card-modern>div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-modern>div p {
    flex: 1;
    margin-bottom: 0;
}

.service-card-modern>div .btn-primary {
    margin-top: 1.5rem;
    align-self: flex-start;
}
}
/* Optional: make it nicer on desktop */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .map-box iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-home-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-home-photo img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        margin: 0 auto;
        display: block;
    }
}

.map-box {
    width: 100%;
    min-height: 300px;
}

/* Header Actions — Facebook icon + CTA button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a9e9e;
    /* matches your teal theme */
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    color: #1877F2;
    /* Facebook blue on hover */
    transform: scale(1.1);
}