body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #434134;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Новый хедер */
.main-header {
    width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 0 8px 0;
}
.header-logo span {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 32px;
    font-style: italic;
    color: #393c40;
    letter-spacing: 2px;
}
.header-logo-img {
    height: 38px;
    vertical-align: middle;
    margin-right: 10px;
}
.header-nav {
    display: flex;
    gap: 36px;
    margin-left: 40px;
}
.header-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #222;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.header-nav a:hover {
    color: #0094ff;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-lang {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #222;
    margin-right: 8px;
}
.header-contact-btn {
    background: #0094ff;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 10px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}
.header-contact-btn:hover {
    background: #007ad6;
}
@media (max-width: 1100px) {
    .header-container {
        max-width: 100%;
        padding: 8px 16px;
    }
    .header-nav {
        gap: 18px;
        margin-left: 10px;
    }
}
@media (max-width: 700px) {
    .header-container {
        align-items: flex-start;
        gap: 12px;
    }
    .header-actions {
        align-self: flex-end;
    }

}
@media (max-width: 700px) {
  .header-actions{
    gap: 0;
  }
}

/* Hero Section */
.hero {
    position: relative;
    height: 736px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 1.2;
    color: white;
}


/* News Section */
.news-slider {
    padding: 100px 0;
}

.news-slider .container {
    position: relative;
    padding: 0 60px; /* Make space for arrows */
}

.news-slider .swiper {
    border-radius: 16px;
    overflow: hidden;
}

.news-slider .swiper-slide img {
    width: 100%;
    display: block;
}

.news-slider .swiper-button-prev,
.news-slider .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #434134; 
}

.news-slider .swiper-button-prev {
    left: 0;
}

.news-slider .swiper-button-next {
    right: 0;
}


/* About Us Section */
.about-us {
    padding: 100px 0;
}

.about-us-content {
    display: flex;
    gap: 80px;
}

.about-us-image {
    flex-shrink: 0;
}

.about-us-image img {
    width: 560px;
    height: 590px;
    object-fit: cover;
}

.about-us-text h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 64px;
    margin-top: 0;
    text-align: center;
    color: #434134;
    margin-bottom: 50px;
}

.about-us-text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    color: #000000;
}



/* Reviews Section */
.reviews {
    padding: 100px 0;
}

.reviews h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 64px;
    color: #434134;
    text-align: center;
    margin-bottom: 80px;
}

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

.review-item {
    height: 300px;
    background-color: #D9D9D9;
}

/* Category Page */
.category-section {
    padding: 40px 0;
}

.category-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: #434134;
    text-align: center;
    margin-bottom: 40px;
}

.products-grid-category {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
}

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 320px;
    font-family: 'Roboto', sans-serif;
}

.product-image-container {
    position: relative;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn svg {
    stroke: #000;
}

.product-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    font-size: 14px;
}
.product-info-overlay p {
    margin: 5px 0;
}

.product-details {
    padding: 15px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-article {
    font-size: 12px;
    color: #888;
}

.product-name {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0 15px 0;
    flex-grow: 1;
}

.product-prices {
    margin-bottom: 15px;
}

.product-prices p {
    margin: 5px 0;
}

.price-retail {
    font-size: 22px;
    font-weight: bold;
    color: #000;
}
.price-retail sup {
    font-size: 0.6em;
}

.price-wholesale {
    font-size: 14px;
    color: #555;
}
.price-wholesale sup {
    font-size: 0.7em;
}
.price-wholesale span {
    color: #888;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add-to-cart-btn:hover{
    background-color: #f0f0f0;
}
.add-to-cart-btn svg {
    stroke: #000;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 50px 0;
}

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

.logo-main-footer {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #DBFF01;
}

.logo-sub-footer {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #DBFF01;
    position: absolute;
    left: 20px;
    top: 37px;
}

.footer h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer p {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-us-content {
        flex-direction: column;
    }
    .logo-main{
        color: white;
    }
    .logo-sub{
        color: white;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .footer-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .footer > div {
        flex-basis: 50%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    .hero-text h1 {
        font-size: 48px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .features-items {
        flex-direction: column;
        gap: 40px;
    }
    .top-products h2, .reviews h2 {
        font-size: 48px;
    }
    .logo-sub-footer {
        position: static;
        display: block;
        text-align: center;
        margin-top: 4px;
    }
    .logo-main-footer {
        display: block;
        text-align: center;
    }
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    .footer-content > div {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    .logo {
        margin-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 36px;
    }
    .about-us-image img {
        width: 100%;
        height: auto;
    }
    .about-us-text p {
        font-size: 18px;
    }
    .top-products h2, .reviews h2 {
        font-size: 36px;
    }
    .footer > div {
        flex-basis: 100%;
    }
     .logo-main{
        color: white;
    }
    .logo-sub{
        color: white;
    }
}

/* Бургер-меню */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.burger-btn span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #222;
  border-radius: 2px;
  transition: 0.3s;
}
.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Мобильная навигация */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255);
  box-shadow: none;
  z-index: 2000;
  padding: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.mobile-nav a {
  color: #222;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  margin: 10px 0;
  display: block;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: #0094ff;
}
.mobile-nav.active {
  display: flex;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 44px;
  color: #222;
  cursor: pointer;
  z-index: 2100;
  padding: 0 8px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-nav-close:hover {
  color: #0094ff;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
}
@media (max-width: 700px) {
  .main-header {
    padding-bottom: 0;
  }
  .mobile-nav {
    top: 56px;
  }
}

.contacts-map-section {
  width: 100vw;
  max-width: 100%;
  height: 30vh; 
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.contacts-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Portfolio Grid Custom Styles */
.portfolio-grid-section {
    padding: 40px 0;
}
.portfolio-grid-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 64px;
    color: #434134;
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 25px;
    justify-items: center;
}

.portfolio-grid-item {
    background: #181818;
    border-radius: 10px;
    overflow: hidden;
    width: 400px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    transition: box-shadow 0.3s;
}

.portfolio-grid-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.portfolio-grid-item,
.portfolio-grid-item *,
.portfolio-grid-caption a,
.portfolio-grid-title a {
  text-decoration: none !important;
}

.portfolio-grid-img-wrap {
    width: 100%;
    aspect-ratio: 4/4;
    overflow: hidden;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.4s, transform 0.4s;
}

.portfolio-grid-item:hover .portfolio-grid-img {
    filter: grayscale(0.2) brightness(0.7);
    transform: scale(1.04);
}

.portfolio-grid-caption {
    padding: 18px 18px 10px 18px;
    color: #fff;
    text-align: left;
    min-height: 80px;
    background: linear-gradient(216deg, rgb(18 32 67) 0%, rgb(0 0 0 / 0%) 100%);
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.3);
}

.portfolio-grid-title {
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: 0.01em;
}

.portfolio-grid-desc {
    font-size: 0.98rem;
    color: #bdbdbd;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .portfolio-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
}

@media (max-width: 800px) {
    .portfolio-grid-container {
        grid-template-columns: 1fr;
        gap: 16px 0;
    }
}

@media (max-width: 767px) {

    .portfolio-grid-section {
        padding: 35px 0;
    }

    .gallery-portfolio {
        margin-top: 0;
        margin-bottom: 19px;
    }
}

.stats-section {
  background: #000000;
  color: #fff;
  padding: 60px 0 60px 0;
}
.stats-flex {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.stats-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 780px;
}
.stats-card {
    background: linear-gradient(37deg, rgb(0 73 255) 0%, rgb(255 255 255 / 60%) 100%);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.3);
    padding: 38px 24px 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.stats-value {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: #fff;
}
.stats-label {
  font-size: 1.1rem;
  color: #b6c2e2;
  font-weight: 400;
}
.stats-info {
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}
.stats-badge {
  display: inline-block;
  background: #1a1e2e;
  color: #b6c2e2;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 16px;
  padding: 6px 18px;
  margin-bottom: 12px;
}
.stats-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.18;
}



@media (max-width: 1100px) {
  .stats-flex {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .stats-info, .stats-cards {
    max-width: 100%;
  }

}
@media (max-width: 700px) {
  .stats-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .stats-section {
    padding: 36px 0 24px 0;
  }
}


.ticker {
    width: 100%;
    overflow: hidden;
    background: #000;
    position: relative;
    height: 40px;
    align-content: center;
  }
  .ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-move 18s linear infinite;
  }
  .ticker-text {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  @keyframes ticker-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .ticker-item {
    display: inline-block;
  }
  
.logo {
    position: relative;
}
  
/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.testimonials-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
}

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

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

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}



.testimonial-text {
  font-style: italic;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #0094ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.author-name {
  font-weight: 600;
  color: #333;
}


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

@media (max-width: 480px) {
  .testimonial-card {
    margin: 0 1rem;
  }
}

/* Breadcrumbs */
.breadcrumbs-section {
  padding: 20px 0;
  background-color: #f8f9fa;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
}

.breadcrumbs a {
  color: #0094ff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #007ad6;
}

.breadcrumb-separator {
  color: #999;
}

/* Contacts Section */
.contacts-section {
  padding: 80px 0;
  background-color: #fff;
}

.contacts-content {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: start;
}

/* Изменяем порядок колонок - форма справа */
.contacts-info {
  order: 1;
  width: 50%;
  flex-shrink: 0;
}

.contact-form-container {
  order: 2;
  width: 50%;
  flex-shrink: 0;
}

/* Left Column - Contact Info */
.contacts-info {
  max-width: 500px;
}

.contacts-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: #434134;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.contacts-description {
  margin-bottom: 40px;
}

.contacts-description p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #434134;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-block:hover {
  border-color: #0094ff;
  box-shadow: 0 2px 8px rgba(0, 148, 255, 0.1);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #434134;
}

/* Right Column - Contact Form */
.contact-form-container {
  max-width: 500px;
}

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

.form-row {
  display: flex;
  gap: 16px;
}

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

.form-group label {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #434134;
}

.form-group input,
.form-group textarea {
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #434134;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0094ff;
  box-shadow: 0 0 0 3px rgba(0, 148, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

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

/* Checkbox Styling */
.checkbox-group {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #434134;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #0094ff;
  border-color: #0094ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    left: 6px;
    top: 2px;
}

/* About Us Page Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.about-hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.about-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 64px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.about-hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #0094ff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.story-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 30px;
    color: #434134;
}

.story-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #fff;
}

.values-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #434134;
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0094ff, #007ad6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #434134;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #434134;
}

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

.team-member {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.team-member.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0094ff, #007ad6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 48px;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #434134;
}

.member-position {
    font-size: 16px;
    color: #0094ff;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: #fff;
}

.achievements-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #434134;
}

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

.achievement-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0094ff, #007ad6);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.achievement-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 148, 255, 0.3);
}

.achievement-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
}

.achievement-label {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Active nav link */
.header-nav a.active,
.mobile-nav a.active {
    color: #0094ff;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 56px;
    }
    
    .story-content {
        gap: 60px;
    }
    
    .values-grid,
    .team-grid,
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .about-hero-title {
        font-size: 48px;
    }
    
    .about-hero-stats {
        gap: 40px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-title,
    .values-title,
    .team-title,
    .achievements-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .story-section,
    .values-section,
    .team-section,
    .achievements-section {
        padding: 60px 0;
    }
    
    .story-title,
    .values-title,
    .team-title,
    .achievements-title {
        font-size: 28px;
    }
    
    .value-card,
    .team-member,
    .achievement-item {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .story-description {
        font-size: 16px;
    }
    
    .value-card h3,
    .team-member h3 {
        font-size: 20px;
    }
    
    .achievement-number {
        font-size: 36px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #0094ff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.cta-button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}
