:root {
    --primary-green: #6BCB77;
    --primary-teal: #00B4D8;
    --primary-navy: #1B263B;
    --text-color: #333333;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light); /* Change base background to light for better contrast */
    line-height: 1.6;
    position: relative;
}

/* Global Glass Background Blobs */
.glass-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.7;
    animation: floatBlob 15s infinite alternate ease-in-out;
    transform-origin: center;
}

.blob-teal { background: var(--primary-teal); }
.blob-green { background: var(--primary-green); }
.blob-blue { background: rgba(66, 153, 225, 0.5); }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(40px, -20px) scale(1.05) rotate(45deg); }
    100% { transform: translate(-20px, 40px) scale(1.1) rotate(90deg); }
}

/* Glassmorphism Panel Utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
    border-radius: 20px;
    transition: var(--transition);
}
.glass-panel:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 30px; position: relative; display: inline-block;}
h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 2px;
}
.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.6);
    color: white;
    background-position: right center;
}

.btn-outline {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary-navy);
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5); /* More transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text span {
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 500;
    margin-top: 5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav a:not(.btn) {
    font-weight: 500;
    color: var(--primary-navy);
    position: relative;
}
.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-green);
    transition: var(--transition);
}
.nav a:not(.btn):hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section Alt Layout */
.hero.layout-alt {
    padding-top: 140px;
    padding-bottom: 60px;
    background: transparent; /* Changed for glassmorphism */
    min-height: auto;
    overflow: hidden;
    position: relative;
}

.hero-inner-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image-alt {
    position: relative;
    z-index: 1;
}

.hero-image-alt img {
    width: 100%;
    border-radius: 30px;
    box-shadow: none;
    object-fit: cover;
    object-position: center top;
    height: 600px;
    background: #e6edf2; /* slight fallback */
}

.hero-content-alt {
    position: relative;
    padding: 40px; /* added padding */
    z-index: 1;
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128,193,64,0.15) 0%, rgba(25,167,163,0.05) 50%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    top: -150px;
    left: -200px;
    z-index: -1;
}

.hero-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 20px;
    display: block;
}

.hero-content-alt h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

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

.hero-content-alt p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-phone {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-phone:hover {
    color: var(--primary-teal);
}

.hero-phone i {
    font-size: 1.3rem;
    color: var(--primary-navy);
}
.hero-phone:hover i {
    color: var(--primary-teal);
}

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

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border-top: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top-color: var(--primary-teal);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* About Section Alt Layout */
.about.layout-alt {
    padding: 120px 0;
    background: radial-gradient(circle at 30% 50%, rgba(206,236,236,0.3) 0%, rgba(244,247,246,1) 60%);
    position: relative;
    overflow: hidden;
}

.about-inner-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content-alt {
    padding-right: 40px;
}

.about-pill {
    display: inline-block;
    padding: 8px 20px;
    border: 1px dashed var(--primary-navy);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

.about-content-alt h2 {
    font-size: 3.5rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

.about-content-alt h2::after {
    display: none;
}

.about-content-alt h2 span {
    color: var(--primary-teal);
}

.about-content-alt p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-about {
    padding: 15px 35px;
}

.about-image-alt {
    position: relative;
}

.about-image-alt img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--primary-navy);
    color: white;
    text-align: center;
}
.testimonials h2 { color: white; }
.testimonials h2::after { background: var(--primary-green); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #e0e0e0;
}
.testimonial-author {
    font-weight: 600;
    color: var(--primary-teal);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    color: white;
}
.cta h2 { color: white; margin-bottom: 20px; }
.cta h2::after { display: none; }
.cta .btn {
    background: white;
    color: var(--primary-navy);
    margin-top: 20px;
}
.cta .btn:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer Enhancements */
.footer {
    background: #0f1c2d;
    position: relative;
    color: white;
    padding: 80px 0 20px;
    margin-top: 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #88d4d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-col h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
}
.footer-brand p {
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-right: 20px;
}
.social-links { display: flex; gap: 12px; }
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-icon:hover { 
    background: var(--primary-teal); 
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(56, 182, 182, 0.4);
    border-color: var(--primary-teal);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: #a0aec0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.footer-links a i {
    font-size: 0.7rem;
    margin-right: 10px;
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}
.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}
.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-hours { list-style: none; padding: 0; }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    color: #a0aec0;
}
.footer-hours li:last-child {
    border-bottom: none;
}
.footer-hours .closed {
    color: #fc8181;
    font-weight: 500;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.footer-contact-item .f-icon {
    width: 40px;
    height: 40px;
    background: rgba(56, 182, 182, 0.1);
    color: var(--primary-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.footer-contact-item strong {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-size: 0.95rem;
}
.footer-contact-item p {
    color: #a0aec0;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}
.footer-contact-item a {
    color: #a0aec0;
    transition: color 0.3s ease;
}
.footer-contact-item a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    color: #718096;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav.active { display: flex; }
    .mobile-nav-toggle { display: block; }
    .hero-inner, .about-inner, .about-inner-alt { grid-template-columns: 1fr; }
    .hero { padding-top: 100px; text-align: center; }
    h1 { font-size: 2.5rem; }
    .hero-content .btn { margin-bottom: 30px; }
}

/* Animations */
.fade-in, .slide-up, .slide-left, .slide-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-in { transform: translateY(30px); }
.slide-up { transform: translateY(50px); }
.slide-left { transform: translateX(50px); }
.slide-right { transform: translateX(-50px); }

.fade-in.appear, .slide-up.appear, .slide-left.appear, .slide-right.appear {
    opacity: 1;
    transform: translate(0, 0);
}

/* Services Carousel Section */
.services-carousel-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}
.services-carousel-section h2::after {
    display: none;
}
.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
.carousel-slide {
    min-width: calc(25% - 15px);
}
@media (max-width: 1200px) {
    .carousel-slide { min-width: calc(33.333% - 13.33px); }
}
@media (max-width: 900px) {
    .carousel-slide { min-width: calc(50% - 10px); }
}
@media (max-width: 600px) {
    .carousel-slide { min-width: 100%; }
}
.service-slide-card {
    height: 350px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: white;
}
.card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}
.card-icon {
    font-size: 2rem;
    z-index: 2;
    position: relative;
}
.card-content {
    z-index: 2;
    position: relative;
}
.card-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.card-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}
.text-center {
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 2.5rem;
    padding: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.carousel-btn:hover {
    color: var(--primary-teal);
    transform: translateY(-50%) scale(1.1);
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.btn-green {
    background: linear-gradient(135deg, #66d366, #44b544);
    color: white;
    box-shadow: 0 4px 15px rgba(68, 181, 68, 0.3);
    border: none;
    border-radius: 40px;
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 181, 68, 0.4);
    color: white;
}

/* Why Choose Me Section */
.why-choose-me {
    padding: 100px 0;
    background-color: #fdfaf3; /* light cream background from image */
    overflow: hidden;
}
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-image-wrapper {
    position: relative;
    padding: 20px;
}
.why-image-wrapper .main-img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.why-image-wrapper .shape-blob {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 120px;
    z-index: 2;
}
.why-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}
.why-content h2::after {
    display: none;
}
.why-content h2 span {
    color: var(--primary-teal);
}
.why-subheading {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
}
.why-list {
    list-style: none;
    padding: 0;
}
.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #ccc;
}
.why-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.why-icon {
    width: 25px;
    height: 25px;
    background-color: #6a8bce; /* soft blue matching the image */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}
.why-text h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-weight: 600;
}
.why-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .why-inner {
        grid-template-columns: 1fr;
    }
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: #fdfaf3; /* Matching the cream color */
    position: relative;
    overflow: hidden;
}
.faq-background-shape {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,245,210,0.5) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
}
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.faq-header h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-navy);
}
.faq-header h2::after { display: none; }
.faq-highlight {
    color: #799be0; /* soft blue/purple */
}
.faq-header p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}
.btn-faq {
    background: #799be0;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(121, 155, 224, 0.3);
}
.btn-faq:hover {
    background: #6286d3;
    color: white;
    transform: translateY(-2px);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-bottom: 1px dashed #ccc;
    padding: 20px 0;
}
.faq-item:first-child {
    padding-top: 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question h3 {
    font-size: 1.25rem;
    color: var(--primary-navy);
    font-weight: 500;
    margin-bottom: 0;
    transition: color 0.3s ease;
}
.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #799be0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}
.faq-answer p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.faq-item.active .faq-question h3 {
    color: #799be0;
}
.faq-item.active .faq-toggle {
    background-color: #f7864c; /* orange from the image */
}
.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

/* Contact Form Section */
.contact-section {
    padding: 120px 0;
    background-color: #fcfaf5;
    position: relative;
    overflow: hidden;
}
.contact-bg-shape {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230,245,210,0.6) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.contact-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.contact-content h2 {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}
.contact-content h2::after { display: none; }
.contact-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.contact-form .form-row .form-group {
    margin-bottom: 0;
}
.contact-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-navy);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.contact-form label span {
    color: #d9534f;
}
.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.char-count {
    font-size: 0.75rem;
    color: #888;
}
.contact-form input,
.contact-form textarea {
    background: white;
    border: 1px dashed #bbb;
    border-radius: 20px;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}
.contact-form textarea {
    resize: none;
    border-radius: 20px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #799be0;
    box-shadow: 0 0 10px rgba(121,155,224,0.1);
}

@media (max-width: 992px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mega Menu */
.nav-item-dropdown {
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: center;
}
.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: -200px;
    width: 750px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 100;
    overflow: hidden;
}
.mega-menu-inner {
    display: flex;
    background: white;
}
.mega-menu-image-col {
    width: 45%;
    position: relative;
    overflow: hidden;
}
.mega-menu-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mega-menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mega-menu-overlay p {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 500;
}
.btn-outline-dashed {
    display: inline-block;
    padding: 10px 20px;
    border: 1px dashed white;
    border-radius: 30px;
    color: white !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-dashed:hover {
    background: white;
    color: var(--primary-navy);
}

.mega-menu-links-col {
    width: 55%;
    padding: 40px;
}
.mega-menu-links-col h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    font-weight: 600;
}
.mega-menu-lists {
    display: flex;
}
.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.mega-menu-list.dashed-left {
    border-left: 1px dashed #ccc;
    padding-left: 30px;
    margin-left: 30px;
}
.mega-menu-list li {
    margin-bottom: 15px;
}
.mega-menu-list li:last-child {
    margin-bottom: 0;
}
.nav .mega-menu-list a {
    text-decoration: none;
    color: var(--primary-navy);
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0;
    font-weight: 400;
}
.nav .mega-menu-list a::after {
    display: none;
}
.nav .mega-menu-list a:hover {
    color: var(--primary-teal);
}

/* Services Page - Banner */
.services-banner-section {
    padding: 120px 0 60px;
    background-color: #fdfaf3; /* light cream */
}
.services-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 30px;
    overflow: hidden;
    background-color: #e5f2b8; /* light green from image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.services-banner-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}
.services-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-banner-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.services-banner-content h2 {
    font-size: 3.5rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
}
.services-banner-content h2::after { display: none; }
.services-banner-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

/* Services Page - Grid */
.services-grid-page {
    padding: 60px 0 120px;
    background-color: #fdfaf3;
}
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-page-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.service-page-card .card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}
.service-page-card:hover .card-bg {
    transform: scale(1.05);
}
.service-page-card .card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}
.service-page-card .card-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    color: white;
    font-size: 1.8rem;
    z-index: 3;
}
.service-page-card .card-text {
    position: relative;
    z-index: 3;
    color: white;
}
.service-page-card .card-text h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}
.service-page-card .card-text h3::after { display: none; }
.service-page-card .card-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

@media (max-width: 992px) {
    .services-banner-inner {
        grid-template-columns: 1fr;
    }
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Detail Banner */
.service-detail-banner-wrapper {
    padding: 60px 0;
    background-color: #fdfaf3;
}
.service-detail-banner {
    display: grid;
    grid-template-columns: 1fr 400px;
    background: white;
    border: 1px dashed #ccc;
    border-radius: 20px;
    overflow: hidden;
}
.service-detail-banner .banner-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-detail-banner .banner-content h2::after { display: none; }
.service-detail-banner .banner-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}
.service-detail-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Detail Content */
.service-detail-content-section {
    padding: 0 0 100px;
    background-color: #fdfaf3;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
}
.sidebar-services-box {
    background-color: #e5f2b8; /* light green */
    padding: 30px 25px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-services-list li {
    margin-bottom: 15px;
}
.sidebar-services-list li:last-child {
    margin-bottom: 0;
}
.sidebar-services-list a {
    text-decoration: none;
    color: var(--primary-navy);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.sidebar-services-list a i {
    width: 25px;
    height: 25px;
    border: 1px solid var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}
.sidebar-services-list a:hover i,
.sidebar-services-list li.active a i {
    background: var(--primary-navy);
    color: white;
}

.sidebar-booking-box {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px dashed #ccc;
}
.sidebar-form input,
.sidebar-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px dashed #ccc;
    border-radius: 30px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
    color: #555;
}
.time-select-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-main-content .section-title {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
}
.service-main-content .section-title::after { display: none; }
.service-paragraph {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* Service Accordion (Simplified) */
.service-accordion .accordion-item {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}
.accordion-header {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.accordion-header i {
    color: #799be0; /* soft blue icon */
}

/* Doctors Grid */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.doctor-card {
    border: 1px dashed #ccc;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    text-align: center;
}
.doctor-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #e2e8f0;
}
.doctor-info {
    padding: 15px;
}
.doctor-info h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
}
.doctor-info p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.view-all-doctors {
    font-size: 0.8rem;
    color: var(--primary-navy);
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.view-all-doctors i {
    margin-left: 5px;
}

@media (max-width: 992px) {
    .service-detail-banner {
        grid-template-columns: 1fr;
    }
    .service-detail-banner .banner-image {
        height: 300px;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .doctors-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles */
.blog-header-section {
    padding: 120px 0 60px;
    background-color: #fcfaf5;
}
.blog-grid-section {
    padding: 40px 0 100px;
    background-color: #fcfaf5;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px dashed #ccc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-teal);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.blog-card-content {
    padding: 30px;
}
.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
}
.blog-meta i {
    margin-right: 5px;
    color: var(--primary-teal);
}
.blog-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}
.blog-card-content h3::after { display: none; }
.blog-card-content h3 a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-card-content h3 a:hover {
    color: var(--primary-teal);
}
.blog-card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-read-more i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.btn-read-more:hover {
    color: var(--primary-teal);
}
.btn-read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Detail Styles */
.blog-detail-banner {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}
.blog-detail-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(32, 59, 88, 0.7), rgba(32, 59, 88, 0.9));
}
.blog-detail-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.blog-detail-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}
.blog-detail-header-content .about-pill {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}
.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}
.blog-detail-meta i {
    color: var(--primary-teal);
    margin-right: 8px;
}

.blog-detail-main {
    padding: 80px 0;
    background-color: #fcfaf5;
}
.blog-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}
.blog-article-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    border: 1px dashed #ccc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.sidebar-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px dashed #ccc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.recent-posts-list a:hover {
    color: var(--primary-teal) !important;
}
.categories-list a:hover {
    color: var(--primary-teal) !important;
}
.categories-list a span {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
    .blog-detail-header-content h1 {
        font-size: 2.5rem;
    }
}

/* Contact Page Styles */
.contact-header-section {
    padding: 120px 0 60px;
    background-color: #fcfaf5;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Appointment Modal Styles */
.appointment-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.appointment-modal-overlay.active {
    display: flex;
}
.appointment-modal-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--primary-navy);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}
.modal-left-image {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    min-height: 500px;
    position: relative;
}
/* We add a yellow overlay to match the design's yellow background if the image isn't yellow enough */
.modal-left-image::after {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(255, 193, 7, 0.3); /* Slight yellow tint */
}
.modal-right-content {
    flex: 1.2;
    background-color: #eaf4ab; /* Pale green-yellow from design */
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-title {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
}
.modal-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.modal-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.modal-form-group input, 
.modal-form-group select {
    width: 100%;
    padding: 12px 20px;
    border: 1px dashed #aaa;
    border-radius: 30px;
    background: white;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    color: #555;
}
.date-input-wrapper {
    position: relative;
}
.date-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}
.date-input-wrapper input {
    padding-left: 40px;
}
.time-selects {
    display: flex;
    gap: 10px;
}
.time-selects select {
    flex: 1;
}
.modal-submit-btn {
    width: 100%;
    border-radius: 30px;
    padding: 15px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    background: #7592df; /* Specific blue from design */
    border: none;
}
.modal-submit-btn:hover {
    background: #637fc9;
}
@media (max-width: 768px) {
    .appointment-modal-container {
        flex-direction: column;
    }
    .modal-left-image {
        min-height: 200px;
    }
    .modal-right-content {
        padding: 30px 20px;
    }
    .modal-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Gallery Section Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-teal);
}

/* -------------------------------------
   NEW DYNAMIC SECTIONS
   ------------------------------------- */

/* Animations for scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-card {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    position: relative;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    padding: 30px;
    border-radius: 20px;
    position: relative;
}
.testimonial-icon {
    font-size: 2rem;
    color: rgba(0, 180, 216, 0.2);
    position: absolute;
    top: 20px;
    right: 20px;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    font-weight: 700;
    color: var(--primary-navy);
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    position: relative;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.9);
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 255, 255, 0.4);
}
.faq-answer-inner {
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Recent Blogs Section */
.recent-blogs-section {
    padding: 80px 0;
    position: relative;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.blog-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
}
.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}
.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-category {
    font-size: 0.85rem;
    color: var(--primary-teal);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.blog-excerpt {
    color: var(--text-color);
    margin-bottom: 20px;
    flex: 1;
}
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* -------------------------------------
   SERVICES PAGES STYLES
   ------------------------------------- */

/* Services Banner */
.services-banner {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.services-banner-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}
.services-banner-content {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-lg);
    border-radius: 30px;
}
.services-banner-content h2 {
    font-size: 3.5rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}
.services-banner-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.services-banner-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.services-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Page Grid enhancements */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}
.service-page-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.service-page-card .card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.service-page-card:hover .card-bg {
    transform: scale(1.05);
}
.service-page-card .card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
}
.service-page-card .card-icon {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}
.service-page-card .card-text {
    position: relative;
    z-index: 2;
}
.service-page-card .card-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Our Approach Section */
.our-approach-section {
    padding: 80px 0;
    position: relative;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.approach-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}
.approach-card i {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

/* Service Detail Additions */
.service-detail-banner-wrapper {
    padding: 80px 0 40px;
    position: relative;
}
.service-detail-banner {
    display: flex;
    align-items: stretch;
    gap: 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.9);
}
.service-detail-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}
.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-accordion .accordion-item {
    margin-bottom: 15px;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    overflow: hidden;
}
.service-accordion .accordion-header {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.service-accordion .accordion-header:hover {
    background: rgba(255,255,255,0.9);
}
.service-accordion .accordion-header i {
    transition: transform 0.3s ease;
}
.service-accordion .accordion-header.active i {
    transform: rotate(180deg);
}
.service-accordion .accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
