/* ===================================
   Естетична Клиника - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --primary: #C4704B;
    --primary-dark: #A85D3B;
    --primary-light: #D4896A;
    --cream: #F5F0E8;
    --cream-dark: #E8DFD3;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50px;

    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn-outline:hover {
    background-color: var(--text);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}

.header-phone i {
    font-size: 1rem;
}

/* Hide mobile extras on desktop */
.mobile-menu-extras {
    display: none;
}

/* Mobile Menu Toggle - Modern Hamburger */
.menu-toggle {
    display: none;
    width: 32px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hamburger to X animation */
.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: var(--white);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: var(--white);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 120px 0;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.hero-feature i {
    color: var(--white);
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-us {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    border-color: var(--primary);
    color: var(--primary);
}

.feature-card h4 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 6rem 0;
    background-color: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

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

.service-card:hover img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.service-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-style: italic;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.about-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text);
}

.about-content .emoji {
    font-size: 1.5rem;
    vertical-align: middle;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 6rem 0;
    background-color: var(--cream);
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-stars {
    color: #F5A623;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--black);
}

.testimonial-service {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 6rem 0;
    background-color: var(--primary);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--primary-light);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Full-screen Mobile Menu Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 0;
        z-index: 999;
        clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem);
        transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .nav-menu.active {
        clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem);
    }

    .nav-menu a {
        font-size: 1.75rem;
        font-family: var(--font-heading);
        color: var(--white);
        padding: 0.75rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation delays */
    .nav-menu.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active a:nth-child(5) { transition-delay: 0.3s; }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        transform: scale(1.05);
    }

    .nav-menu a.active {
        position: relative;
    }

    .nav-menu a.active::before {
        content: '';
        position: absolute;
        left: -1.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background-color: var(--white);
        border-radius: 50%;
    }

    /* Mobile menu extras */
    .mobile-menu-extras {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 3rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease 0.35s;
    }

    .nav-menu.active .mobile-menu-extras {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-phone {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--white);
        font-size: 1.125rem;
        font-weight: 500;
    }

    .mobile-menu-phone i {
        font-size: 1rem;
    }

    .mobile-menu-social {
        display: flex;
        gap: 1rem;
    }

    .mobile-menu-social a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255,255,255,0.15);
        border-radius: 50%;
        font-size: 1rem;
        color: var(--white);
        padding: 0;
        opacity: 1;
        transform: none;
    }

    .mobile-menu-social a:hover {
        background-color: rgba(255,255,255,0.25);
        transform: scale(1.1);
    }

    .menu-toggle {
        display: block;
    }

    .header-phone {
        display: none;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.3;
    }

    .hero-bg::before {
        background: var(--primary);
        opacity: 0.85;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 40px 0;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   Page Hero (Inner Pages)
   =================================== */
.page-hero {
    padding: 160px 0 80px;
    background-color: var(--primary);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    background-color: var(--cream);
    font-size: 0.875rem;
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs span {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.breadcrumbs .current {
    color: var(--text);
}

/* ===================================
   Services Page
   =================================== */
.services-page {
    padding: 4rem 0;
    background-color: var(--white);
}

.services-page .service-card {
    text-decoration: none;
    display: block;
}

.service-card-content {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.service-card-content h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-card-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.service-card-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link:hover {
    gap: 0.75rem;
}

/* ===================================
   About Page
   =================================== */
.about-page {
    padding: 4rem 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background-color: var(--cream);
}

.mission-card h3,
.vision-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.team-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.team-card-content {
    padding: 1.5rem;
}

.team-card h4 {
    margin-bottom: 0.25rem;
}

.team-card .role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Certifications */
.certifications {
    padding: 4rem 0;
    text-align: center;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cert-item i {
    font-size: 3rem;
    color: var(--primary);
}

.cert-item span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===================================
   Testimonials Page
   =================================== */
.testimonials-page {
    padding: 4rem 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card-full {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.testimonial-card-full .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.testimonial-card-full .testimonial-author {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ===================================
   Contact Page
   =================================== */
.contact-page {
    padding: 4rem 0;
}

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

.contact-form {
    background-color: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 112, 75, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--cream);
    border-radius: var(--radius-md);
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.contact-info-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Map */
.contact-map {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--cream);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   Service Detail Page
   =================================== */
.service-detail {
    padding: 4rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-main h2 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.service-main p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-main ul {
    margin-bottom: 2rem;
}

.service-main ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.service-main ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-price-card {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-price-card .price-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-price-card .price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-heading);
}

.service-price-card .price span {
    font-size: 1rem;
    color: var(--text-light);
}

.service-info-box {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-info-box h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-info-box h4 i {
    color: var(--primary);
}

.service-info-box ul li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--cream-dark);
}

.service-info-box ul li:last-child {
    border-bottom: none;
}

/* ===================================
   Page Responsive
   =================================== */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
