:root {
    --accent-color: #d8a764;
    --accent-hover: #d8a764;
    --accent-light: rgb(175 161 76 / 10%);
    --primary-dark: #1a1a1a;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.15);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a.tel_num{
    color: #2c2c2c;
    text-decoration: none;
}
a.tel_num_mob{
    color: white;
    text-decoration: none;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

body.no-scroll {
   position: fixed;
  width: 100%;
  overflow: hidden;
  top: 0; /* щоб не скакала сторінка */
  left: 0;
}

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

.container-rev {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Utility classes */
.accent-color {
    color: var(--accent-color) !important;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    /*display: inline-block;*/
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: rgba(76, 175, 80, 0.1);
}

.btn-group {
  display: flex;
  justify-content: center; /* центруємо по горизонталі */
  gap: 16px; /* відстань між кнопками */
  flex-wrap: wrap; /* якщо мало місця — кнопки переносяться */
}

.btn-group .btn {
  min-width: 220px; /* щоб на ПК виглядали однаково */
  text-align: center;
}

@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
    align-items: center; /* щоб були по центру */
    gap: 12px;
  }

  .btn-group .btn {
    width: 100%; /* на мобі розтягуємо */
    max-width: 350px; /* можна обмежити */
  }
}

.btn-full {
    width: 100%;
}

/* Header Styles */
.header {
    background-color: transparent;
    box-shadow: none;
    position: relative;
    z-index: 100;
}

/* Desktop Header */
.desktop-header {
    display: block;
}

.mobile-header {
    display: none;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: none;
}

.header-info,
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
}

.header-contact-combined {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffeed7;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #d8a764;
}

.address,
.schedule {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bullet {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.address-content,
.schedule-content {
    display: flex;
    flex-direction: column;
}

.address-content span:first-child,
.schedule-content span:first-child {
    font-size: 13px;
    color: var(--text-muted);
}

.address-text,
.schedule-text {
    font-weight: 600;
    margin-top: 2px;
}

.header-logo {
    flex: 0.6;
    display: flex;
    justify-content: center;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-wrench {
    font-size: 20px;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px;
}

.social-link img {
    width: 30px;
    height: 25px;
    object-fit: contain;
}

.social-link:hover {
    transform: translateY(-2px);
    background-color: var(--accent-hover);
}

.phone {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
}

.phone-icon {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.phone-icon img {
    width: 140%;
    height: 170%;
    object-fit: contain;
    margin: 1px -5px 0px;
}

.phone-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-content span:first-child {
    color: var(--text-muted);
}

.phone-number {
    font-weight: 600;
    font-size: 16px;
    margin-top: 2px;
}

/* Mobile Header */
.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px;
    background-color: #1c1c1c;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 100%;
    height: 70px;
    margin-bottom: -10px;
    padding-bottom: 0;
    padding-right: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: white;
}

.mobile-logo .logo-circle {
    width: 55px;
    height: 50px;
}

.mobile-logo .logo-text {
    font-size: 8px;
}

.mobile-logo .logo-wrench {
    font-size: 14px;
}

.mobile-contact {
    flex: 1;
    text-align: center;
    margin: 0 15px;
}

.mobile-phone {
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.mobile-address {
    font-size: 11px;
    color: #ccc;
    margin-top: 2px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    flex-direction: column;
    gap: 4px;
    display: flex;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-top: -10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    
    border-bottom: 1px solid #eee;
}

.mobile-nav-logo .logo-circle {
    width: 50px;
    height: 50px;
}

.mobile-nav-logo .logo-text {
    font-size: 10px;
}

.mobile-nav-logo .logo-wrench {
    font-size: 20px;
}

.mobile-nav-links {
    margin-bottom: 30px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent-color);
}

.nav-arrow {
    color: #ccc;
    font-size: 20px;
}

.mobile-nav-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: var(--text-light);
}

.mobile-nav-info h4 {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.mobile-nav-info p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.phone-link {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.mobile-nav-social {
    display: flex;
}

.social-icon {
    width: 40px;
    height: 40px;
    /*background-color: var(--accent-color);*/
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 10px;
}

.social-icon img {
    width: 30px;
    height: 26px;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: var(--accent-hover);
}

/* Navigation */
.main-nav {
    background-color: #1c1c1c;
    border-radius: 10px;
    justify-content: space-around;
    align-items: center;
    width: 1200px;
    height: 50px;
    margin: 0 auto 50px;
    display: flex;
    max-width: 100%;
}

.nav-link {
    padding: 6px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 8px;
    font-size: 14px;
    position: relative;
}

.nav-link:hover {
    background: linear-gradient(135deg, var(--accent-color));
    box-shadow: 0 4px 15px #d8a764;
    transform: scale(1.05); /* краще ніж міняти padding */
}

.nav-link.active {
    background: linear-gradient(135deg, var(--accent-color));
    box-shadow: 0 2px 10px #d8a764;
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgb(120 113 48 / 15%) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 2;
}

.hero-accent {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-left: 25px;
}

.hero-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Акційний блок */
/* Акційний блок */
.promo-card.single-promo {
    position: relative;
    background: url("../images/rain-bg.png") center/cover no-repeat; /* твоя картинка */
    color: white;
    padding: 30px 25px;
    border-radius: 15px;
    width: 380px;
    min-height: 180px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden; /* щоб overlay не виходив */
}

/* затемнення поверх картинки */
.promo-card.single-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75); /* рівень затемнення */
    border-radius: 15px;
    z-index: 1;
}

/* весь текст поверх overlay */
.promo-card.single-promo > * {
    position: relative;
    z-index: 2;
}

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

.promo-badge {
    background: white;
    color: #111;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.promo-discount {
    font-size: 40px;
    font-weight: 900;
    color: #d8a764;
    margin-bottom: 12px;
}

.promo-text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #f1f1f1;
    max-width: 90%;
}

/* Contact Form Section */
.contact-form-section {
    padding: 50px 0;
    background-color: var(--bg-white);
}

.contact-form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefit-icon {
    min-width: 24px;
    min-height: 24px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.form-right {
    flex: 1;
}

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

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

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.form-privacy {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

.form-privacy a {
    color: var(--accent-color);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* Statistics Section */
.statistics-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: white;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    line-height: 1.4;
    color: #cccccc;
    max-width: 200px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: #1a1a1a;
    color: white;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 60px;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color));
    border-radius: 2px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 25px;
}

.about-left {
    flex: 1;
}

.about-right {
    flex: 1;
}

/* Photo Slider */
.photo-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* картинка завжди тримає пропорцію */
  overflow: hidden;
}


.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
}

.slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.prev-btn, .next-btn {
    background: rgba(76, 175, 80, 0.8);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* About Text */
.about-text {
    margin-bottom: 40px;
}

.service-card {
    position: relative; /* додати */
}

.service-details {
    position: absolute; /* замість display: block */
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
    margin-top: 0;
    background: #fff;
    border-radius: 8px;
    padding: 0 10px;
    font-size: 14px;
    color: #111;
}

.service-card.active .service-details {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: red !important;
    color: white !important;
    padding: 20px !important;
    z-index: 9999 !important;
    max-height: none !important;
    opacity: 1 !important;
}

.service-wrapper {
  display: flex;
  flex-direction: column;
}

.service-details-external {
  display: none;
  background: #2a2a2a;
  color: #f1f1f1;
  border: 2px solid #d8c064;
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.service-details-external.active {
  display: block;
}


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

.about-text strong {
    color: white;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.feature-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.4;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    /*background-color: var(--bg-light);*/
}

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

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.services-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color));
    border-radius: 2px;
}

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

.service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  color: white;
  padding: 20px;
  transition: all 0.3s ease;
  min-height: 180px; /* фіксуємо висоту */
  height: 200px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-price {
  font-size: 15px;
  margin-bottom: 12px;
  color: #aaa;
}

.btn-green {
  background: #bfa528;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.btn-green:hover {
  background: #bfa528;
}

/* картинка справа */
.service-image {
  height: 250px;
}

.service-image img {
  display: block;
  max-width: 120%;
  height: auto;
}



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

  .service-card {
        background-color: #18181c;
        border-radius: 10px;
        width: 100%;
        height: 183px;
        margin-bottom: 20px;
        padding: 20px 0 20px 20px;
        position: relative;
        align-items: center;
  }

  .service-image {
    width: 100px;
    height: 100px;
  }

  .service-image img {
        border: 1px #000;
        border-radius: 100px 10px 10px 100px;
        width: 145px;
        height: 181px;
        position: absolute;
        inset: auto 0% 0% auto;
        box-shadow: -2px 0 5px #0003;
  }

  .service-content {
    width: calc(100% - 110px); /* щоб текст не налазив на фото */
  }

  .btn-green {
    padding: 6px 14px;
    font-size: 14px;
  }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
    
    .mobile-header {
        display: block;
        position: fixed;
        width: 100%;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .promo-card {
        width: 100%;
        max-width: 320px;
    }
    
    .contact-form-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }
    
    .form-left h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    /* Statistics Section Mobile */
    .statistics-section {
        padding: 40px 0;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 0px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .slider-container {
        height: 260px;
    }
    
    .about-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .contact-form-section {
        padding: 50px 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .phone {
        align-items: center;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-right {
        margin-left: 0;
        margin-top: 15px;
    }

    .services-section {
        padding: 20px 0;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    /* Statistics Section Mobile 480px */
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    /* About Section Mobile 480px */
    .slider-container {
        height: 190px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.hero-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color); /* червоний акцент */
    margin-bottom: 10px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 600;
    color: #fff; /* білий текст, якщо фон темний */
}


/* Location Section */
.location-section {
    padding: 50px 0px;
    background-color: var(--bg-light);
}

.location-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.location-map {
  flex: 2;
  width: 100%; /* контейнер завжди на всю ширину */
}

.location-map iframe {
  width: 100%;       /* карта підлаштовується */
  height: 300px;     /* висота для моб, можна міняти */
  border: 0;
  border-radius: 10px; /* щоб красивіше виглядало */
}

@media (min-width: 768px) {
  .location-map iframe {
    height: 450px; /* більша висота на планшетах/ПК */
  }
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-content-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.location-content-text p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-left {
    flex: 1;
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo-circle {
    width: 65px;
    height: 60px;
    margin-left: -5px;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
}

.footer-social .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    transform: translateY(-2px);
}

.footer-social .social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: center;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-contact {
    flex: 1;
    max-width: 250px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 16px;
    color: white;
    margin: 0;
}

.footer-phone {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--accent-hover);
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    
    .location-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .location-item {
        padding: 20px;
    }
    
    .location-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
        justify-content: flex-start;
    }
    
    .footer-contact {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 40px 0;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .location-icon {
        margin-bottom: 10px;
    }
    
    .footer-links {
        /*flex-direction: column;*/
        gap: 30px;
    }
    
    .footer-phone {
        font-size: 18px;
    }
    .service-details-external{
        margin-top: -15px;
    }
}

/* Основні анімації появи */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анімація для цифр в статистиці */
@keyframes countUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Анімації для кнопок */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Анімації для фону */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Базовий клас для анімацій */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
}

/* Застосування анімацій до елементів */

/* Header */
.header {
    animation: slideInFromTop 0.8s ease-out;
}

.main-nav .nav-link {
    animation: fadeInDown 0.6s ease-out;
    animation-fill-mode: both;
}

.main-nav .nav-link:nth-child(1) { animation-delay: 0.1s; }
.main-nav .nav-link:nth-child(2) { animation-delay: 0.2s; }
.main-nav .nav-link:nth-child(3) { animation-delay: 0.3s; }
.main-nav .nav-link:nth-child(4) { animation-delay: 0.4s; }
.main-nav .nav-link:nth-child(5) { animation-delay: 0.5s; }

/* Hero Section */
.hero-accent {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-title {
    animation: fadeInLeft 1s ease-out 0.4s both;
}

.hero-subtitle {
    animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.hero-description {
    animation: fadeInLeft 0.8s ease-out 0.8s both;
}

.hero-buttons {
    animation: fadeInLeft 0.8s ease-out 1s both;
}

.hero-buttons .btn {
    transition: all 0.3s ease;
}


.hero-buttons .btn:hover {
    animation: pulse 0.6s ease-in-out;
}

.promo-card {
    transition: all 0.4s ease;
}

.promo-card:hover {
    animation: float 2s ease-in-out infinite;
}

/* Contact Form */
.form-left h2 {
    animation: fadeInLeft 0.8s ease-out both;
}

.form-left p {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.benefit-item {
    animation: fadeInLeft 0.6s ease-out both;
}

.benefit-item:nth-child(1) { animation-delay: 0.3s; }
.benefit-item:nth-child(2) { animation-delay: 0.4s; }
.benefit-item:nth-child(3) { animation-delay: 0.5s; }

.contact-form {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.form-group {
    animation: fadeInUp 0.6s ease-out both;
}

.form-group:nth-child(1) { animation-delay: 0.4s; }
.form-group:nth-child(2) { animation-delay: 0.5s; }
.form-group:nth-child(3) { animation-delay: 0.6s; }

.btn-full {
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

/* Services Section */
.services-title {
    animation: fadeInUp 0.8s ease-out both;
}

.service-card {
    animation: fadeInUp 0.6s ease-out both;
    transition: all 0.4s ease;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }

/* Statistics Section */
.stat-item {
    animation: scaleIn 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

.stat-number {
    animation: countUp 1s ease-out both;
}

/* About Section */
.section-title {
    animation: fadeInUp 0.8s ease-out both;
}

.photo-slider {
    animation: fadeInLeft 0.8s ease-out 0.3s both;
}

.about-text {
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.feature-item {
    animation: fadeInRight 0.6s ease-out both;
}

.feature-item:nth-child(1) { animation-delay: 0.6s; }
.feature-item:nth-child(2) { animation-delay: 0.7s; }
.feature-item:nth-child(3) { animation-delay: 0.8s; }

/* Location Section */
.location-map {
    animation: fadeInLeft 0.8s ease-out both;
}

.location-item {
    animation: fadeInRight 0.6s ease-out both;
}

.location-item:nth-child(1) { animation-delay: 0.2s; }
.location-item:nth-child(2) { animation-delay: 0.4s; }
.location-item:nth-child(3) { animation-delay: 0.6s; }

/* Footer */
.footer-left {
    animation: fadeInUp 0.8s ease-out both;
}

.footer-links {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.footer-contact {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Додаткові анімації для інтерактивності */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Анімація для соціальних іконок */
.social-link,
.social-icon {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover,
.social-icon:hover {
    /*transform: translateY(-3px) scale(1.1);*/
    /*box-shadow: 0 10px 25px #d6bb19;*/
}

/* Анімація для форм */
.form-group input,
.form-group select {
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

/* Анімація для слайдера */
.slider-controls button {
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 15px #d8a764;
}

.dot {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dot:hover {
    transform: scale(1.3);
}

/* Анімація завантаження сторінки */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2d2d2d 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(76, 175, 80, 0.3);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Анімована стрілка вниз для hero */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    cursor: pointer;
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollIndicator 2s infinite;
}

@keyframes scrollIndicator {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(26px);
    }
}

/* Покращена анімація для hero фону */
.hero {
    background: linear-gradient(-45deg, #000, #1a1a1a, #2d2d2d, #1a1a1a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Анімації при наведенні на картки послуг */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.service-card:hover::before {
    height: 8px;
    box-shadow: 0 0 20px #dcac6a;
}

/* Анімація для статистики */
.statistics-section {
    /*background: linear-gradient(-45deg, #1a1a1a, #2d2d2d, #1a1a1a, #333);*/
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

/* Покращені анімації для мобільного меню */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    width: 100%;
}

/* Стіккі анімація для хедера */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: slideInFromTop 0.3s ease-out;
}

/* Анімація для прогрес-бару завантаження */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color));
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Responsive анімації */
@media (max-width: 768px) {
    .service-card:nth-child(n) {
        animation-delay: 0.1s;
    }
    
    .stat-item:nth-child(n) {
        animation-delay: 0.1s;
    }
    
    .feature-item:nth-child(n) {
        animation-delay: 0.2s;
    }
    
    .location-item:nth-child(n) {
        animation-delay: 0.1s;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Додаткова анімація для акційних карток */
.promo-card {
    position: relative;
    overflow: hidden;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.promo-card:hover::after {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

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

       /* Reviews Section */
.reviews-section {
    padding: 30px 0;
    background-color: var(--bg-light);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
}

.google-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.rating-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.star {
    color: #FFA500;
    font-size: 18px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-light);
}

.reviews-count {
    background: var(--accent-color);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.reviews-count h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.reviews-count p {
    font-size: 14px;
    opacity: 0.9;
}

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 0;
    overflow: visible;
    padding: 20px 0;
    will-change: transform;
    /* Анімація буде додаватися через JS */
}

.review-card {
    flex: 0 0 400px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: all 0.3s ease;
    margin-right: 30px;
}

.review-card:last-child {
    margin-right: 0;
}

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

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.reviewer-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

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

.review-rating .star {
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
}

.review-platform {
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--accent-light);
    color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color));
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 5px 20px #d8a764;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-dot:hover {   
    background: #d8a764;
    transform: scale(1.1);
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Call to Action */
.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

.reviews-cta h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.reviews-cta p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

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


.btn-primary {
    background: linear-gradient(135deg, var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #ffbc61;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .reviews-stats {
        flex-direction: column;
        gap: 20px;
    }

    .google-rating,
    .reviews-count {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .reviews-track {
        gap: 0;
    }

    .review-card {
        flex: 0 0 320px;
        padding: 25px;
        margin-right: 20px;
    }

    .carousel-controls {
        gap: 15px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }

    .review-card {
        flex: 0 0 280px;
        padding: 20px;
    }

    .reviews-cta h3 {
        font-size: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Стилі для планшетів */
@media (min-width: 769px) and (max-width: 1200px) {
    .review-card {
        flex: 0 0 400px;
    }
}

/* Десктоп */
@media (min-width: 1201px) {
    .review-card {
        flex: 0 0 400px;
    }
}

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

.review-card {
    animation: slideIn 0.6s ease-out;
}

.service-details-external ul {
  list-style: none;  /* прибирає крапки */
  padding-left: 0;   /* прибирає відступ */
  margin: 0;         /* щоб було рівно */
}

.service-details-external li {
  margin-bottom: 6px; /* відстань між пунктами */
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

