/* Main Styles */
:root {
  --primary-bg: #0D0D0D;
  --secondary-bg: #1F1F1F;
  --accent: #FB3640;
  --text: #FFFFFF;
  --gradient-start: #FB3640;
  --gradient-end: #FFD369;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text);
  line-height: 1.6;
}

.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;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Header Styles */
header {
  background-color: var(--secondary-bg);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.logo img {
  height: 100%;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.7)), url('./img/hT5J41.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 70px;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: var(--text);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--secondary-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

/* Approach Section */
.approach {
  padding: 100px 0;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--secondary-bg);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  flex: 1 0 calc(33.333% - 30px);
  background-color: var(--primary-bg);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: var(--accent);
  margin-bottom: 15px;
}

.service-image {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
}

.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 ul {
  margin-top: 15px;
  padding-left: 20px;
}

.service-card ul li {
  margin-bottom: 8px;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.benefit-item {
  flex: 1 0 calc(25% - 30px);
  text-align: center;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  fill: var(--text);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background-image: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.8)), url('./img/3ciLyw.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* Form Section */
.contact-form {
  padding: 100px 0;
  background-color: var(--secondary-bg);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: var(--primary-bg);
  color: var(--text);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check input {
  margin-right: 10px;
  margin-top: 5px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--primary-bg);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.faq .section-title {
  margin-bottom: 60px;
}

.faq-item {
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background-color: var(--secondary-bg);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  background-color: var(--secondary-bg);
  padding: 25px 30px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  display: flex;
  align-items: center;
}

.faq-item:hover .faq-question {
  border-left: 4px solid var(--accent);
}

.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(251, 54, 64, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover .faq-question::before {
  opacity: 1;
}

.faq-question::after {
  content: '+';
  min-width: 24px;
  height: 24px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--accent);
  transition: all 0.4s ease;
  font-weight: 300;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
  background-color: var(--primary-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
  padding: 25px 30px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question {
  background-color: var(--secondary-bg);
  border-left: 4px solid var(--accent);
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::before {
  opacity: 1;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 600px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
  font-weight: 400;
  color: var(--text);
  background-color: var(--accent);
  font-size: 1.5rem;
}

/* Footer */
footer {
  background-color: var(--secondary-bg);
  padding: 50px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1 0 calc(25% - 30px);
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 100%;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 30px;
  height: 30px;
  fill: var(--text);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-bg);
  padding: 15px;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-popup.hidden {
  display: none;
}

/* Thank You Page */
.thank-you {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
}

.thank-you-content {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thank-you-content h1 {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.thank-you-text {
  width: 100%;
  text-align: center;
}

.thank-you-text p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.thank-you-button {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.thank-you-button .btn {
  display: inline-block;
}

/* Media Queries */
@media (max-width: 992px) {
  .service-card {
    flex: 1 0 calc(50% - 30px);
  }
  
  .benefit-item {
    flex: 1 0 calc(50% - 30px);
  }
  
  .footer-section {
    flex: 1 0 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: -100%;
    width: 250px;
    background-color: var(--secondary-bg);
    padding: 20px;
    transition: right 0.3s ease;
  }
  
  nav ul.active {
    right: 0;
  }
  
  nav ul li {
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .service-card, 
  .benefit-item,
  .footer-section {
    flex: 1 0 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
} 