/* General Styles */
:root {
  --primary-bg: #161b2e;
  --accent-yellow: #ffc857;
  --accent-teal: #36cfc9;
  --text-white: #ffffff;
  --text-light: #d3d3d3;
  --gradient: linear-gradient(145deg, #36cfc9, #ffc857);
  --card-bg: rgba(255, 255, 255, 0.07);
  --border-radius: 16px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  --font-main: 'Poppins', sans-serif;
  --section-padding: 100px 0;
  --card-padding: 35px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-main);
  background-color: var(--primary-bg);
  color: var(--text-white);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: var(--section-padding);
}

h1, h2, h3, h4, h5 {
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.75rem;
  position: relative;
  margin-bottom: 50px;
}

h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--accent-teal);
  text-decoration: none;
}

a:hover {
  color: var(--accent-yellow);
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gradient);
  color: var(--primary-bg);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn:hover {
  opacity: 0.9;
  color: var(--primary-bg);
}

.text-center {
  text-align: center;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(22, 27, 46, 0.95);
  backdrop-filter: blur(15px);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 32px;
  color: var(--text-white);
  position: relative;
}

.logo:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-teal);
  border-radius: 50%;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--text-white);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient);
  opacity: 0;
}

.nav-menu a:hover::after {
  width: 100%;
  opacity: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 27, 46, 0.8);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
	font-size: 3rem;
    font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: -2px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background-color: rgba(255, 255, 255, 0.02);
}

.about-content {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
}

.about-text {
  flex: 1;
  font-size: 18px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
  height: 100%;
}

.about-card h3 {
  color: var(--accent-teal);
  position: relative;
  padding-bottom: 15px;
}

.about-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-yellow);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card-content {
  padding: var(--card-padding);
}

.service-card h3 {
  color: var(--accent-teal);
}

/* Benefits Section */
.benefits-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  font-size: 24px;
  color: var(--primary-bg);
  font-weight: bold;
}

.benefit-item h3 {
  margin-bottom: 10px;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.step {
  text-align: center;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 32px;
  margin: 0 auto 25px;
  color: var(--primary-bg);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.testimonial-content {
  padding: var(--card-padding);
}

.testimonial-card p {
  font-style: italic;
  position: relative;
  padding-left: 25px;
}

.testimonial-card p:before {
  content: """;
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 50px;
  color: var(--accent-teal);
  opacity: 0.5;
  line-height: 1;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.client-name {
  font-weight: 700;
  font-size: 18px;
}

.client-position {
  font-size: 14px;
  color: var(--accent-teal);
}

/* Form Section */
.form-section {
  background: rgba(255, 255, 255, 0.02);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 16px;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-teal);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 50px;
}

select.form-control option {
  background-color: var(--primary-bg);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 15px;
  margin-top: 6px;
  width: 18px;
  height: 18px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  margin-top: 10px;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-title {
  display: block;
  padding: 20px 30px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  box-shadow: var(--shadow);
}

.faq-title::after {
  content: "+";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--accent-teal);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.faq-content-inner {
  padding: 30px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-content {
  max-height: 500px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-title::after {
  content: "−";
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-logo:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent-teal);
  border-radius: 50%;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-legal {
  margin: 40px 0;
}

.footer-legal .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-legal .footer-links li {
  margin-bottom: 0;
}

.footer-contact p {
  margin-bottom: 15px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--text-light);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(22, 27, 46, 0.97);
  padding: 30px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(10px);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  padding-right: 40px;
}

.cookie-buttons {
  flex-shrink: 0;
}

/* Policy Pages */
.policy-page {
  background-color: #fff;
  color: #333;
  padding: 120px 0 80px;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
  color: var(--primary-bg);
    font-size: 1.8rem;
  border-bottom: 3px solid var(--accent-teal);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.policy-container h2 {
  color: var(--primary-bg);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.policy-container h2:after {
  display: none;
}

.policy-container h3 {
  color: var(--primary-bg);
  margin-top: 30px;
}

.policy-container p, .policy-container ul, .policy-container ol {
  margin-bottom: 20px;
  line-height: 1.8;
}

.policy-container ul, .policy-container ol {
  padding-left: 30px;
}

/* Thank You Page */
.thank-you {
      margin: 5rem auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.thank-you-content {
  max-width: 700px;
  padding: 60px;
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.thank-you-content h1 {
  color: var(--accent-teal);
  margin-bottom: 30px;
}

.thank-you-content .btn {
  margin-top: 20px;
}

/* Media Queries */
@media (max-width: 1200px) {
  :root {
    --section-padding: 80px 0;
    --card-padding: 30px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  
}

@media (max-width: 992px) {
  :root {
    --section-padding: 70px 0;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  

  .hero p {
    font-size: 1.3rem;
  }

  .services-grid, 
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --card-padding: 25px;
  }

  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero {
    min-height: 600px;
  }

  

  .hero p {
    font-size: 1.1rem;
  }

  .hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
  }
  
  .hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
  }
  
  .hamburger span:nth-child(1) {
    top: 0;
  }
  
  .hamburger span:nth-child(2) {
    top: 9px;
  }
  
  .hamburger span:nth-child(3) {
    top: 18px;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 75px);
    background-color: var(--primary-bg);
    flex-direction: column;
    padding: 40px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    gap: 20px;
  }
  
  .nav-menu li {
    margin: 0;
  }

  .nav-menu a {
    display: block;
    font-size: 18px;
  }
  
  #menu-toggle:checked ~ .nav-menu {
    right: 0;
  }
  
  #menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  #menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  #menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-cards,
  .services-grid, 
  .testimonials-grid,
  .benefits-content {
    grid-template-columns: 1fr;
  }

  .footer-content,
  .footer-legal .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .cookie-text {
    padding-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }

  .policy-container {
    padding: 30px;
  }

  .thank-you-content {
    padding: 40px 20px;
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 50px 0;
    --card-padding: 20px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2rem;
        font-weight: 300;
		margin-top: 5rem;
  }
  
  .btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    margin: 0 auto 15px;
  }
} 