/* Benefits Section - Modernized */
.benefits-section {
    padding: 5rem 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(0, 179, 179, 0.05), transparent);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 4rem 3rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 77, 77, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 60px rgba(0, 77, 77, 0.1);
    border-color: var(--accent-gold);
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-title-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title-center h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-top: 1rem;
    letter-spacing: -2px;
}

.tech-card-img {
    width: 100%;
    height: 180px;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.tech-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .tech-card-img img {
    transform: scale(1.1);
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding: 1.2rem 0;
}

.mobile-menu-toggle {
    display: none;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
}

.logo-accent {
    color: var(--accent-gold);
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.btn-premium {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.8rem 2rem !important;
    border-radius: 5px !important;
    box-shadow: 0 4px 15px rgba(0, 77, 77, 0.2);
    border: 1px solid transparent;
}

.btn-premium:hover {
    background: transparent;
    color: var(--primary) !important;
    border-color: var(--primary);
    box-shadow: none;
}

:root {
    --primary: #004d4d;
    --primary-light: #006666;
    --secondary: #00b3b3;
    --accent-gold: #d4af37;
    /* Warm Gold for a premium feel */
    --accent-orange: #ff9933;
    --bg-light: #fcfdfd;
    --bg-warm: #fdfaf4;
    /* Warmer background for sections */
    --text-dark: #0f1a1a;
    --text-muted: #4a5a5a;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 77, 77, 0.08);
    --shadow-premium: 0 20px 60px rgba(212, 175, 55, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: var(--primary);
    font-weight: 700;
}

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

/* Hero Section */
.hero {
    background: var(--bg-warm);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    max-width: 600px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-small {
    width: 100%;
    max-width: 420px;
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s ease;
}

.hero-image-small:hover {
    transform: translateY(-10px);
}

.hero h1 {
    font-size: 4.8rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -3px;
}

.hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.trust-badge {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    width: fit-content;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-badge .dot {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
}

.trust-badge span {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 77, 77, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 77, 77, 0.4);
}

/* Cards & Glassmorphism */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 77, 77, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 77, 77, 0.1);
}

.card h3 {
    margin: 1rem 0;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.chat-header {
    background: var(--secondary);
    color: var(--white);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    font-weight: 700;
}

.chat-body {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
}

.chat-input {
    padding: 1rem;
    display: flex;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 0.5rem;
    outline: none;
}

.message {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    max-width: 80%;
}

.bot-msg {
    background: #f1f1f1;
    color: #000000;
    /* Explicitly black for contrast */
    align-self: flex-start;
}

.user-msg {
    background: var(--primary);
    color: var(--white);
    align-self: flex-end;
    margin-left: auto;
}

/* Pricing Section Modernized */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 77, 77, 0.12);
}

.price-card-img {
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.price-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.price-card:hover .price-card-img img {
    transform: scale(1.1);
}

.price-card-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 77, 77, 0.06);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.price-tag.highlight {
    background: var(--accent-gold);
    color: var(--white);
}

.price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.price-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: auto;
    margin-bottom: 1.5rem;
}

/* Callback Floating Button */
.callback-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 179, 179, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.callback-icon {
    width: 20px;
    height: 20px;
}

.callback-float:hover {
    transform: scale(1.05);
    background: var(--primary);
}

.benefit-card-img {
    width: 100%;
    height: 200px;
    margin-bottom: 2rem;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.benefit-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-card:hover .benefit-card-img img {
    transform: scale(1.1);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--bg-warm);
    aspect-ratio: 1/1;
}

/* Testimonials Slider Optimized */
.testimonials {
    background: var(--bg-warm);
    padding: 100px 0;
    overflow: hidden;
    /* Hide scrollbar for slider */
}

/* Testimonials Fade Slider Optimized */
.testimonials {
    background: var(--bg-warm);
    padding: 80px 0;
}

.test-container {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    perspective: 1000px;
}

.test-card {
    position: absolute;
    width: 380px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-premium);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    text-align: center;
}

/* Position 1: Left */
.test-card.pos-1 {
    transform: translateX(-100%) scale(0.85) rotateY(15deg);
    opacity: 0.5;
    z-index: 2;
    filter: blur(2px);
}

/* Position 2: Center (Featured) */
.test-card.pos-2 {
    transform: translateX(0) scale(1.05);
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 25px 50px rgba(0, 77, 77, 0.15);
}

/* Position 3: Right */
.test-card.pos-3 {
    transform: translateX(100%) scale(0.85) rotateY(-15deg);
    opacity: 0.5;
    z-index: 2;
    filter: blur(2px);
}

.test-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 6rem;
    color: var(--accent-gold);
    opacity: 0.15;
    font-family: serif;
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.test-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

/* FAQ Simple Accordion */
.faq-section {
    padding: 100px 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-content {
    color: var(--text-muted);
    display: none;
    padding-top: 0.5rem;
}

/* Booking Form Enhanced */
.booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 30px 30px 0 0;
    /* Rounded top only to sit flush on bottom if at edge, but user said bottom edge is stuck to background, so maybe just keep rounded? User said "marginea lui de jos e lipita" (bottom edge is stuck). Usually flush elements don't have bottom radius. Let's keep existing radius or adjust? User said it looks good stuck. I'll stick to alignment first. */
    border-radius: 30px;
    /* Keeping original radius as "arata bine" refers to position */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.booking-card label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    text-align: center !important;
    width: 100%;
}

.booking-card input,
.booking-card select {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: none;
    background: white;
    text-align: center !important;
    color: var(--primary);
    font-size: 1rem;
}

/* Time Slot Picker */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.slot-chip {
    padding: 0.6rem;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9f9f9;
    color: var(--primary);
    /* Explicitly set color for visibility */
    font-weight: 600;
}

.slot-chip:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.slot-chip.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slot-chip.busy {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f0f0f0;
    /* text-decoration: line-through removed as requested */
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text-muted);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-legal p {
    margin-bottom: 0.5rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1001;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Social Icons Redesign */
.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Branded hover states */
.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 20px rgba(214, 36, 159, 0.3);
}

.social-icon.facebook:hover {
    background: #1877F2;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.social-icon.linkedin:hover {
    background: #0077b5;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

@media (max-width: 992px) {
    .header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--primary);
        border-radius: 5px;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        transform-origin: center;
    }

    /* Animation for toggle active state */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        padding: 4rem 2rem;
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.15);
        transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--primary);
    }

    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Hero Optimization */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero p {
        margin: 0 auto 2.5rem;
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .trust-badge {
        margin: 3rem auto 0;
    }

    /* Forms Optimization */
    .booking-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .booking-card>div[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }

    input,
    select,
    textarea {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 12px;
    }

    /* Testimonials Optimization */
    .test-card {
        width: 90%;
        max-width: 320px;
        padding: 2rem 1.5rem;
    }

    .test-card.pos-1 {
        transform: translateX(-70%) scale(0.8);
    }

    .test-card.pos-3 {
        transform: translateX(70%) scale(0.8);
    }

    .clinic-hero-container {
        max-width: 100% !important;
    }

    /* FAQ Mobile Fix */
    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        max-width: 100% !important;
        padding: 0 1rem !important;
    }

    .faq-item h4 {
        font-size: 1rem;
        line-height: 1.4;
        padding: 1rem 0;
        gap: 1rem;
    }

    .faq-item h4 span {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 77, 77, 0.05);
        border-radius: 50%;
        font-size: 1.2rem;
    }
}

/* Section Dividers */
.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}

/* Modal for Callback */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    /* Matched to callback button */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 179, 179, 0.3);
    /* Matched shadow */
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
}

.chat-toggle svg {
    width: 30px;
    height: 30px;
}

.chat-widget.active {
    display: flex !important;
    animation: slideInChat 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInChat {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}