/* ================================
Styles
   ================================ */
:root {
    --primary-color: #f6d025; 
    --secondary-color: #222; 
    --light-gray: #f8f8f8; 
    --medium-gray: #e2e2e2; 
    --text-color: #000;
    --light-text: #fff;
    --accent-color: #06cddf; 
    --reviews-card-color: #333;
    --review-date: #999;
}

/* ================================
   Базовые стили и сброс
   ================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

:root {
    --primary-color: #f6d025; 
    --secondary-color: #222; 
    --light-gray: #f8f8f8; 
    --medium-gray: #e2e2e2; 
    --text-color: #000;
    --light-text: #fff;
    --accent-color: #06cddf; 
    --reviews-card-color: #333;
    --review-date: #999;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInDark {
  from { 
    opacity: 0;
    background-color: #111;
  }
  to { 
    opacity: 1;
    background-color: transparent;
  }
}

@keyframes fadeOutDark {
  from { 
    opacity: 1;
    background-color: transparent;
  }
  to { 
    opacity: 0;
    background-color: #111;
  }
}

html {
  animation: fadeInDark 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.fade-out {
  opacity: 0;
  background-color: #111;
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #221f1f;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.transitioning .transition-overlay {
  opacity: 1;
}

/* ================================
   Background Classes
   ================================ */
.bg-yellow { background-color: var(--primary-color); }
.bg-gray { background-color: var(--light-gray); }
.bg-white { background-color: var(--light-text); }
.bg-dark { background-color: var(--secondary-color); }
.bg-black { background-color: var(--text-color); }

/* ================================
   Container Section
   ================================ */
section {
    padding: 0px 0;
    width: 100%;
    overflow: hidden;
}

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

.container-advantages, 
.container-work, 
.about-header-container, 
.container-head {
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 20px 20px;
}

/* ================================
   Components
   ================================ */
.advantages-grid, .work-steps, .stats-grid, .reviews-grid, .reviews-grid-main, .pricing-column, .pricing-grid {
  display: grid; 
  gap: 30px;   
  padding-top: 40px; 
  margin: 0 auto;
  width: 100%;
}

.advantages-grid { grid-template-columns: 1fr; }
.work-steps { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: 1fr; text-align: center; }
.reviews-grid { grid-template-columns: 1fr; margin-bottom: 40px; }
.reviews-grid-main { grid-template-columns: 1fr; gap: 20px; }
.pricing-column { 
    grid-template-columns: 1fr; 
    gap: 20px;
    max-width: 100%; 
}
.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 40px auto;
    max-width: 100%;
    padding: 0 20px;
    
}

/* ================================
   Cards
   ================================ */
.advantage-card, .step, .review-card, .review-card-main, .pricing-card, .stat-item {
    background: var(--light-text); 
    border-radius: 8px; 
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    transition: transform 0.3s ease;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.review-card { margin: 0; }

.advantage-card:hover, .step:hover, .review-card:hover, .pricing-card:hover { 
    transform: translateY(-5px); 
}

.review-card{ 
    background: var(--reviews-card-color);
    color: var(--light-text); 
}.external-reviews{
    color: var(--light-text); 
    
}

.review-card-main { background: var(--light-gray); }

.pricing-card { 
    background: var(--secondary-color);
    height: auto; 
    align-items: center; 
    justify-content: space-between;
    display: flex; 
    flex-direction: column;
    gap: 20px;
    padding: 40px 30px;
    text-align: center;
}

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

/* ================================
   Album button
   ================================ */
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.album-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.album-item:hover {
    position: center;
    transform: scale(1.1);
}

.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}   
   
/* Кнопка открытия альбома */
.open-album-btn {
    background: #06cddf;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.open-album-btn:hover {
    background: #05b8c9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 205, 223, 0.3);
}

/* ================================
   Pricing Section Page services
   ================================ */
.services-title,
.promo-title,
.timer {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.8;
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.services-page-section {
    padding: 60px 0;
    background-image: url('../images/p3.jpg'); /* Путь к вашей картинке */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Затемнение фона для лучшей читаемости текста */


.services-page-section > * {
    position: relative;
    z-index: 2;
}

.services-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin: 40px 0px 20px 0px;
    color: var(--light-text);
}

.pricing-item {
    background: rgba(255, 255, 255, 0.95); /* Полупрозрачный белый */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px); /* Размытие фона */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1); /* При наведении менее прозрачный */
}

.pricing-title {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-description {
    color: var(--secondary-color);
    margin-bottom: 20px;
    min-height: 60px;
    text-align: center;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    margin: 20px 0;
    text-align: center;
    color: var(--accent-color);
}

.price-note {
    font-size: 14px;
    color: var(--review-date);
    margin-bottom: 25px;
    text-align: center;
}

.pricing-button {
    display: inline-block;
    width: 100%;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
}

.pricing-button:hover {
    background-color: #007d88;
    color: var(--light-text);
}
.promo-section {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}
/* ================================
   Services Section
   ================================ */
.services-section {
    background-color: var(--background-light);
    padding: 60px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

.service-card {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 20px;
}

/* ================================
   Steps Section
   ================================ */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
}

.step p{
    color: var(--secondary-color);
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
    line-height: 1;
    text-align: center;
    display: block;
}

.step-number2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
    text-align: center;
    display: block;
}

.step-content {
    width: 100%;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: center;
}

.step-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--step-color);
}

.about-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.about-contacts{
    padding: 0 0 20px 0;
    align-items: center;
    text-align: center;
}

.LogoItem {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.LogoItem img {
    object-fit: contain;
    width: 100%;
    height: auto;
}

.mode{
    width: 60px;
    height: 60px;
    border-radius: 50px;
}

/* ================================
   TEXT
   ================================ */
.text1{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.textcolor{
    color:var(--text-color-blue);
}

h2{
    font-size: 40px;
    font-weight: 800;
    padding: 0;
    margin: 0;
    line-height: 1.2;
    white-space: normal;
}

h4{
    font-size: 30px;
    font-weight: 700;
    padding: 10px;
    padding-top: 10px;
    margin: 0;
}

.about-text{
    font-size: 25px;
    padding: 20px;
    font-weight: 600;
    font-style: initial;
    text-align: center;
}

/* ================================
   Header
   ================================ */
.header-section {
    padding: 20px 0;
    width: 100%;
}

.header-text{
    padding: 0 0 30px 0;
    text-align: center;
    width: 100%;
}

.header h2{
    font-size: 30px;
    font-weight: 800;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a{
    text-decoration: none;
    color: inherit;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    justify-content: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--light-text);
}

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

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 20px;
}

/* ================================
   About Section
   ================================ */
.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: center;
}

.advantage-card p {
    text-align: center;
}

/* ================================
   Stats Section
   ================================ */
.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-text{
    color: var(--secondary-color);
    font-size: 18px;
}

/* ================================
   Contact Section - ИСПРАВЛЕНА ПО СКРИНШОТУ
   ================================ */
.contact-section {
    padding: 50px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-header p {
    font-size: 18px;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    width: 100%;
}

.form-group input{
    width: 100%;
    padding: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    background: var(--light-text);
}

.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    resize: none;
    box-sizing: border-box;
    background: var(--light-text);
    min-height: 150px;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    background: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    margin: 30px auto 0;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #007d88;
}
.cta-button2 {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    background: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    margin: 30px auto 0;
    text-transform: uppercase;
}

.cta-button2:hover {
    background: #007d88;
}

/* ================================
   Pricing Section - ИСПРАВЛЕНА ПО СКРИНШОТУ
   ================================ */
.pricing-section {
    padding: 50px 0;
    background: url(/assets/images/background.jpg);
}

.price-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--light-text);
}

.pricing-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.price-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.price-from {
    font-size: 18px;
    color: var(--light-text);
    opacity: 0.8;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
}

.price-currency {
    font-size: 20px;
    color: var(--light-text);
    opacity: 0.8;
}

.service-info {
    margin-bottom: 30px;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 10px;
}

.service-price {
    font-size: 16px;
    color: var(--light-text);
    opacity: 0.8;
}

.cta-button-price {
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 auto;
    margin-top: 20px;
}

.cta-button-price:hover {
    background: #007d88;
}

/* ================================
   Work Steps Section - ИСПРАВЛЕНА ПО СКРИНШОТУ
   ================================ */
.steps-section {
    padding: 40px 0;
    background: var(--light-text);
}

.work-steps {
    display: grid;
    gap: 30px;

}

.step {
    background: var(--light-text);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.step-number2 {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-content p {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* ================================
   Reviews Section
   ================================ */
.reviews-section {
    color: var(--light-text);
    padding: 40px 0;
}

.section-subtitle {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.section-title-reviews {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--light-gray);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
    color: var(--light-text);
}

.review-rating {
    color: var(--primary-color);
    font-size: 18px;
}

.review-content {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

.review-date {
    color: var(--review-date);
    font-size: 14px;
    margin-top: 15px;
}

/* ================================
   Reviews Section index page
   ================================ */
.reviews-section-main {
    color: var(--secondary-color);
    padding: 80px 0;
}

.section-title-reviews-main {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--reviews-card-color);
}

.dark h3 {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 0px;
}

.review-content-main p{
    color: var(--secondary-color);
    font-size: 16px;
}

.review-card-main {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 40px;
    transition: transform 0.3s ease;
}

/* ================================
   Footer
   ================================ */
.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    text-align: center;
}

.footer-info {
    width: 100%;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.deep-logo{
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    color: var(--light-text);
}

.copyright {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444;
    color: var(--light-text);
    margin: 0;
}

.deep-phone{
    color: var(--light-text);
}

/* ================================
   Back to Top Button
   ================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.back-to-top:hover {
  background-color: #e0c021;
  transform: translateY(-3px);
}

/* ================================
   Slider Styles
   ================================ */
.slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 450px;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.9);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* ================================
   Slider Reviews Styles
   ================================ */
.slider rew {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slides rew{
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 450px;
}

.slide rew{
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.slide img rew{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.9);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}


/* ================================
   Modal Styles
   ================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--medium-gray);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: var(--secondary-color);
}

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

.order-form {
    margin-top: 20px;
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.order-form textarea {
    min-height: 100px;
    resize: none;
}

.order-form select {
    width: 100%;
}

/* ================================
   Responsive Design
   ================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .about-header-container {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }
    
    .header-text {
        padding-right: 40px;
        text-align: left;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .work-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .nav-links {
        justify-content: flex-end;
    }
    
    .form-row {
        flex-direction: row;
    }
    
    .footer-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 80px;
    }
    
    .pricing-column {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
    
    .price-title {
        font-size: 28px;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .slides {
        height: 300px;
    }
    
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ================================
   Utility Classes
   ================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.p-20 { padding: 20px; }

.hidden { display: none; }
.visible { display: block; }

/* ================================
   Image and Media Queries
   ================================ */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Prevent content overflow */
.text-overflow {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Ensure backgrounds cover properly */
section {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
}