/* Global Styles */
:root {
  --primary-bg: #0A0F2C;
  --accent-color: #F2994A;
  --secondary-color: #20C997;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B3C3;
  --button-gradient: linear-gradient(to right, #F2994A, #F2C94C);
}

/* Fix horizontal scrolling */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-gradient);
  color: var(--text-primary);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

section {
  padding: 80px 0;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(10, 15, 44, 0.9);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo span {
  color: var(--accent-color);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 15, 44, 0.8); /* Darker overlay for better text readability */
  z-index: 0;
}

.hero-content {
  max-width: 800px;
  z-index: 5; /* Increased z-index to bring content forward */
  text-align: center;
  margin: 0 auto;
  position: relative; /* Add relative positioning */
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Add text shadow */
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); /* Add text shadow */
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* Add text shadow */
}

.hero-image {
  display: none;
}

/* Make the button pop more */
.hero .btn {
  box-shadow: 0 4px 12px rgba(242, 153, 74, 0.3); /* Add shadow to button */
  position: relative;
  z-index: 10;
}

/* About Section */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-bg);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefit-icon {
  min-width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-bg);
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-study {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
}

.case-study img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(10, 15, 44, 0.9), transparent);
  padding: 20px;
  transform: translateY(70%);
  transition: transform 0.5s ease;
}

.case-study:hover img {
  transform: scale(1.1);
}

.case-study:hover .case-study-overlay {
  transform: translateY(0);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(242, 153, 74, 0.1), rgba(32, 201, 151, 0.1));
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.pricing-duration {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-features {
  margin-bottom: 30px;
  list-style: none;
}

.pricing-features li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--secondary-color);
  margin-right: 8px;
}

/* Plan Selection Squares */
.pricing-squares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.pricing-square {
  display: none; /* Hide the actual radio input */
}

.pricing-square-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  position: relative;
}

.pricing-square-label:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

.pricing-square:checked + .pricing-square-label {
  border-color: var(--accent-color);
  background: rgba(242, 153, 74, 0.2);
  box-shadow: 0 5px 15px rgba(242, 153, 74, 0.2);
  transform: translateY(-3px);
}

.pricing-square-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.pricing-square-price {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.pricing-square-duration {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Make the professional option stand out */
#professional + .pricing-square-label {
  background: linear-gradient(135deg, rgba(242, 153, 74, 0.1), rgba(32, 201, 151, 0.1));
  transform: scale(1.05);
  border-color: rgba(242, 153, 74, 0.3);
}

#professional + .pricing-square-label::after {
  content: 'Popular';
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
}

/* Order Form Section */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.form-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 40px 30px;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Make the textarea full width */
.form-group:has(textarea) {
  grid-column: span 2;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-checkbox input {
  margin-right: 10px;
}

.form-submit {
  grid-column: span 2;
  text-align: center;
}

/* Footer Section */
footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-company p {
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.contact-info {
  list-style: none;
  margin-bottom: 20px;
}

.contact-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  margin-right: 10px;
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookies Popup */
#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 15, 44, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: calc(100% - 40px); /* Ensure it's never wider than the viewport minus margins */
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#cookie-popup.show {
  display: block;
  opacity: 1;
}

#cookie-popup p {
  margin-bottom: 15px;
}

#cookie-popup-actions {
  display: flex;
  justify-content: space-between;
}

#accept-cookies {
  background: var(--button-gradient);
}

#cookie-more-info {
  background: rgba(255, 255, 255, 0.1);
}

/* Thank You Page */
.thank-you-container {
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px; /* Adding more padding to prevent overlap with the fixed header */
  margin-bottom: 50px;
}

.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: var(--secondary-color);
  stroke-miterlimit: 10;
  margin: 0 auto 30px;
  box-shadow: 0 0 0 var(--secondary-color);
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

/* Policy Pages */
.policy-container {
  max-width: 900px;
  margin: 120px auto 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 40px;
}

.policy-container h1 {
  margin-bottom: 30px;
}

.policy-container h2 {
  margin-top: 40px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.policy-container p,
.policy-container ul {
  margin-bottom: 20px;
}

.policy-container ul {
  margin-left: 20px;
}

.policy-container ul li {
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-grid,
  .case-studies-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-image {
    opacity: 0.3;
    width: 100%;
    right: -20%;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .about-grid,
  .benefits-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-submit {
    grid-column: span 1;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav ul {
    position: absolute;
    flex-direction: column;
    background: var(--primary-bg);
    width: 100%;
    top: 80px;
    left: 0;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  nav ul.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .form-container {
    max-width: 100%;
  }
  
  .form-section {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .services-grid,
  .case-studies-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  /* Display pricing squares vertically on mobile */
  .pricing-squares {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  /* Fix form padding */
  .form-section {
    padding: 30px 20px;
  }
  
  /* Adjust other mobile styles */
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .policy-container {
    padding: 30px 20px;
  }
  
  #cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

/* Media queries for the form */
@media (max-width: 992px) {
  .form-container {
    max-width: 700px;
  }
}

.form-section .pricing-squares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.form-section .pricing-square-label {
  padding: 12px 10px;
}

.form-section .pricing-square-price {
  font-size: 1.1rem;
}

.form-section .pricing-square-duration {
  font-size: 0.7rem;
}

/* Adjust form spacing */
.form-section h2 {
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.form-section p {
  margin-bottom: 25px;
}

/* Make the form elements more compact */
.form-group {
  margin-bottom: 15px;
}

/* Form section at mobile size */
@media (max-width: 576px) {
  .form-section .pricing-squares {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .form-section h2 {
    font-size: 1.8rem;
  }
} 