/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   HEADER
   ============================================ */

.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
}

.logo i {
    font-size: 32px;
    color: #FFD700;
}

.nav ul {
    display: flex;
    gap: 25px;
}

.nav a {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

.header-phone i {
    color: #FFD700;
}

.header-phone a:hover {
    color: #FFD700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-feature i {
    font-size: 24px;
    color: #FFD700;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.hero-icon {
    font-size: 280px;
    opacity: 0.3;
    color: #ffffff;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #718096;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   URGENT SECTION
   ============================================ */

.urgent-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #2d3748;
}

.urgent-section h2 {
    color: #1a202c;
    text-align: center;
    margin-bottom: 50px;
    font-size: 38px;
}

.urgent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.urgent-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.urgent-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.urgent-card i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

.urgent-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 700;
}

.urgent-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.service-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 5px solid #667eea;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: #ffffff;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 700;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    color: #2d3748;
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 18px;
}

/* ============================================
   SEDATION TYPES SECTION
   ============================================ */

.sedation-types {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.sedation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.sedation-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid #e2e8f0;
}

.sedation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.sedation-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 100%);
}

.sedation-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.sedation-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sedation-card h3 i {
    color: #667eea;
}

.sedation-desc {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.sedation-features h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2d3748;
}

.sedation-features ul {
    list-style: none;
    margin-bottom: 25px;
}

.sedation-features li {
    padding: 10px 0;
    color: #2d3748;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.sedation-features li i {
    color: #48bb78;
    margin-top: 3px;
    flex-shrink: 0;
}

.sedation-duration {
    background: #f7fafc;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.sedation-comparison {
    margin-top: 60px;
}

.sedation-comparison h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 35px;
    color: #1a202c;
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
}

.comparison-table tbody tr:hover {
    background-color: #f7fafc;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

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

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
}

.about-text p {
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #4a5568;
    font-weight: 600;
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-box i {
    font-size: 42px;
    color: #667eea;
    margin-bottom: 15px;
    display: block;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a202c;
}

.feature-box p {
    color: #4a5568;
    line-height: 1.6;
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */

.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border-left: 5px solid #667eea;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.advantage-number {
    position: absolute;
    top: -20px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 700;
}

.advantage-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 1;
}

.process-icon i {
    font-size: 32px;
    color: #ffffff;
}

.process-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
}

.process-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
}

.process-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* ============================================
   PRICES SECTION
   ============================================ */

.prices-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);
}

.price-categories {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.price-category {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.price-category h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
}

.price-category h3 i {
    color: #667eea;
}

.price-table {
    display: grid;
    gap: 15px;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-row:last-child {
    border-bottom: none;
}

.price-name {
    color: #2d3748;
    font-weight: 500;
}

.price-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #cbd5e0;
    min-width: 20px;
}

.price-value {
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
}

.price-examples {
    margin-top: 60px;
}

.price-examples h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a202c;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.example-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #667eea;
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
}

.example-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a202c;
    text-align: center;
}

.example-card ul {
    margin-bottom: 25px;
}

.example-card li {
    padding: 10px 0;
    color: #4a5568;
    position: relative;
    padding-left: 25px;
}

.example-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 24px;
}

.example-price {
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.price-note {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #f5576c;
}

.price-note p {
    color: #2d3748;
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

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

.faq-item {
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.faq-question h3 {
    font-size: 19px;
    color: #1a202c;
    margin: 0;
    font-weight: 600;
}

.faq-question:hover h3 {
    color: #ffffff;
}

.faq-question i {
    font-size: 20px;
    color: #667eea;
    transition: all 0.3s ease;
}

.faq-question:hover i {
    color: #ffffff;
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 25px 30px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar i {
    font-size: 28px;
    color: #ffffff;
}

.review-info h4 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 5px;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: #fbbf24;
    font-size: 16px;
}

.review-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    color: #a0aec0;
    font-size: 14px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.cta-benefit i {
    font-size: 28px;
    color: #FFD700;
}

/* ============================================
   CONTACTS SECTION
   ============================================ */

.contacts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contacts-info h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 32px;
    color: #667eea;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 5px;
}

.contact-item p {
    color: #4a5568;
    margin: 0;
}

.contact-item a {
    color: #667eea;
    font-weight: 600;
}

.contact-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.contacts-map {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    color: #667eea;
}

.map-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-section i {
    color: #667eea;
    margin-right: 8px;
}

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

.footer-bottom p {
    color: #cbd5e0;
    margin-bottom: 10px;
}

.footer-legal a {
    color: #cbd5e0;
    margin: 0 10px;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #f5576c;
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a202c;
}

.modal-content > p {
    color: #718096;
    margin-bottom: 30px;
}

/* ============================================
   FORM STYLES
   ============================================ */

.appointment-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-note {
    font-size: 13px;
    color: #718096;
    text-align: center;
    margin-top: 10px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-icon {
        font-size: 180px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .services-grid,
    .sedation-grid,
    .urgent-grid,
    .advantages-grid,
    .reviews-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-icon i {
        font-size: 24px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .header-phone {
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .price-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .price-dots {
        display: none;
    }
    
    .price-value {
        text-align: left;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn:active {
    animation: pulse 0.3s ease;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}