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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}
a {
      color: inherit;
    text-decoration: none;
}
.info-bar {
    padding-top: 5px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-bar a {
    color: #f97316;
    margin-left: 15px;
    text-decoration: none;
}
.phones-contaner{
        display: flex;
    align-items: center;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    margin-left: auto;
}


@media (max-width: 768px) {
    .info-bar {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 0.8rem;   
    }
}

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

.text-orange {
    color: #f97316;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 50px;
    height: 50px;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f97316;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.btn-primary {
    background-color: #f97316;
    color: #000000;
}

.btn-primary:hover {
    background-color: #ea580c;
}

.btn-secondary {
    border: 2px solid #f97316;
    color: #f97316;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: #f97316;
    color: #000000;
}

.btn-dark {
    background-color: #000000;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #18181b;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-large i {
    width: 28px;
    height: 28px;
}

.btn-text {
    display: none;
}

@media (min-width: 640px) {
    .btn-text {
        display: inline;
    }
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.1), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.2);
    border: 1px solid #f97316;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    color: #fb923c;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}



.hero-image {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.2), transparent);
    border-radius: 1rem;
    filter: blur(60px);
}

.rounded-image {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-image .rounded-image {
    aspect-ratio: 1 / 1;
}

.pricing-image .rounded-image {
    aspect-ratio: 16 / 9;
}

/* Features */
.features {
    padding: 4rem 0;
    background-color: rgba(24, 24, 27, 0.5);
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: linear-gradient(to bottom right, #27272a, #18181b);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #f97316;
    transform: translateY(-4px);
}

.feature-icon {
    background-color: rgba(249, 115, 22, 0.2);
    width: 64px;
    height: 64px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    width: 32px;
    height: 32px;
    color: #f97316;
    stroke-width: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-description {
    color: #9ca3af;
}

/* Services */
.services {
    padding: 4rem 0;
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #18181b;
    border: 1px solid #27272a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #f97316;
    transform: scale(1.05);
}

.service-icon {
    width: 24px;
    height: 24px;
    color: #f97316;
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke-width: 2;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-description {
    color: #9ca3af;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
    background-color: rgba(24, 24, 27, 0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pricing-list {
    margin-bottom: 2rem;
}

.pricing-item {
    display: flex;
   
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-icon {
    width: 24px;
    height: 24px;
    color: #f97316;
    flex-shrink: 0;
    stroke-width: 2;
}

.pricing-item p {
    font-size: 1.125rem;
}

.pricing-note {
    color: #9ca3af;
    font-size: 1.125rem;
}

/* Contact */
.contact {
    padding: 4rem 0;
}

.contact-card {
    background: linear-gradient(to bottom right, #f97316, #ea580c);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-description {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

.contact-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #000000;
}

.contact-location i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.contact-location span {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Stats */
.album,
.stats {
    padding: 4rem 0;
    background-color: rgba(24, 24, 27, 0.5);
}
.album-grid,
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.album-grid {
     grid-template-columns: repeat(3, 0.4fr);
         justify-content: center;
}
.album-grid > img {
    margin: auto;
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .album-grid {
     grid-template-columns: repeat(2, 0.4fr);
    }
    .album-grid > img{
        width: 150px;
    height: 150px;
    }
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    background-color: #f97316;
    color: #000000;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 9999px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #9ca3af;
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-title {
    font-weight: bold;
    color: #f97316;
}

.footer-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
}

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

@media (min-width: 768px) {
    .footer-info {
        text-align: right;
    }
}

.footer-copyright {
    color: #9ca3af;
}

.footer-description {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

.btn-telegram {
  background-color: #229ED9;
  color: #fff;
  border: 1px solid #229ED9;
}

.btn-telegram:hover {
  background-color: #1b8cc3;
  border-color: #1b8cc3;
}

.btn-viber {
  background-color: #7360F2;
  color: #fff;
  border: 1px solid #7360F2;
}

.btn-viber:hover {
  background-color: #6753e6;
  border-color: #6753e6;
}