/* 
====================================
   Base Styles
====================================
*/
:root {
  --bg-color: #111827;
  --accent-teal: #00ffd1;
  --accent-pink: #f43f5e;
  --text-color: #f3f4f6;
  --dark-text: #111827;
  --section-spacing: 5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 40px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-pink);
}

ul {
  list-style: none;
}

/* 
====================================
   Typography
====================================
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.accent {
  color: var(--accent-teal);
}

/* 
====================================
   Header & Navigation
====================================
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  text-transform: lowercase;
}

.logo a {
  color: white;
  text-shadow: 0 0 10px var(--accent-teal), 0 0 20px var(--accent-teal);
  transition: all 0.3s ease;
}

.logo a:hover {
  text-shadow: 0 0 15px var(--accent-pink), 0 0 30px var(--accent-pink);
}

/* Burger Menu */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 2;
}

.menu-icon span {
  background-color: var(--text-color);
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 8px;
}

.menu-icon span:nth-child(3) {
  top: 16px;
}

.menu-toggle:checked ~ .menu-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.menu-toggle:checked ~ .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .menu-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-teal);
  transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}

/* 
====================================
   Buttons
====================================
*/
.btn-glass {
  display: inline-block;
  padding: 12px 28px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-glass:hover {
  background-color: rgba(0, 255, 209, 0.2);
  border-color: var(--accent-teal);
  color: var(--text-color);
  box-shadow: 0 0 15px rgba(0, 255, 209, 0.5);
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background-color: transparent;
  border: 2px solid var(--accent-teal);
  border-radius: 4px;
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: rgba(0, 255, 209, 0.1);
  color: var(--text-color);
  box-shadow: 0 0 15px rgba(0, 255, 209, 0.3);
}

.btn-text {
  color: var(--accent-teal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.btn-text:after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-text:hover:after {
  transform: translateX(5px);
}

/* 
====================================
   Section Styles
====================================
*/
section {
  padding: var(--section-spacing) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--text-color);
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background-image: url("./img/p4Cka.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.9),
    rgba(17, 24, 39, 0.7)
  );
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.image-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 209, 0.3);
}

/* Benefits Section */
.benefits {
  background-color: rgba(0, 0, 0, 0.2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 209, 0.3);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  max-width: 100%;
  max-height: 100%;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 209, 0.3);
}

.service-image {
  height: 200px;
  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.1);
}

.service-card h3 {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}

.service-card p {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card .btn-text {
  margin: 0 1.5rem 1.5rem;
}

/* Stats Section */
.stats {
  background-color: rgba(0, 0, 0, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
}

/* Testimonials Section */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 209, 0.3);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-teal);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.7;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.process-step {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 209, 0.3);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--accent-teal);
  color: var(--dark-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background-color: rgba(0, 0, 0, 0.2);
}

.form-container {
  margin: 0 auto;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  font-size: 1rem;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.form-group select option {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 2px rgba(0, 255, 209, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  font-weight: normal;
  font-size: 0.9rem;
}

.submit-group {
  margin-top: 2rem;
  text-align: center;
}

.submit-group button {
  width: 100%;
  padding: 15px;
}

.error-message {
  background-color: rgba(244, 63, 94, 0.2);
  border: 1px solid var(--accent-pink);
  color: var(--text-color);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  text-align: center;
}

/* Map Section */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 
====================================
   Footer
====================================
*/
footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info p {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-nav h4 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h4:after,
.footer-nav h4:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-teal);
}

.footer-links ul li,
.footer-nav ul li {
  margin-bottom: 0.8rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0;
}

/* 
====================================
   Cookie Consent
====================================
*/
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 1.5rem;
  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: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

/* 
====================================
   Policy Pages
====================================
*/
.policy-page {
  padding-top: 120px;
  padding-bottom: 5rem;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.policy-header p {
  color: var(--accent-teal);
}

.policy-content {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-teal);
}

.policy-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

.policy-footer {
  text-align: center;
  margin-top: 3rem;
}

.cookie-table {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
  background-color: rgba(255, 255, 255, 0.05);
  text-align: left;
}

/* 
====================================
   Thank You Page
====================================
*/
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 8rem auto 5rem;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.thank-you-icon img {
  width: 100%;
}

.thank-you-content h1 {
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  margin-bottom: 2rem;
}

.thank-you-actions {
  margin-top: 2rem;
}

/* 
====================================
   Responsive Design
====================================
*/
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .policy-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 4rem;
  }

  .menu-icon {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-color);
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
    padding-top: 80px;
  }

  .menu-toggle:checked ~ nav {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 3rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .thank-you-content {
    padding: 2rem 1rem;
    margin: 6rem auto 3rem;
  }
}
