/* assets/css/style.css */

:root {
  --primary: #005f73;
  --secondary: #edf6f9;
  --accent: #ee9b00;
  --text: #0a0908;
  --light: #ffffff;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--secondary);
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: var(--light);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}

.nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color .3s;
}

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

.btn,
.btn-quote {
  display: inline-block;
  background: var(--accent);
  color: var(--light);
  padding: .6rem 1.2rem;
  border-radius: .5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s;
}

.btn:hover,
.btn-quote:hover {
  background: var(--primary);
}

/* HERO */
.hero {
  padding: 4rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-left small {
  display: block;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: .9rem;
}

.hero-left h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-left p {
  margin-bottom: 1.5rem;
  color: #333;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

.hero-img img {
  width: 100%;
  border-radius: .75rem;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-trust {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--light);
  padding: .5rem 1rem;
  border-radius: .5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.hero-trust i {
  color: var(--accent);
}

/* PARTNERS */
.partners {
  padding: 2rem 0;
}

.partners-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.partners-inner img {
  max-height: 40px;
  opacity: .7;
  transition: opacity .3s;
}

.partners-inner img:hover {
  opacity: 1;
}

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

.services h2 {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 2rem;
}

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

.service-card {
  background: var(--light);
  padding: 2rem 1rem;
  text-align: center;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: .75rem;
}

.service-card h3 {
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .95rem;
  color: #555;
}

/* BANNER TEXT */
.banner-text {
  padding: 1.5rem 0;
  background: var(--light);
  text-align: center;
  font-family: var(--font-heading);
  color: var(--primary);
  letter-spacing: .1em;
}

/* ABOUT */
.about {
  padding: 4rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #444;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.stats div {
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
}

.stats span {
  font-size: .9rem;
}

/* PROCESS */
.process {
  padding: 4rem 0;
  background: var(--secondary);
}

.process h2 {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 2rem;
  text-align: center;
}

.process-grid i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: .5rem;
}

/* CTA */
.cta {
  padding: 3rem 0;
  background: var(--primary);
  color: var(--light);
  text-align: center;
}

.cta .btn {
  background: var(--accent);
}

/* TEAM */
.team {
  padding: 4rem 0;
}

.team h2 {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 2rem;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  list-style: none;
}

.team-list li {
  text-align: center;
}

.team-list img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: .5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* BLOG */
.blog {
  padding: 4rem 0;
}

.blog h2 {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 2rem;
}

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

.blog-grid article {
  background: var(--light);
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.blog-grid img {
  width: 100%;
  display: block;
}

.blog-grid h4 {
  padding: .75rem;
  font-size: 1.1rem;
}

/* SUBSCRIBE */
.subscribe {
  padding: 4rem 0;
}

.subscribe-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.subscribe-inner h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: .5rem;
}

.subscribe-inner form {
  display: flex;
  gap: .5rem;
}

.subscribe-inner input {
  padding: .75rem 1rem;
  border: 1px solid #ccc;
  border-radius: .5rem;
  width: 250px;
}

.subscribe-inner button {
  padding: .75rem 1.5rem;
  background: var(--accent);
  color: var(--light);
  border: none;
  border-radius: .5rem;
  cursor: pointer;
  transition: background .3s;
}

.subscribe-inner button:hover {
  background: var(--primary);
}

/* FOOTER */
.footer {
  background: var(--primary);
  color: var(--light);
  padding: 2rem 0;
  text-align: center;
}

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

.contact-info h4 {
  margin-bottom: .5rem;
}

.contact-info p {
  line-height: 1.4;
}

.social a {
  margin: 0 .5rem;
  color: var(--light);
  font-size: 1.2rem;
  transition: color .3s;
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero-inner,
  .about-inner {
    grid-template-columns: 1fr;
  }
  .subscribe-inner {
    grid-template-columns: 1fr;
  }
}
#hero {
  position: relative;
  padding: 6rem 0;
  background: url('../images/bg-hero.jpg') center/cover no-repeat;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* снизили затемнение */
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2; /* подняли контент над оверлеем */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
/* Обновляем стили заголовка и подзаголовка в Hero */

.hero-left small,
.hero-left h1 {
  color: #ffffff; /* белый цвет текста */
}

.hero-left small {
  position: relative;
  padding-bottom: 0.25rem;
}

.hero-left small::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--accent); /* жёлтая линия */
}

.hero-left h1 {
  position: relative;
  padding-bottom: 0.5rem;
}

.hero-left h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;   /* длина подчёркивания под заголовком */
  height: 4px;
  background: var(--accent);
  margin-top: 0.5rem;
}
/* в конец assets/css/style.css */

/* обёртка */
.banner-text {
  overflow: hidden;
  background: var(--light);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* собственно бегущая строка */
.marquee {
  display: flex;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

/* два span, чтобы текст бесшовно повторялся */
.marquee span {
  white-space: nowrap;
  padding-right: 4rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
}

/* ключевые кадры для прокрутки */
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* пауза анимации при наведении */
.banner-text:hover .marquee {
  animation-play-state: paused;
}
/* Styles for the updated About section */

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: #444;
}

.about-text p + p {
  margin-bottom: 1.5rem;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.stats div {
  background: var(--light);
  padding: 1rem;
  border-radius: .5rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: .25rem;
}

.stats span {
  font-size: .9rem;
  color: #555;
}

.about-text ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.about-text ul li {
  margin-bottom: .5rem;
}

.about-text .btn {
  display: inline-block;
  background: var(--accent);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s;
}

.about-text .btn:hover {
  background: var(--primary);
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  display: block;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-img .secondary-img {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  border: 4px solid var(--light);
  border-radius: .75rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  background: var(--light);
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-img .secondary-img {
    position: static;
    width: 80%;
    margin: 1rem auto 0;
  }
}
/* Custom styles for the Process section */

.process {
  padding: 4rem 0;
  background: var(--secondary);
}

.process h2 {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.process-step {
  background: var(--light);
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.process-step i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom styles for the Blog section */

.blog {
  padding: 4rem 0;
  background: var(--light);
}

.blog h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2.5rem;
}

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

.blog-post {
  background: var(--secondary);
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.blog-icon {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.blog-post h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.blog-post p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* Custom styles for the Promo section */

.promo {
  background: url('../images/bg-promo.jpg') center/cover no-repeat var(--secondary);
  color: var(--light);
  padding: 4rem 0;
  position: relative;
}

.promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.promo-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.promo-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.promo-content p {
  font-size: 1rem;
  line-height: 1.5;
}

.promo-form {
  background: rgba(255,255,255,0.9);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.promo-form h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.promo-form .form-group {
  position: relative;
  margin-bottom: 1rem;
}

.promo-form .form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.promo-form input,
.promo-form textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}

.promo-form textarea {
  resize: vertical;
  min-height: 100px;
}

.promo-form .btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  background: var(--accent);
  color: var(--light);
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s;
}

.promo-form .btn:hover {
  background: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .promo-inner {
    grid-template-columns: 1fr;
  }
}
/* Complete custom styles for the Testimonials section */

/* Container and background */
#testimonials {
  position: relative;
  padding: 4rem 0;
  background: url('../images/bg-testimonials.jpg') center/cover no-repeat;
  color: var(--light);
  overflow: hidden;
}

/* Dark overlay */
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Section title */
#testimonials h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--light);
  margin-bottom: 2.5rem;
}

/* Grid layout */
.testimonials-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

/* Individual testimonial card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Testimonial text */
.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Meta section (author + rating) */
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Author image */
.testimonial-meta img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Author name */
.testimonial-meta h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
}

/* Star rating */
.rating {
  display: flex;
  gap: 0.25rem;
  color: var(--accent);
}

.rating i {
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* FAQ Section Styles */

/* Section container */
#faq {
  padding: 4rem 0;
  background: var(--light);
}

/* Section title */
#faq h2 {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* FAQ list: two columns across full container width */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  width: 100%;
}

/* Individual FAQ item */
.faq-list details {
  background: var(--secondary);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background 0.3s, box-shadow 0.3s;
}

/* Hover state */
.faq-list details:hover {
  background: var(--bg-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Question summary */
.faq-list summary {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

/* Remove default marker */
.faq-list summary::-webkit-details-marker {
  display: none;
}

/* Custom arrow icon */
.faq-list summary::after {
  content: '\f107';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  transition: transform 0.3s;
}

/* Rotate arrow when open */
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Answer text */
.faq-list p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive: single column on narrow screens */
@media (max-width: 800px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}
/* Styles for the Contact section */

.contact-section {
  padding: 4rem 0;
  background: var(--secondary);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form,
.contact-info {
  background: var(--light);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form h2,
.contact-info h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}

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

.contact-form .btn {
  margin-top: 1rem;
  background: var(--accent);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-form .btn:hover {
  background: var(--primary);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.contact-info i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 800px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}
/* Improved background image and equal-height columns for Contact section */

/* Contact section with full-cover background image */
.contact-section {
  background: url('../images/bg-contact.jpg') center/cover no-repeat;
  position: relative;
  padding: 4rem 0;
  color: var(--light);
}

/* Overlay to darken image for contrast */
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Inner wrapper as flex container to equalize heights */
.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2rem;
  align-items: stretch; /* equal height */
  flex-wrap: wrap;
}

/* Contact form and info cards */
.contact-form,
.contact-info {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 45%; /* two columns */
  display: flex;
  flex-direction: column;
}

/* Ensure button and last elements stay at bottom if unequal content */
.contact-form,
.contact-info {
  justify-content: space-between;
}

/* Responsive adjustment */
@media (max-width: 800px) {
  .contact-inner {
    flex-direction: column;
  }
  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}
/* Footer styles */

.footer {
  background: var(--primary);
  color: var(--light);
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-about h4,
.footer-nav h4,
.footer-policy h4,
.footer-social h4 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--light);
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--light);
}

.footer-nav ul,
.footer-policy ul {
  list-style: none;
  padding: 0;
}

.footer-nav li,
.footer-policy li {
  margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-policy a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-policy a:hover {
  color: var(--accent);
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icons a {
  color: var(--light);
  font-size: 1.25rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--light);
}
/* Cookie banner styles */

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 95, 115, 0.95);
  color: var(--light);
  padding: 1rem 0;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--light);
}

.cookie-inner a {
  color: var(--accent);
  text-decoration: underline;
}

#cookie-accept {
  background: var(--accent);
  color: var(--light);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#cookie-accept:hover {
  background: var(--light);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
/* Mobile menu styles */

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
}

.desktop-quote {
  display: inline-block;
}

.mobile-quote {
  display: none;
}

/* Скрываем мобильное меню по умолчанию */
.mobile-nav {
  display: none;
}

/* Адаптив */
@media (max-width: 768px) {
  .desktop-nav,
  .desktop-quote {
    display: none;
  }
  .mobile-menu-toggle,
  .mobile-quote {
    display: inline-block;
  }
  .mobile-menu-toggle {
    margin-left: auto;
  }
  /* Показываем/скрываем моб. навигацию */
  .mobile-nav {
    background: var(--light);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .mobile-nav ul {
    list-style: none;
    padding: 1rem;
    list-style: none;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
  }
  .mobile-nav li + li {
    margin-top: 0.75rem;
  }
  .mobile-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.1rem;
    display: block;
  }
  .mobile-nav.hidden {
    display: block;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
  }
}

