/**
 * HomeoWellness - Clinic Aesthetic Redesign
 * Colors from mockup:
 *   Primary (Dark Olive Green): #2b5329
 *   Secondary (Accent Green): #8bc34a
 *   Light BG: #f8faf8
 *   Dark BG (Footer): #1e391c
 */
:root {
    --primary-color: #18a1a7;
    --secondary-color: #f9922d;
    --accent-color: #f9922d;
    --light-bg: #cdeafa;
    --dark-bg: #2f59af;
    --cream-bg: #f2f9fd;
    --font-heading: 'Lora', 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --text-dark: #1a293b;
    --text-muted: #566a7f;
    --border-color: #d8e5ef;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-muted);
    overflow-x: hidden;
}

/**
 * Typography
 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

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

/**
 * Buttons
 */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    background-color: #1e3d1c;
    border-color: #1e3d1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 83, 41, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    border-radius: 6px;
    font-weight: 600;
    padding: 12px 28px;
    font-size: 14px;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/**
 * Accent Buttons
 */
.btn-accent {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #1e3d1c;
    border-color: #1e3d1c;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 83, 41, 0.3);
}
.btn-outline-accent {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    border-radius: 6px;
    font-weight: 600;
}
.btn-outline-accent:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/**
 * Top Bar & Navigation
 */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 7px 0;
    font-size: 13px;
    border-bottom: none;
}
.top-bar a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
.top-bar a:hover { color: #fff; }
.top-bar .list-inline-item { color: rgba(255, 255, 255, 0.9); }
.top-bar .social-icons a { margin-left: 15px; font-size: 14px; }

.navbar {
    background-color: transparent;
    padding: 0px 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}
.navbar-brand img { max-height: 55px; }
.nav-link {
    font-weight: 500;
    color: #333;
    padding: 8px 16px !important;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.nav-link:hover::after {
    transform: scaleX(1);
}

/**
 * Section Utilities
 */
.section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 8px;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto;
    border-radius: 2px;
}

/**
 * Hero Section
 */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1584515933487-779824d29309?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(139, 195, 74, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-section__tagline {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 15px;
}
.hero-section__title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
}
.hero-section__title em {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 400;
}
.hero-section__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.hero-section__stats {
    display: flex;
    gap: 35px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}
.hero-section__stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}
.hero-section__stat-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}
.hero-section__image {
    max-height: 480px;
}
.hero-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Decorative elements for hero */
.hero-section .hero-decor-leaf {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
}

/**
 * Trust Section
 */
.trust-section {
    padding: 70px 0;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.trust-card {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 100%;
    transition: all 0.35s ease;
}
.trust-card:hover {
    box-shadow: 0 8px 25px rgba(43, 83, 41, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}
.trust-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px;
    color: var(--primary-color);
    transition: all 0.3s;
}
.trust-card:hover .trust-card__icon {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.trust-card__title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
    font-family: var(--font-body);
}
.trust-card__text {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/**
 * Treatments Section
 */
.treatments-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}
.treatment-card-v2 {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
}
.treatment-card-v2:hover {
    box-shadow: 0 8px 25px rgba(43, 83, 41, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}
.treatment-card-v2__icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s;
}
.treatment-card-v2:hover .treatment-card-v2__icon {
    background: var(--light-bg);
    border-color: var(--secondary-color);
}
.treatment-card-v2__title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--text-dark);
    font-family: var(--font-body);
}
.treatment-card-v2__desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.treatment-card-v2__link {
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
}
.treatment-card-v2__link:hover {
    color: var(--primary-color);
}

/**
 * About Doctor Section
 */
.about-doctor-section {
    padding: 80px 0;
    background: #fff;
}
.about-doctor__image-wrapper {
    position: relative;
    padding: 20px 0 0 20px;
}
.about-doctor__image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(43, 83, 41, 0.12);
    width: 100%;
}
.about-doctor__experience-badge {
    position: absolute;
    bottom: -20px;
    left: -10px;
    background: var(--primary-color);
    color: #fff;
    padding: 25px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(43, 83, 41, 0.25);
    border: 6px solid #fff;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-doctor__experience-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.about-doctor__experience-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}
.about-doctor__credential {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.about-doctor__credential i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

/**
 * Gallery Section
 */
.gallery-section {
    padding: 80px 0;
    background: var(--light-bg);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-grid.gallery-grid--bottom {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 15px;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
}
.gallery-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-card:hover .gallery-card__image {
    transform: scale(1.08);
}
.gallery-card__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(43, 83, 41, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}
.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}
.gallery-card__icon {
    width: 45px; height: 45px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(15px);
    transition: transform 0.3s ease;
}
.gallery-card:hover .gallery-card__icon {
    transform: translateY(0);
}
.gallery-card__caption {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}
.btn-view-more {
    background: #fff;
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-view-more:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/**
 * Appointment Section
 */
.appointment-section-v2 {
    padding: 80px 0;
    background-color: var(--cream-bg);
}
.appointment-cta-panel {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3d1c 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.appointment-cta-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.appointment-cta-panel p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}
.appointment-form-panel {
    background-color: #fff;
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 1px solid #f0f0f0;
}
.appointment-form-panel .form-control,
.appointment-form-panel .form-select {
    border-color: var(--border-color);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
}
.appointment-form-panel .form-control:focus,
.appointment-form-panel .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(106, 159, 44, 0.15);
}
.appointment-form-panel .form-label {
    font-size: 13px;
    color: var(--text-dark);
}

/**
 * Testimonials Section
 */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}
.custom-testimonial-tabs .nav-link {
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    background: #fff;
    font-size: 14px;
}
.custom-testimonial-tabs .nav-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.testimonial-card-v2 {
    background: var(--light-bg);
    padding: 25px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.testimonial-card-v2:hover {
    box-shadow: 0 8px 25px rgba(43, 83, 41, 0.1);
    transform: translateY(-3px);
}
.testimonial-card-v2__quote {
    font-size: 40px;
    color: var(--secondary-color);
    line-height: 0.8;
    margin-bottom: 5px;
    opacity: 0.4;
    font-family: Georgia, serif;
}
.testimonial-card-v2__text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}
.testimonial-card-v2__author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}
.testimonial-card-v2__role {
    font-size: 12px;
    color: var(--text-muted);
}
.testimonial-card-v2__image {
    border-radius: 12px;
    object-fit: cover;
    height: 180px;
    width: 100%;
}
.testimonial-card-v2__video {
    background: #000;
}
.testimonial-card-v2__video iframe,
.testimonial-card-v2__video video {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    margin-bottom: 10px;
    object-fit: cover;
    border: none;
}

/**
 * FAQ & Blog Section
 */
.faq-blog-section {
    padding: 80px 0;
    background: var(--light-bg);
}
.faq-blog-section .accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    border-radius: 10px !important;
    padding: 16px 20px;
}
.faq-blog-section .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
    box-shadow: none;
}
.faq-blog-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.faq-blog-section .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(43, 83, 41, 0.15);
}
.blog-card__image {
    height: 160px;
    object-fit: cover;
}

/**
 * Contact Section
 */
.contact-section {
    padding: 80px 0;
    background: #fff;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: 100%;
}
.contact-info-card__icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.contact-info-card h6 {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 14px;
}
.contact-get-in-touch {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.map-iframe {
    border: none;
    border-radius: 12px;
}

/**
 * Footer
 */
.footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.65);
    padding: 60px 0 20px;
}
.footer h5, .footer-title {
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}
.footer a:hover {
    color: #fff;
    padding-left: 3px;
}
.footer .footer-brand-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 300px;
}
.footer .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s;
    font-size: 16px;
}
.footer .social-icons a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    padding-left: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
}
.footer-credit {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}
.footer-credit a {
    color: var(--secondary-color);
    font-weight: 600;
}

/**
 * Floating WhatsApp Button
 */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/**
 * Scroll animations
 */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/**
 * Responsive
 */
@media (max-width: 991.98px) {
    .hero-section__title { font-size: 2.5rem; }
    .hero-section__stats { gap: 20px; }
    .hero-section__stat-number { font-size: 1.5rem; }
    .hero-section { padding: 40px 0 80px; }
    .appointment-cta-panel { padding: 35px 25px; }
    .appointment-form-panel { padding: 35px 25px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid.gallery-grid--bottom { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .hero-section__title { font-size: 2rem; }
    .hero-section__stats { flex-wrap: wrap; gap: 15px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid.gallery-grid--bottom { grid-template-columns: 1fr 1fr; }
    .gallery-card__image { height: 150px; }
    .about-doctor__experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    .about-doctor__experience-number { font-size: 22px; }
    .about-doctor__experience-text { font-size: 9px; }
    .trust-section { padding: 50px 0; }
    .treatments-section,
    .about-doctor-section,
    .gallery-section,
    .appointment-section-v2,
    .testimonials-section,
    .faq-blog-section,
    .contact-section { padding: 50px 0; }
}

@media (max-width: 575.98px) {
    .hero-section__title { font-size: 1.8rem; }
    .hero-section__stats { gap: 12px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid.gallery-grid--bottom { grid-template-columns: 1fr; }
}

/* ============================
   Form controls override
   ============================ */
.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(106, 159, 44, 0.15);
}

.btn-check:checked + .btn-outline-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
 / *   R e p l a c e d   I n l i n e   S t y l e s   * / 
 . h e r o - c o n t a i n e r   {   z - i n d e x :   2 ;   } 
 . h e r o - r o w   {   m i n - h e i g h t :   7 5 v h ;   } 
 . h e r o - w a v e   {   h e i g h t :   8 0 p x ;   } 
 
 . d e l a y - 1   {   t r a n s i t i o n - d e l a y :   0 . 1 s ;   } 
 . d e l a y - 2   {   t r a n s i t i o n - d e l a y :   0 . 2 s ;   } 
 . d e l a y - 3   {   t r a n s i t i o n - d e l a y :   0 . 3 s ;   } 
 . d e l a y - 4   {   t r a n s i t i o n - d e l a y :   0 . 4 s ;   } 
 . d e l a y - 5   {   t r a n s i t i o n - d e l a y :   0 . 5 s ;   } 
 . d e l a y - 6   {   t r a n s i t i o n - d e l a y :   0 . 6 s ;   } 
 
 . a b o u t - d o c t o r _ _ d e g r e e   {   f o n t - f a m i l y :   v a r ( - - f o n t - b o d y ) ;   f o n t - w e i g h t :   6 0 0 ;   f o n t - s i z e :   1 6 p x ;   } 
 . a b o u t - d o c t o r _ _ d e s c r i p t i o n   {   l i n e - h e i g h t :   1 . 8 ;   } 
 
 . f a l l b a c k - i c o n   {   f o n t - s i z e :   3 r e m ;   o p a c i t y :   0 . 2 ;   } 
 . t e s t i m o n i a l - i m a g e - w r a p p e r   {   c u r s o r :   z o o m - i n ;   } 
 . l i g h t b o x - i c o n - o v e r l a y   {   w i d t h :   4 8 p x ;   h e i g h t :   4 8 p x ;   o p a c i t y :   0 ;   t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;   } 
 . t e s t i m o n i a l - i m a g e - w r a p p e r : h o v e r   . l i g h t b o x - i c o n - o v e r l a y   {   o p a c i t y :   1   ! i m p o r t a n t ;   t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % )   s c a l e ( 1 . 1 ) ;   } 
 . t e s t i m o n i a l - s t a r   {   f o n t - s i z e :   0 . 7 r e m ;   } 
 
 . a p p o i n t m e n t - c t a - t a g l i n e   {   l e t t e r - s p a c i n g :   2 p x ;   c o l o r :   v a r ( - - s e c o n d a r y - c o l o r ) ;   } 
 . a p p o i n t m e n t - f e a t u r e - i c o n   {   w i d t h :   5 0 p x ;   h e i g h t :   5 0 p x ;   } 
 . a p p o i n t m e n t - f o r m - p a n e l   . p o s i t i o n - r e l a t i v e   i n p u t   {   b a c k g r o u n d - c o l o r :   # f f f ;   } 
 . a p p o i n t m e n t - f o r m - p a n e l   . p o s i t i o n - r e l a t i v e   i   {   p o i n t e r - e v e n t s :   n o n e ;   } 
 
 . b l o g - c a r d _ _ t i t l e   {   f o n t - s i z e :   1 5 p x ;   } 
 . c o n t a c t - m a p - i f r a m e   {   m i n - h e i g h t :   4 0 0 p x ;   b o r d e r :   0 ;   } 
 . s o c i a l - i c o n - b t n   {   w i d t h :   3 2 p x ;   h e i g h t :   3 2 p x ;   d i s p l a y :   i n l i n e - f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   } 
 
 . m o d a l - c l o s e - c u s t o m   {   f i l t e r :   i n v e r t ( 1 )   g r a y s c a l e ( 1 0 0 % )   b r i g h t n e s s ( 2 0 0 % ) ;   } 
 . t e s t i m o n i a l - m o d a l - h e a d e r   {   p o s i t i o n :   a b s o l u t e ;   r i g h t :   0 ;   t o p :   - 4 0 p x ;   z - i n d e x :   1 0 ;   } 
  
 