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

html {
    scroll-behavior: smooth;
    font-family: 'Roboto', system-ui, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #ff6b35 0%, #32cd32 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    padding: 12px 25px;
    border: 2px solid #2c3e50;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-30px); }
    70% { transform: translateY(-15px); }
    90% { transform: translateY(-4px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    transition: color 0.3s ease;
}

.header.scrolled .logo {
    color: #1e293b;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #ff6b35;
}

.header.scrolled .nav-link {
    color: #475569;
}

.btn-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a50 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header.scrolled .mobile-menu-btn {
    color: #475569;
}

.close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    margin-top: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 16px;
}

.mobile-nav-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: #ff6b35;
}

.mobile-btn {
    text-align: center;
    margin-top: 16px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%, rgba(239, 68, 68, 0.05) 100%);
}

.hero-blur-1 {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-blur-2 {
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite 2s;
}

.hero-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(12deg);
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.05) 50%, transparent 100%);
}

.hero-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.element-1 {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 16px;
    height: 16px;
    background: #ff6b35;
    transform: rotate(45deg);
    animation: bounce 2s infinite 1s;
}

.element-2 {
    position: absolute;
    bottom: 128px;
    left: 128px;
    width: 24px;
    height: 24px;
    border: 2px solid #f87171;
    transform: rotate(45deg);
    animation: pulse 3s infinite 3s;
}

.element-3 {
    position: absolute;
    top: 33.333333%;
    right: 33.333333%;
    width: 32px;
    height: 32px;
    border: 2px solid #fb923c;
    border-radius: 50%;
    animation: spin 8s linear infinite;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    padding: 1px;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-inner {
    background: #0f172a;
    padding: 8px 24px;
    border-radius: 50px;
}

.badge-inner span {
    color: #fb923c;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    margin-bottom: 32px;
    line-height: 1.1;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #fb923c 0%, #f87171 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    animation: pulse 3s ease-in-out infinite;
}

.title-sub {
    display: block;
    color: #e2e8f0;
    font-size: clamp(1.5rem, 4vw, 4rem);
    font-weight: 300;
    margin-top: 16px;
}

.highlight {
    color: #fb923c;
    font-weight: 600;
}

.hero-description {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    margin-bottom: 48px;
    color: #cbd5e1;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.description-highlight {
    color: #fb923c;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

.btn-primary-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.25);
    transition: all 0.3s ease;
}

.btn-primary-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary-hero {
    color: white;
    border: 2px solid #fb923c;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: #fb923c;
    color: #0f172a;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.8s;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #fb923c;
}

.stat-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 1px;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    border-radius: 50px;
    margin-bottom: 24px;
}

.section-badge.dark .badge-inner {
    background: #1e293b;
}

.section-badge .badge-inner {
    background: white;
    padding: 8px 24px;
    border-radius: 50px;
}

.section-badge span {
    color: #ff6b35;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-badge.dark span {
    color: #fb923c;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
}

.section-title.white {
    color: white;
}

.section-description {
    font-size: 20px;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.section-description.white {
    color: #cbd5e1;
}

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

.service-card {
    position: relative;
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-bg {
    opacity: 1;
}

.service-blur {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-radius: 50%;
    filter: blur(32px);
    transform: translate(64px, -64px);
    transition: transform 0.5s ease;
}

.service-card:hover .service-blur {
    transform: translate(64px, -64px) scale(1.5);
}

.service-content {
    position: relative;
    z-index: 10;
}

.service-icon {
    margin-bottom: 24px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(3deg);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #ea580c;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-line {
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    transition: width 0.3s ease;
}

.service-card:hover .service-line {
    width: 48px;
}

/* About Section */
.about-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
}

.about-blur-1 {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 288px;
    height: 288px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-radius: 50%;
    filter: blur(60px);
}

.about-blur-2 {
    position: absolute;
    bottom: 80px;
    left: 80px;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 50%;
    filter: blur(60px);
}

.about-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.about-points {
    margin-bottom: 40px;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.point-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    border-radius: 50%;
    margin-top: 12px;
    flex-shrink: 0;
}

.about-point p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
}

.point-title {
    font-weight: 600;
    color: #1e293b;
}

.about-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-card-wrapper {
    position: relative;
}

.about-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    border-radius: 24px;
    transform: rotate(3deg);
}

.about-card {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(-1deg);
    transition: transform 0.5s ease;
}

.about-card:hover {
    transform: rotate(0deg);
}

.card-content {
    text-align: center;
}

.card-icon-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.card-icon {
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

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

.card-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #84cc16;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.card-description {
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.card-stat {
    padding: 16px;
}

.card-stat .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
}

.card-stat .stat-label {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    overflow: hidden;
}

.reviews-bg {
    position: absolute;
    inset: 0;
}

.reviews-blur-1 {
    position: absolute;
    top: 80px;
    left: 80px;
    width: 256px;
    height: 256px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.reviews-blur-2 {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite 2s;
}

.reviews-slider {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.slider-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    border-radius: 24px;
    filter: blur(32px);
    transform: scale(1.05);
}

.slider-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    padding: 40px 64px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.reviews-container {
    position: relative;
    overflow: hidden;
}

.review-item {
    display: none;
    text-align: center;
}

.review-item.active {
    display: block;
}

.review-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    gap: 4px;
}

.star {
    width: 32px;
    height: 32px;
    color: #fbbf24;
    fill: currentColor;
}

.review-text {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 96px;
    color: rgba(251, 146, 60, 0.3);
    font-family: serif;
    position: absolute;
    top: -16px;
    left: -16px;
}

.review-text::after {
    content: '"';
    font-size: 96px;
    color: rgba(251, 146, 60, 0.3);
    font-family: serif;
    position: absolute;
    bottom: -32px;
    right: -16px;
}

.review-author {
    text-align: center;
}

.author-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.author-name {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.author-position {
    color: #fb923c;
    font-weight: 500;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: -24px;
}

.review-dots {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    gap: 12px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    transform: scale(1.25);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Contacts Section */
.contacts-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, white 0%, #f8fafc 100%);
    overflow: hidden;
}

.contacts-bg {
    position: absolute;
    inset: 0;
}

.contacts-blur-1 {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 288px;
    height: 288px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: 50%;
    filter: blur(60px);
}

.contacts-blur-2 {
    position: absolute;
    bottom: 80px;
    left: 80px;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 50%;
    filter: blur(60px);
}

.contacts-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-link {
    font-size: 24px;
    font-weight: 600;
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ea580c;
}

.contact-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}

.schedule-card {
    position: relative;
}

.schedule-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    border-radius: 24px;
    transform: rotate(1deg);
}

.schedule-content {
    position: relative;
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(-1deg);
}

.schedule-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.schedule-items {
    margin-bottom: 24px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.schedule-day {
    font-weight: 500;
    color: #475569;
}

.schedule-time {
    color: #ea580c;
    font-weight: 700;
}

.schedule-note {
    padding: 16px;
    background: #fef3e2;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.schedule-note p {
    font-size: 14px;
    color: #c2410c;
}

.note-title {
    font-weight: 600;
}

.contact-form-wrapper {
    position: relative;
}

.form-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-radius: 24px;
    filter: blur(32px);
}

.contact-form {
    position: relative;
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-description {
    color: #64748b;
}

.form-fields {
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 12px;
}

.form-input {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-input:hover {
    border-color: #cbd5e1;
}

.form-textarea {
    resize: none;
    font-family: inherit;
}

.form-submit {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b35 0%, #ef4444 100%);
    color: white;
    padding: 20px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.submit-arrow {
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-arrow {
    transform: translateX(4px);
}

.form-privacy {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-top: 16px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-subtitle {
    color: #cbd5e1;
    margin-bottom: 24px;
}

.footer-legal {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-legal p {
    margin-bottom: 4px;
}

.footer-contacts {
    text-align: left;
}

.footer-contact {
    margin-bottom: 16px;
}

.footer-link {
    color: #fb923c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fdba74;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Styles */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .about-buttons {
        flex-direction: row;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-contacts {
        text-align: right;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .prev-btn {
        left: -48px;
    }
    
    .next-btn {
        right: -48px;
    }
}

@media (max-width: 767px) {
    .nav-desktop {
        display: none;
    }
    
    .btn-header {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-container {
        padding-top: 100px;
    }
    
    .slider-btn {
        display: none;
    }
    
    .slider-content {
        padding: 32px 24px;
    }
    
    .contact-cards {
        flex-direction: column;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card-wrapper {
        order: -1;
    }
}
