/* Global Styles */
:root {
    --rfh-blue: #004a99;
    --rfh-red: #e31e24;
    --rfh-dark: #1a1a1a;
    --text-gray: #555;
    --light-bg: #f8f9fa;
    --white: #FFFFFF;
    --overlay-color: rgba(26, 26, 26, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--rfh-dark);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.divider {
    height: 2px;
    width: 60px;
    background-color: var(--rfh-red);
    margin: 20px auto;
    opacity: 1;
}

/* Top Bar */
.top-bar {
    background-color: var(--rfh-blue);
    padding: 10px 0;
    color: var(--white);
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-left span {
    margin-right: 20px;
}

.social-right a {
    color: var(--white);
    margin-left: 15px;
}

.social-right a:hover {
    color: var(--rfh-dark);
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-left span {
        display: block;
        margin: 5px 0;
    }
}

/* Header */
header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.logo img {
    max-width: 180px;
    height: auto;
    width: 100%;
    object-fit: contain;
    
}



.logo-icon {
    font-size: 24px;
    color: var(--rfh-red);
    /* Red cross */
    border: 2px solid var(--rfh-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}



.company-name {
    font-weight: 700;
    color: var(--rfh-blue);
    /* Blue text */
    letter-spacing: 1px;
}

.company-suffix {
    font-size: 0.8rem;
    color: var(--rfh-red);
    font-weight: 600;
    letter-spacing: 2px;
}

#nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

#nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--rfh-blue);
}

#nav-menu a:hover,
#nav-menu a.active {
    color: var(--rfh-blue);
}

.btn-appointment {
    background-color: var(--rfh-red);
    color: var(--white) !important;
    padding: 10px 20px;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    background-color: #c01a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-scroll-container {
    height: 100vh;
    /* Scroll track length */
    position: relative;
    background-color: var(--white);
    transform-style: preserve-3d;
}

.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    background: url('Images/PHOTO-2024-01-17-17-39-20.jpg') no-repeat center center/cover ;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    z-index: 10;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: background-position, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-image-container {
    display: none;
}

/* Remove overlay to show 'only background image' */
.hero::after {
    display: none;
}

.hero::before {
    /* Gradient overlay to make text readable */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.hero-content {
    width: 50%;
    padding-left: 10%;
    position: relative;
    z-index: 2;
    background: transparent;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: whitesmoke;
    line-height: 1.1;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #80DEEA;
    /* Light cyan */
    font-weight: 400;
}

.hero-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin: 20px 0 30px;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-read-more {
    background-color: var(--rfh-red);
    color: var(--white);
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: #c01a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
}


.office-hours {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 74, 153, 0.9);
    /* Semi-transparent light blue */
    padding: 40px;
    width: 350px;
    z-index: 2;
    color: var(--white);
    text-align: center;
    will-change: transform, opacity;
}

.office-hours {
    background-color: rgba(0, 74, 153, 0.489);
    color: var(--white);
}

.office-hours h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding-bottom: 10px;
}

.hours-grid {
    margin-top: 20px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.contact-info {
    margin-top: 30px;
    font-size: 0.9rem;
    text-align: center;
}

.contact-info p {
    margin-bottom: 5px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.heart-shape {
    width: 300px;
    height: 400px;
    clip-path: path('M200 40 C120 -20 0 60 0 160 c0 120 120 200 200 240 c80 -40 200 -120 200 -240 C400 60 280 -20 200 40z');
}


/* Standard Heart Shape Mask using SVG data URI */
.heart-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
}


.about-text {
    flex: 1;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 2;
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
    background: url('Images/header-diabetes.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.164);
    /* Dark blue overlap */
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.services .divider {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    padding: 20px;
}

.service-card .icon {
    font-size: 40px;
    color: #80DEEA;
    margin-bottom: 20px;
    border: 1px solid #80DEEA;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    background-color: var(--rfh-red);
    color: var(--white);
    border-color: var(--rfh-red);
}

.service-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-card p {
    font-size: 0.9rem;
    color: #B0BEC5;
}

/* Stand For Section */
.stand-for {
    padding: 100px 0;
    background: url('Images/paralax-bg-tour-facilities.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--white);
    text-align: center;
}

.stand-for::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 50, 56, 0.164);
    /* Dark overlay */
}

.stand-for .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.eye-icon {
    font-size: 4rem;
    color: #4DD0E1;
    margin-bottom: 20px;
}

.stand-for h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.stand-for .divider {
    background-color: var(--white);
}

.stand-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: #ECEFF1;
}

/* Professionals Section */
.professionals {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.nurse-icon {
    font-size: 3rem;
    color: var(--rfh-blue);
    margin-bottom: 20px;
}

.professionals h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.professionals p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Appointment Section */
.appointment {
    position: relative;
    padding: 100px 0;
    background: url('images/appointment_bg.png') no-repeat center center/cover;
    text-align: center;
    color: var(--white);
}

.appointment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.164);
    /* Deep blue overlay */
    z-index: 1;
}

.appointment .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.appointment h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.appointment p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.appointment-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rfh-blue);
}

.form-group select {
    color: rgba(255, 255, 255, 0.7);
    /* Placeholder colorish */
}

.form-group select option {
    background-color: var(--rfh-dark);
    color: var(--white);
}

.full-width {
    grid-column: span 3;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background-color: var(--rfh-red);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c01a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
}

/* Footer (Updated) */
footer {
    background-color: var(--white);
    color: var(--text-gray);
    padding: 80px 0 20px;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
}

.about-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-icon-small {
    font-size: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rfh-red) 0%, #c01a1f 100%);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(227, 30, 36, 0.3);
}

.logo-icon-small:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
}

.logo-text-small {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.company-name-small {
    font-weight: 700;
    color: var(--rfh-blue);
    font-size: 1rem;
}

.company-suffix-small {
    font-size: 0.7rem;
    color: var(--rfh-red);
    font-weight: 600;
}


footer h4 {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-divider {
    width: 40px;
    height: 2px;
    background-color: var(--rfh-red);
    margin-bottom: 25px;
}

.contact-col p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
    border-bottom: 1px solid #ECEFF1;
    padding-bottom: 5px;
}

.footer-bottom {
    display: block;
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid #ECEFF1;
    font-size: 0.85rem;
    color: #B0BEC5;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about .container {
        flex-direction: column;
    }

    .office-hours,
    .hours-col {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    #nav-menu {
        position: absolute;
        top: 70px;
        /* Header height */
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default */
        text-align: center;
        padding: 20px 0;
    }

    #nav-menu.active {
        display: block;
    }

    #nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        flex-direction: column;
        height: 80vh;
        min-height: 80vh;
        background-position: center center !important;
        background-size: cover !important;
        background-attachment: fixed;
    }

    .hero-content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .office-hours {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .appointment-form {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Left side to balance floating buttons on right */
    width: 50px;
    height: 50px;
    background-color: var(--rfh-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--rfh-blue);
    transform: translateY(-5px);
}

.chat-body .message {
    margin-bottom: 10px;
    max-width: 80%;
    clear: both;
    position: relative;
    word-wrap: break-word;
    /* Ensure clear wrapping */
}

.bot-message {
    background-color: var(--white);
    padding: 10px;
    border-radius: 10px 10px 10px 0;
    /* Corner radius logic: top-left, top-right, bottom-right, bottom-left */
    /* Wait, standard is usually rounded everywhere except the 'tail' */
    border-radius: 10px 10px 10px 0;
    float: left;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-left: -5px;
}

.user-message {
    background-color: #E3F2FD;
    /* Light blue for user */
    padding: 10px;
    border-radius: 10px 10px 0 10px;
    float: right;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    align-self: flex-end;
    /* If using flex column */
}

/* Fix chat body flow */
.chat-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 15px;
    flex: 1;
    /* Fills the available space in the widget */
    overflow-y: auto;
    /* Enables scrolling */
}

.chat-body .user-message {
    align-self: flex-end;
    float: none;
    /* Override float if using flex */
}

.chat-body .bot-message {
    align-self: flex-start;
    float: none;
    transform: translateX(-5px);
}

/* Chat Options */
.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
    clear: both;
    align-self: flex-start;
}

.option-chip {
    background-color: var(--white);
    border: 1px solid var(--rfh-blue);
    color: var(--rfh-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.option-chip:hover {
    background-color: var(--rfh-blue);
    color: var(--white);
}

.bot-message p {
    white-space: pre-wrap;
    /* Preserve line breaks in bot messages */
    margin: 0;
}

/* Chat Widget Container - Missing styles added */
.chat-widget {
    position: fixed;
    bottom: 110px;
    right: 50px;
    width: 320px;
    height: 450px;
    /* Fixed height to ensure scrolling works */
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1999;
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

.chat-widget.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background-color: var(--rfh-blue);
    color: var(--white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-header button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
}

.chat-footer {
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex;
    background-color: var(--white);
}

.chat-footer input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
    font-size: 0.9rem;
}

.chat-footer button {
    background: none;
    border: none;
    color: var(--rfh-blue);
    font-size: 1.2rem;
    margin-left: 10px;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #FF0000;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}


.fab-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background-color: #25D366;
}

/* Hide WhatsApp button when chat widget is active */
#chatWidget.active~.floating-buttons .whatsapp-btn {
    display: none;
}

/* Hide chat button when chat widget is active */
#chatWidget.active~.floating-buttons .chat-wrapper {
    display: none;
}

.chat-btn {
    background-color: var(--rfh-blue);
}

/* Newsletter Button */
.newsletter-btn {
    background-color: var(--rfh-red);
    position: relative;
}

.newsletter-btn:hover {
    background-color: var(--rfh-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.newsletter-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--rfh-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    margin-right: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.newsletter-btn:hover .newsletter-tooltip {
    opacity: 1;
    visibility: visible;
    margin-right: 10px;
}

.newsletter-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--rfh-dark);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #F9FAFB;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--rfh-dark);
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.client-info h4 {
    color: var(--rfh-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: #90A4AE;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    color: var(--rfh-dark);
    margin-bottom: 20px;
}

.accordion {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: left;
}

.accordion-item {
    border: 1px solid #ECEFF1;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background-color: #FAFAFA;
    padding: 20px;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #F0F4F8;
}

.accordion-header span {
    font-weight: 600;
    color: var(--rfh-dark);
    font-size: 1rem;
}

.accordion-header i {
    color: var(--rfh-blue);
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-body {
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body p {
    padding: 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid #ECEFF1;
}

/* Responsive Testimonials & FAQ */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}