/* 
* Main Stylesheet for domain
* Colors:
* - Main Background: #0F172A (dark blue)
* - Accents: #22D3EE (neon turquoise)
* - Text: #F1F5F9 (almost white)
* - Buttons: gradient from #F43F5E to #8B5CF6
* - Block background: #1E293B (dark indigo)
* - Icons: #38BDF8
*/

/* ======= Reset & Base Styles ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #F1F5F9;
  background-color: #0F172A;
  overflow-x: hidden;
}

a {
  color: #22D3EE;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #38BDF8;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

section {
  padding: 5rem 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ======= Buttons ======= */
.btn, .btn-gradient {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn {
  background-color: #22D3EE;
  color: #0F172A;
}

.btn:hover {
  background-color: #38BDF8;
  transform: translateY(-2px);
}

.btn-gradient {
  background: linear-gradient(135deg, #F43F5E, #8B5CF6);
  color: #F1F5F9;
  box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

.btn-gradient:hover {
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.5);
  transform: translateY(-2px);
}

/* ======= Header & Navigation ======= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: block;
}

.main-navigation ul {
  display: flex;
}

.main-navigation li {
  margin-left: 25px;
}

.main-navigation a {
  color: #F1F5F9;
  font-weight: 500;
  position: relative;
}

.main-navigation a:hover,
.main-navigation a.active {
  color: #22D3EE;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #22D3EE;
  transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
}

.menu-toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.menu-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #F1F5F9;
  position: relative;
  transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #F1F5F9;
  transition: all 0.3s ease;
}

.menu-icon::before {
  transform: translateY(-10px);
}

.menu-icon::after {
  transform: translateY(10px);
}

.menu-icon.open {
  background-color: transparent;
}

.menu-icon.open::before {
  transform: rotate(45deg);
}

.menu-icon.open::after {
  transform: rotate(-45deg);
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-navigation {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #1E293B;
    padding: 20px;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .main-navigation.active {
    display: block;
  }
  
  .main-navigation ul {
    flex-direction: column;
  }
  
  .main-navigation li {
    margin: 10px 0;
    margin-left: 0;
  }
  
  .main-navigation a {
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
  }
}

/* ======= Hero Section ======= */
.hero {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: #0F172A;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(139, 92, 246, 0.1));
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: #22D3EE;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ======= About Section ======= */
.about {
  background-color: #1E293B;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid #22D3EE;
  z-index: 0;
}

.about-image img {
  position: relative;
  z-index: 1;
  display: block;
}

/* ======= Services Section ======= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #1E293B;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: #1E293B;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 0 30px 30px;
  text-align: center;
}

.service-content h3 {
  margin-bottom: 15px;
}

/* ======= Process Section ======= */
.process {
  background-color: #1E293B;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.process-step {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #F43F5E, #8B5CF6);
  color: #F1F5F9;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.process-step h3 {
  margin-bottom: 15px;
}

/* Add connecting line between steps */
.process-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  height: 2px;
  background: linear-gradient(90deg, #F43F5E, #8B5CF6);
  z-index: 1;
}

/* ======= Testimonials Section ======= */
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial {
  background-color: #1E293B;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex: 1;
  min-width: 300px;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(34, 211, 238, 0.2);
  font-family: Georgia, serif;
  line-height: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: #22D3EE;
  margin: 0;
}

/* ======= Benefits Section ======= */
.benefits {
  background-color: #1E293B;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.benefit-icon {
  font-size: 2rem;
  color: #38BDF8;
  flex-shrink: 0;
}

.benefit-text h4 {
  margin-bottom: 10px;
}

.benefit-text p {
  margin-bottom: 0;
}

/* ======= FAQ Section ======= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #1E293B;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: block;
  width: 100%;
  padding: 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F1F5F9;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
}

/* ======= Order Form Section ======= */
.order {
  background-color: #1E293B;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #0F172A;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #38BDF8;
  border-radius: 5px;
  background-color: rgba(34, 211, 238, 0.05);
  color: #F1F5F9;
  font-size: 1rem;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2338BDF8' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

select.form-control option {
  background-color: #1E293B;
  color: #F1F5F9;
  padding: 10px;
}

.form-control:focus {
  outline: none;
  border-color: #22D3EE;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 5px;
}

/* ======= Footer ======= */
.site-footer {
  background-color: #0b1224;
  padding: 5rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F43F5E, #8B5CF6);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about,
.footer-contact,
.footer-links {
  margin-bottom: 30px;
}

.footer-about p {
  margin-bottom: 0;
}

.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(34, 211, 238, 0.2);
}

/* ======= Policy Pages ======= */
.policy-page {
  padding: 150px 0 100px;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #1E293B;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.policy-container h1 {
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.policy-container h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #F43F5E, #8B5CF6);
}

.policy-container h2 {
  margin-top: 2rem;
  color: #22D3EE;
}

/* ======= Thank You Page ======= */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 150px 0 100px;
}

.thank-you-container {
  background-color: #1E293B;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(34, 211, 238, 0.3);
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.thank-you h1 {
  margin-bottom: 2rem;
  font-size: 3rem;
}

.thank-you p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ======= Cookie Banner ======= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1E293B;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  flex: 1;
  margin: 0;
}

.cookie-learn-more {
  margin-left: 10px;
  text-decoration: underline;
}

/* ======= Animations ======= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ======= Responsive Adjustments ======= */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
  
  .process-step {
    width: 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn, .btn-gradient {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .form-container {
    padding: 20px;
  }
}
