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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-top {
    font-size: 20px;
    font-weight: 800;
}

.logo-blue {
    color: var(--primary-color);
    font-weight: 800;
}

.logo-bottom {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.9;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-call:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-call svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 99;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-link {
    text-decoration: none;
    color: var(--text-dark);
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.mobile-menu-link:hover {
    background: var(--bg-light);
}

.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-order-btn {
    display: none;
    text-decoration: none;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.mobile-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.mobile-order-btn:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: var(--bg-light);
    padding: 80px 0;
}

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

.hero h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.price-highlight {
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
}

.hero-price {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-divider {
    width: 2px;
    height: 60px;
    background: var(--border-color);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.btn-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 20px 56px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: var(--shadow);
}

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

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

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.image-placeholder {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.service-card.highlight {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--border-color);
}

/* Accreditation Section */
.accreditation {
    padding: 80px 0;
    background: var(--bg-white);
}

.accreditation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.accreditation-text h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.accreditation-info {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    border-left: 4px solid var(--primary-color);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.info-item span {
    font-size: 16px;
    color: var(--text-light);
}

.accreditation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accreditation-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
}

.accreditation-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.accreditation-list span {
    color: var(--text-dark);
    font-weight: 500;
}

.certificate-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 3px solid var(--bg-white);
}

.certificate-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.certificate-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.click-hint {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 4px;
}

.certificate-placeholder {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px dashed var(--border-color);
    transition: border-color 0.3s;
}

.certificate-placeholder:hover {
    border-color: var(--primary-color);
}

.certificate-placeholder svg {
    margin-bottom: 20px;
}

.certificate-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.certificate-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 32px;
    position: relative;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.about-list strong {
    font-size: 20px;
    color: var(--text-dark);
}

.about-list span {
    color: var(--text-light);
}

.stats-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    padding: 20px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.reviews-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-review:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-review:active {
    transform: translateY(0);
}

.btn-review-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-review-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-review-secondary:active {
    transform: translateY(0);
}

.review-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.review-number {
    font-size: 13px;
    color: var(--text-light);
}

.review-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--primary-color);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-dark);
}

.faq-answer li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.form-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.form-left {
    padding: 40px 0;
}

.form-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-description {
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.form-phone-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.form-phone-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.form-phone-text a:hover {
    text-decoration: underline;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit-item svg {
    flex-shrink: 0;
}

.form-right {
    position: relative;
}

.form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.form-group label svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-light);
    transition: all 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-privacy {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 16px;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.form-privacy a:hover {
    color: var(--primary-dark);
}

.success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.success-message.active {
    display: flex;
}

.success-message svg {
    margin-bottom: 24px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.success-message p {
    font-size: 18px;
    color: var(--text-light);
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 40px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.9);
}

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

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-light);
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
}

/* Complaint Section */
.complaint {
    padding: 80px 0;
    background: var(--bg-light);
}

.complaint-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.complaint-header {
    text-align: center;
    margin-bottom: 40px;
}

.complaint-description {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-top: 16px;
}

.complaint-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.btn-complaint {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-complaint:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-complaint:active {
    transform: translateY(0);
}

.complaint-form .success-message {
    position: relative;
    margin-top: 20px;
}

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

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

.footer .logo {
    color: white;
    margin-bottom: 12px;
}

.footer .logo-text {
    color: white;
}

.footer .logo-blue {
    color: #60a5fa;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-right {
    text-align: right;
}

.footer-right p {
    margin-bottom: 8px;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Floating Call Button */
.floating-call-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: var(--secondary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(16, 185, 129, 0.7);
    }
}

/* Delivery Popup */
.delivery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.delivery-popup.active {
    display: flex;
    opacity: 1;
}

.delivery-popup-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    animation: popupSlideIn 0.3s ease forwards;
}

.delivery-popup.active .delivery-popup-content {
    transform: scale(1);
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.delivery-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: color 0.3s, transform 0.3s;
    border-radius: 50%;
}

.delivery-popup-close:hover {
    color: var(--text-dark);
    background: var(--bg-light);
    transform: rotate(90deg);
}

.delivery-popup-icon {
    display: none;
}

.delivery-popup-title {
    display: none;
}

.delivery-popup-title-mobile {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 12px;
    white-space: nowrap;
}

.delivery-popup-text {
    display: none;
}

.delivery-popup-text-mobile {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 24px;
}

.delivery-popup-text-mobile a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.delivery-popup-text-mobile a:hover {
    text-decoration: underline;
}

.phone-number {
    white-space: nowrap;
    display: inline-block;
}

.delivery-popup-features {
    display: none;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.delivery-feature svg {
    flex-shrink: 0;
}

.delivery-popup-form {
    margin-top: 8px;
}

.delivery-form-group {
    margin-bottom: 20px;
}

.delivery-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.delivery-form-group label svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.delivery-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.delivery-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.delivery-form-group input::placeholder {
    color: var(--text-light);
}

.delivery-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    font-family: inherit;
}

.delivery-popup-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.delivery-popup-btn:active {
    transform: translateY(0);
}

.delivery-form-privacy {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.delivery-form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.delivery-form-privacy a:hover {
    color: var(--primary-dark);
}

.delivery-popup-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.delivery-popup-success.active {
    display: block;
}

.delivery-popup-success svg {
    margin-bottom: 20px;
}

.delivery-popup-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.delivery-popup-success p {
    font-size: 16px;
    color: var(--text-light);
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 80px 0;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.privacy-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.privacy-section p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.privacy-back {
    margin-top: 50px;
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.privacy-back .btn-primary {
    display: inline-flex;
}

/* Review Form Section */
.review-form-section {
    padding: 80px 0;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.review-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.review-form-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-form-group input,
.review-form-group select,
.review-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.review-form-group input:focus,
.review-form-group select:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    cursor: pointer;
}

.btn-review-submit {
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    font-family: inherit;
}

.btn-review-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-review-submit:active {
    transform: translateY(0);
}

.review-success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.review-success-message.active {
    display: block;
}

.review-success-message svg {
    margin-bottom: 20px;
}

.review-success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.review-success-message p {
    font-size: 16px;
    color: var(--text-light);
}

/* All Reviews Page */
.all-reviews-section {
    padding: 80px 0;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.all-reviews-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.all-reviews-stats {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 60px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.all-reviews-rating {
    text-align: center;
}

.all-reviews-rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.all-reviews-rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.all-reviews-rating-label {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.all-reviews-rating-count {
    font-size: 14px;
    color: var(--text-light);
}

.all-reviews-distribution {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rating-dist-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-dist-stars {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 20px;
}

.rating-dist-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.rating-dist-bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s;
}

.rating-dist-count {
    font-size: 14px;
    color: var(--text-light);
    min-width: 100px;
    text-align: right;
}

.all-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.hidden-review {
    display: none;
}

.all-reviews-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-show-more {
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    font-family: inherit;
}

.btn-show-more:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-show-more:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-header-actions {
        display: flex;
    }

    .mobile-order-btn {
        display: block;
    }

    .nav .btn-call {
        display: none;
    }

    .floating-call-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 42px;
        font-weight: 800;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

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

    .accreditation-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 32px;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-price {
        flex-direction: column;
        gap: 16px;
    }

    .price-divider {
        width: 100%;
        height: 2px;
    }

    .price-value {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .services,
    .about,
    .reviews,
    .faq,
    .contact-form,
    .complaint {
        padding: 40px 0;
    }

    .complaint-form {
        padding: 28px 20px;
    }

    .complaint-description {
        font-size: 16px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .review-card {
        padding: 20px;
    }

    .reviews-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-review,
    .btn-review-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }

    .rating-number {
        font-size: 36px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer {
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-left {
        padding: 0;
    }

    .form-title {
        font-size: 32px;
    }

    .form-description {
        font-size: 16px;
    }

    .form-phone-text {
        font-size: 15px;
    }

    .form {
        padding: 28px 20px;
    }

    .benefit-item {
        font-size: 15px;
    }

    .service-card,
    .contact-card {
        padding: 24px;
    }

    .hero-img {
        max-width: 300px;
    }

    .certificate-img {
        max-width: 100%;
    }

    .image-placeholder svg {
        width: 150px;
        height: 150px;
    }

    .delivery-popup-content {
        padding: 32px 20px;
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .delivery-popup-title {
        display: none;
    }

    .delivery-popup-title-mobile {
        display: block;
        font-size: 32px;
        font-weight: 700;
        color: var(--text-dark);
        text-align: center;
        margin-bottom: 12px;
        white-space: nowrap;
    }

    .delivery-popup-text {
        display: none;
    }

    .delivery-popup-text-mobile {
        display: block;
        font-size: 16px;
        color: var(--text-light);
        text-align: center;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .delivery-popup-icon {
        display: none;
    }

    .delivery-popup-features {
        display: none;
    }

    .delivery-feature {
        font-size: 14px;
    }

    .delivery-form-group {
        margin-bottom: 16px;
    }

    .delivery-form-group label {
        font-size: 13px;
    }

    .delivery-form-group input {
        padding: 10px 14px;
        font-size: 14px;
    }

    .delivery-popup-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .delivery-popup-success h3 {
        font-size: 20px;
    }

    .delivery-popup-success p {
        font-size: 14px;
    }

    .privacy-content {
        padding: 40px 24px;
    }

    .privacy-content h1 {
        font-size: 28px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-section p {
        font-size: 15px;
    }

    .review-form-wrapper {
        padding: 40px 24px;
    }

    .review-form-title {
        font-size: 28px;
    }

    .review-form-group {
        gap: 8px;
    }

    .review-form-group input,
    .review-form-group select,
    .review-form-group textarea {
        padding: 10px 14px;
        font-size: 14px;
    }

    .btn-review-submit {
        padding: 14px 24px;
        font-size: 15px;
    }

    .all-reviews-title {
        font-size: 32px;
    }

    .all-reviews-stats {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }

    .all-reviews-rating-number {
        font-size: 36px;
    }

    .all-reviews-actions {
        flex-direction: column;
    }

    .btn-show-more,
    .btn-review {
        width: 100%;
    }
}

