/* Antibromic Styles */
:root {
    --bg-color: #0A0E13;
    --primary-color: #1C2A33;
    --accent-color: #00C2FF;
    --secondary-color: #FF6E40;
    --text-color: #E4EAF1;
    --soft-accent: #2F3E4D;
    --contrast-color: #FFD166;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--soft-accent) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    --shadow-soft: 0 4px 20px rgba(0, 194, 255, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 194, 255, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(28, 42, 51, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 194, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(28, 42, 51, 0.98);
    box-shadow: var(--shadow-soft);
}

/* Logo Styles */
.logo {
    max-width: 200px;
    max-height: 60px;
    width: auto;
    height: auto;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    color: var(--secondary-color) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
    z-index: -1;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--bg-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    left: 0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.navbar-nav .nav-link:hover::after {
    transform: translateX(100%);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28228, 234, 241, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    background: var(--primary-color);
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.dropdown-item {
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: rgba(0, 194, 255, 0.1);
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 194, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 110, 64, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    color: rgba(228, 234, 241, 0.9);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img {
    transition: var(--transition-smooth);
}

.hero-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline-accent {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline-accent:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--text-color);
    color: var(--text-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

/* Sections */
section {
    position: relative;
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(228, 234, 241, 0.8);
    text-align: center;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    background: var(--primary-color);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 194, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 194, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(255, 110, 64, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(228, 234, 241, 0.8);
    line-height: 1.6;
}

/* Target Groups Section */
.target-groups {
    background: var(--bg-color);
}

.target-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 194, 255, 0.1);
    height: 100%;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.target-card img {
    transition: var(--transition-smooth);
}

.target-card:hover img {
    transform: scale(1.05);
}

.target-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.target-card p {
    color: rgba(228, 234, 241, 0.8);
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    background: var(--primary-color);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 110, 64, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-card {
    background: var(--soft-accent);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 194, 255, 0.1);
    position: relative;
    height: 100%;
}

.pricing-card.featured {
    background: var(--gradient-primary);
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--accent-color);
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price .period {
    font-size: 1rem;
    color: rgba(228, 234, 241, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: rgba(228, 234, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pricing-features li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    background: var(--gradient-accent);
    color: white;
    text-align: center;
    position: relative;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--primary-color);
    border-top: 1px solid rgba(0, 194, 255, 0.1);
}

.footer-brand h5 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(228, 234, 241, 0.8);
    line-height: 1.6;
}

.footer h6 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(228, 234, 241, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(228, 234, 241, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 20px;
}

/* License and Disclaimer Styles */
.license-disclaimer {
    background: var(--soft-accent);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.license-info h6,
.disclaimer-info h6 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-info p,
.disclaimer-info p {
    color: rgba(228, 234, 241, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.license-info p strong {
    color: var(--text-color);
    font-weight: 600;
}

.license-info i,
.disclaimer-info i {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Form Styles */
.form-control {
    background: var(--soft-accent);
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: 10px;
    color: var(--text-color);
    padding: 0.75rem 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    background: var(--soft-accent);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 194, 255, 0.25);
    color: var(--text-color);
}

.form-control::placeholder {
    color: rgba(228, 234, 241, 0.6);
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Content Pages Styles */
.content-page {
    padding-top: 120px;
    min-height: 100vh;
}

.content-header {
    background: linear-gradient(rgba(28, 42, 51, 0.8), rgba(47, 62, 77, 0.8)), url('../img/19.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.content-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.content-header p {
    font-size: 1.2rem;
    color: rgba(228, 234, 241, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    background: var(--primary-color);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 15px;
}

.content-section h2 {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    color: rgba(228, 234, 241, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul {
    color: rgba(228, 234, 241, 0.9);
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 255, 0.1);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(228, 234, 241, 0.8);
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
    align-self: center;
}

/* Contact Form */
.contact-form {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 194, 255, 0.1);
}

.contact-info-card {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 255, 0.1);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-info-item div h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-info-item div p {
    color: rgba(228, 234, 241, 0.8);
    margin: 0;
}

/* Team Member Cards */
.team-member {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 255, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-color);
}

.team-member h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: rgba(228, 234, 241, 0.8);
    line-height: 1.6;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.4);
}

.timeline-content {
    background: var(--soft-accent);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 255, 0.1);
    width: 45%;
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    margin-left: 2rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -20px;
    border-right-color: var(--soft-accent);
}

.timeline-item:nth-child(even) .timeline-content::before {
    
    right: -20px;
    border-left-color: var(--soft-accent);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.timeline-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.timeline-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(255, 110, 64, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.timeline-content:hover .timeline-image::before {
    opacity: 1;
}

.timeline-content:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-content h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.timeline-content p {
    color: rgba(228, 234, 241, 0.9);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Timeline Animation Classes */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-left.animated,
.slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .content-header h1 {
        font-size: 2.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* Logo responsive */
    .logo {
        max-width: 150px;
        max-height: 45px;
    }
    
    /* Timeline Responsive */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .timeline-content::before {
        left: -20px !important;
        border-right-color: var(--soft-accent) !important;
        border-left-color: transparent !important;
    }
    
    .timeline-image img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .content-header {
        padding: 2rem 0;
    }
    
    .content-header h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Logo responsive for small screens */
    .logo {
        max-width: 120px;
        max-height: 36px;
    }
    
    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        margin-left: 40px;
    }
    
    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-image img {
        height: 120px;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Utility Classes */
.text-accent {
    color: var(--accent-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.border-accent {
    border-color: var(--accent-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-soft) !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Специализированные услуги */
.service-card.text-center {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.text-center p {
    flex-grow: 1;
}

.service-card.text-center .btn {
    margin-top: auto;
    align-self: center;
}

/* Alert Styling */
.alert {
    border-radius: 15px;
    border: none;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(0, 194, 255, 0.05) 100%);
    border: 1px solid rgba(0, 194, 255, 0.3);
    color: var(--accent-color);
}

.alert-info {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(0, 194, 255, 0.05) 100%);
    border: 1px solid rgba(0, 194, 255, 0.3);
    color: var(--accent-color);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.1) 0%, rgba(255, 209, 102, 0.05) 100%);
    border: 1px solid rgba(255, 209, 102, 0.3);
    color: var(--contrast-color);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(255, 110, 64, 0.1) 0%, rgba(255, 110, 64, 0.05) 100%);
    border: 1px solid rgba(255, 110, 64, 0.3);
    color: var(--secondary-color);
}

.alert i {
    font-size: 1.1rem;
}

/* Form validation styles */
.is-valid {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 194, 255, 0.25) !important;
}

.is-invalid {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 110, 64, 0.25) !important;
}

.invalid-feedback {
    display: block;
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    display: block;
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}