/* 
    domain - Style Sheet
    Colors:
    - Main Background: #1C1C1E (deep graphite)
    - Accent: #FF6F3C (neon orange)
    - Secondary Background: #FDFDFD (milky white)
    - Additional Accent: #1ABC9C (teal green)
    - Text: #FAFAFA (warm white) & #2D2D2D (charcoal gray)
*/

/* === Reset & Base Styles === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1c1c1e;
  color: #fafafa;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

section[id] {
  scroll-margin-top: 80px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #ff6f3c;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #1abc9c;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #ff6f3c, #1abc9c);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

/* === Buttons === */
.btn-primary,
.btn-secondary,
.btn-submit {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6f3c, #ff9f6c);
  color: #fdfdfd;
  box-shadow: 0 4px 15px rgba(255, 111, 60, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ff8955, #ffb28c);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 111, 60, 0.4);
  color: #fdfdfd;
}

.btn-secondary {
  background: transparent;
  color: #ff6f3c;
  border: 2px solid #ff6f3c;
}

.btn-secondary:hover {
  background: rgba(255, 111, 60, 0.1);
  transform: translateY(-2px);
  color: #ff6f3c;
}

.btn-submit {
  background: linear-gradient(45deg, #ff6f3c, #1abc9c);
  color: #fdfdfd;
  padding: 14px 40px;
  box-shadow: 0 4px 15px rgba(255, 111, 60, 0.3);
  width: 100%;
  font-size: 1.1rem;
}

.btn-submit:hover {
  background: linear-gradient(45deg, #ff8955, #2dd1b2);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 111, 60, 0.4);
  color: #fdfdfd;
}

/* === Header & Navigation === */
.site-header {
  background-color: rgba(28, 28, 30, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo a {
  color: #ff6f3c;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #ff6f3c;
  height: 2px;
  width: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: #fafafa;
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ff6f3c;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: #ff6f3c;
  color: #fdfdfd !important;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background-color: #1abc9c;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(26, 188, 156, 0.3);
}

.nav-cta::after {
  display: none;
}

/* === Hero Section === */
.hero-section {
  min-height: 100vh;
  background-image: linear-gradient(
      rgba(28, 28, 30, 0.8),
      rgba(28, 28, 30, 0.8)
    ),
    url("./img/93Tyk.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fdfdfd;
}

.hero-content h2 {
  font-size: 2rem;
  color: #ff6f3c;
  margin-bottom: 2rem;
}

.hero-content h2::after {
  display: none;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* === About Section === */
.about-section {
  background-color: #fdfdfd;
  color: #2d2d2d;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* === Advantages Section === */
.advantages-section {
  background: linear-gradient(135deg, #1c1c1e, #2d2d2f);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.advantage-card {
  background: rgba(253, 253, 253, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 111, 60, 0.3);
}

.advantage-icon {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: #ff6f3c;
}

/* === Services Section === */
.services-section {
  background-color: #fdfdfd;
  color: #2d2d2d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  color: #ff6f3c;
  margin-bottom: 15px;
}

.service-content p {
  margin-bottom: 20px;
}

/* === Steps Section === */
.steps-section {
  background: linear-gradient(135deg, #1c1c1e, #2d2d2f);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

.step-card {
  background: rgba(253, 253, 253, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 111, 60, 0.1);
  border-color: rgba(255, 111, 60, 0.3);
}

.step-number {
  background: linear-gradient(45deg, #ff6f3c, #1abc9c);
  color: #fdfdfd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 20px;
}

/* === Testimonials Section === */
.testimonials-section {
  background-color: #fdfdfd;
  color: #2d2d2d;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 111, 60, 0.1);
  font-family: Georgia, serif;
  line-height: 0;
}

.testimonial-quote {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #ff6f3c;
}

/* === Contact Form Section === */
.contact-section {
  background: linear-gradient(135deg, #1c1c1e, #2d2d2f);
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(253, 253, 253, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group .required {
  color: #ff6f3c;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fafafa;
  font-size: 1rem;
}

.form-group option {
  background-color: #ffffff;
  color: #2d2d2d;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff6f3c;
}

.checkboxes {
  margin-top: 20px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

/* === FAQ Section === */
.faq-section {
  background-color: #fdfdfd;
  color: #2d2d2d;
}

.faq-container {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: block;
  padding: 20px;
  background-color: #ffffff;
  color: #2d2d2d;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  color: #ff6f3c;
  transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question {
  background-color: #ff6f3c;
  color: #fdfdfd;
}

.faq-toggle:checked + .faq-question::after {
  content: "−";
  transform: rotate(180deg);
  color: #fdfdfd;
}

.faq-answer {
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 20px;
}

/* === Contact & Map Section === */
.map-section {
  background: linear-gradient(135deg, #1c1c1e, #2d2d2f);
  position: relative;
}

.contact-map-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 2rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.map-container {
  flex: 2;
  min-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  margin-right: 15px;
  color: #ff6f3c;
  font-size: 1.5rem;
  line-height: 1;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #ff6f3c;
}

/* === Thank You Page === */
.thank-you-section {
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  text-align: center;
  margin: 8rem auto 5rem;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(253, 253, 253, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #ff6f3c;
}

.thank-you-actions {
  margin-top: 30px;
}

/* === Legal Pages === */
.legal-section {
  padding: 8rem 0 5rem;
}

.legal-content {
  background-color: #fdfdfd;
  color: #2d2d2d;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  border: 2px solid #ff6f3c;
}

.legal-content h1 {
  color: #ff6f3c;
  margin-bottom: 20px;
}

.legal-content h2 {
  color: #2d2d2d;
  font-size: 1.5rem;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h2::after {
  left: 0;
  transform: none;
  width: 50px;
}

.legal-content h3 {
  color: #2d2d2d;
  font-size: 1.3rem;
  margin-top: 20px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

.legal-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-nav-link {
  background-color: #ff6f3c;
  color: #fdfdfd;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.legal-nav-link:hover {
  background-color: #1abc9c;
  color: #fdfdfd;
  transform: translateY(-3px);
}

/* === Footer === */
.site-footer {
  background-color: #1c1c1e;
  padding: 4rem 0 2rem;
  color: #fafafa;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(274px, 1fr));
  gap: 20px;

  margin-bottom: 40px;
}

.footer-company {
  flex: 2;
  min-width: 300px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6f3c;
  margin-bottom: 15px;
}

.footer-description {
  color: rgba(250, 250, 250, 0.8);
  max-width: 400px;
}

.footer-links {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  color: #ff6f3c;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(250, 250, 250, 0.8);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff6f3c;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
  color: rgba(250, 250, 250, 0.6);
  font-size: 0.9rem;
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(28, 28, 30, 0.95);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 999;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
}

.cookie-btn.accept {
  background: #ff6f3c;
  color: #fdfdfd;
  border: none;
}

.cookie-btn.accept:hover {
  background: #ff8955;
}

.cookie-btn.more {
  background: transparent;
  color: #fafafa;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.more:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* === Responsive Styles === */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.7rem;
  }

  .service-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 30, 0.95);
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 0.3s ease;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    margin: 0;
    text-align: center;
  }

  .main-nav a {
    display: block;
    padding: 15px 0;
    opacity: 0;
    transition: opacity 0.15s ease;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle:checked ~ .main-nav {
    transform: scale(1, 1);
  }

  .nav-toggle:checked ~ .main-nav a {
    opacity: 1;
    transition: opacity 0.25s ease 0.15s;
  }

  .nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 4rem 0;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .footer-company,
  .footer-column {
    flex: 1 0 100%;
    min-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-content {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.3rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 25px;
  }

  .advantage-card,
  .service-card,
  .step-card,
  .testimonial-card {
    padding: 20px;
  }

  .header-container,
  .hero-content,
  .about-content,
  .advantages-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .contact-content,
  .contact-map-container {
    gap: 20px;
  }

  .legal-nav {
    flex-direction: column;
    align-items: center;
  }
}

/* === Icon Fonts === */
[class^="icon-"] {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.icon-certificate::before {
  content: "🏆";
}
.icon-solution::before {
  content: "💡";
}
.icon-confidential::before {
  content: "🔒";
}
.icon-support::before {
  content: "🤝";
}
.icon-location::before {
  content: "📍";
}
.icon-phone::before {
  content: "📞";
}
.icon-email::before {
  content: "✉️";
}
.icon-hours::before {
  content: "🕒";
}

/* === Custom SVG Favicon === */
/* Will be implemented as a separate file */
