/* Global Styles */
:root {
  --deep-navy: #061a40;
  --lavender: #b388eb;
  --warm-gold: #fcbf49;
  --soft-white: #f4f4f9;
  --grayish-white: #c7c7c7;
  --vivid-coral: #ff4d6d;
  --transparent-white: #ffffff30;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--deep-navy), var(--lavender));
  color: var(--soft-white);
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

a {
  color: var(--soft-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--warm-gold);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--vivid-coral);
  color: var(--soft-white);
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.btn:hover {
  background-color: #ff365a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 77, 109, 0.5);
  color: var(--soft-white);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--warm-gold);
  color: var(--warm-gold);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--warm-gold);
  color: var(--deep-navy);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 26, 64, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--soft-white);
}

.logo span {
  color: var(--warm-gold);
}

/* Navigation */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--warm-gold);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top right, var(--deep-navy), transparent);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--transparent-white);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  color: var(--grayish-white);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* About Section */
.about {
  padding: 100px 0;
  position: relative;
  background-color: rgba(6, 26, 64, 0.7);
}

.about::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, transparent, var(--deep-navy));
}

.about .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.about-text {
  padding-right: 20px;
  margin-top: 10px;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: rgba(179, 136, 235, 0.1);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top left, transparent, var(--deep-navy));
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--warm-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid var(--transparent-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: var(--warm-gold);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.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 {
  color: var(--warm-gold);
  margin: 20px 0 15px;
  padding: 0 30px;
}

.service-card p {
  color: var(--grayish-white);
  margin-bottom: 20px;
  padding: 0 30px;
}

.service-card .btn {
  margin: 0 30px 30px;
  display: inline-block;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background-color: rgba(6, 26, 64, 0.8);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, transparent, rgba(6, 26, 64, 0.8));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid var(--transparent-white);
}

.testimonial-card:nth-child(odd) {
  background: rgba(179, 136, 235, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -30px;
  left: -10px;
  opacity: 0.2;
  color: var(--warm-gold);
}

.client-info {
  display: flex;
  align-items: center;
}

.client-info h4 {
  margin-bottom: 0;
  color: var(--warm-gold);
}

.client-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: rgba(179, 136, 235, 0.1);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top left, transparent, rgba(6, 26, 64, 0.8));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid var(--transparent-white);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--warm-gold);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--warm-gold);
}

.benefit-item h3 {
  margin-bottom: 15px;
}

.benefit-item p {
  color: var(--grayish-white);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #071e46, #b388eb);
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, transparent, rgba(179, 136, 235, 0.1));
}

.cta h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
}

/* Form Section */
.contact {
  padding: 100px 0;
  background-color: rgba(6, 26, 64, 0.7);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top left, transparent, rgba(179, 136, 235, 0.1));
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--transparent-white);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
  color: var(--grayish-white);
}

.form-control {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--transparent-white);
  border-radius: 10px;
  color: var(--soft-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--warm-gold);
  box-shadow: 0 0 15px rgba(252, 191, 73, 0.3);
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: var(--warm-gold);
  background: rgba(6, 26, 64, 0.8);
  padding: 0 5px;
}

select.form-control {
  appearance: none;
  cursor: pointer;
  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 15px top 50%;
  padding-right: 45px;
  color: var(--soft-white);
}

select.form-control option {
  background-color: var(--deep-navy);
  color: var(--soft-white);
  padding: 10px;
}

select.form-control:focus {
  border-color: var(--warm-gold);
  box-shadow: 0 0 15px rgba(252, 191, 73, 0.5);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--grayish-white);
}

.checkbox-group a {
  color: var(--warm-gold);
  text-decoration: underline;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: rgba(179, 136, 235, 0.1);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom right, transparent, rgba(6, 26, 64, 0.7));
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--transparent-white);
}

.faq-question {
  padding: 20px;
  display: block;
  width: 100%;
  text-align: left;
  color: var(--soft-white);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border: none;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 20px;
  color: var(--grayish-white);
}

/* Footer */
footer {
  background-color: var(--deep-navy);
  padding: 60px 0 20px;
  color: var(--soft-white);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top left, var(--deep-navy), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--soft-white);
}

.footer-logo span {
  color: var(--warm-gold);
}

.footer-info p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--grayish-white);
}

.footer-links h4 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--warm-gold);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--grayish-white);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--warm-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--grayish-white);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(6, 26, 64, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  transition: bottom 0.5s ease;
  z-index: 1000;
  border-top: 1px solid var(--transparent-white);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-accept {
  white-space: nowrap;
}

/* Legal Page Styles */
.legal-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--transparent-white);
  margin: 50px auto;
  max-width: 900px;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 30px;
}

.legal-content h2 {
  margin-top: 30px;
  color: var(--warm-gold);
}

.legal-content ul, 
.legal-content ol {
  margin: 20px 0 20px 30px;
}

.legal-content li {
  margin-bottom: 10px;
}

/* Gracias Page */
.gracias {
  text-align: center;
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gracias-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--transparent-white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.gracias h1 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.gracias p {
  margin-bottom: 20px;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.gracias .hero-buttons {
  margin-top: 30px;
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .container {
    width: 95%;
  }
  
  .hero {
    height: auto;
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 26, 64, 0.95);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    z-index: 100;
  }
  
  nav ul.show {
    display: flex;
  }
  
  nav ul li {
    margin: 0;
    text-align: center;
  }
  
  nav ul li a {
    display: block;
    padding: 15px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-image {
    order: -1;
  }

  .hero-buttons {
    justify-content: center;
  }
  
  .about-content,
  .services-grid,
  .testimonials-grid,
  .benefits-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .about-text {
    order: 2;
    padding-right: 0;
  }
  
  .about-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .gracias-card {
    padding: 30px 20px;
  }
  
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: 20px;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
}