/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Inter:wght@400;500;700&family=JetBrains+Mono:wght@400;700&display=swap');

/* --- CSS Custom Properties (Root Variables) --- */
:root {
  --color-primary: #FF4757;
  --color-secondary: #2ECC71;
  --color-accent: #3498DB;
  --color-dark: #1A1F2E;
  --color-light: #F5F7FA;
  --color-text: #E0E6F0;
  --color-text-muted: #98A6BD;
  --font-title: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --spacing-section: 120px;
  --border-radius: 12px;
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.3);
  --gradient: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #1A1F2E 0%, #293043 50%, #1A1F2E 100%);
  animation: gradient-animation 20s ease infinite;
  background-size: 400% 400%;
  z-index: -2;
}

@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.25rem); }

p {
  margin-bottom: var(--spacing-md);
  max-width: 75ch;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

.section {
  padding: var(--spacing-section) 0;
  position: relative;
  overflow: hidden;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.wave-divider.top {
    top: -1px;
    bottom: auto;
    transform: rotate(0deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.wave-divider .shape-fill {
  fill: #212738; /* Matches next section's potential bg */
}
#section-alt .wave-divider .shape-fill {
    fill: var(--color-dark);
}

#section-alt {
    background-color: #212738;
}

.btn {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-image: var(--gradient);
  color: var(--color-light);
  border: none;
  box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(1); box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6); }
  100% { transform: scale(1); box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4); }
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 71, 87, 0.5);
  color: white;
}
.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: var(--spacing-md) 0;
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

.logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo span { color: var(--color-primary); }

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--spacing-xl);
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
  padding: var(--spacing-sm) 0;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
    color: var(--color-light);
    font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-light);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* --- Hero Section --- */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--spacing-section) 0;
  background-image: url('https://images.pexels.com/photos/4056883/pexels-photo-4056883.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-page {
    min-height: 40vh;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 46, 0.7);
  background: linear-gradient(0deg, var(--color-dark) 0%, rgba(26, 31, 46, 0.5) 50%, rgba(26, 31, 46, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: var(--spacing-lg) auto var(--spacing-xl);
}
.hero-content .subtitle {
    font-family: var(--font-title);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Glassmorphism Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(255, 71, 87, 0.3);
}

.card-icon {
  font-size: 3rem;
  display: inline-block;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-card h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-light);
}
.glass-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}
.card-img-top img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin: -32px -32px 24px -32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- About/Content Section --- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}
.content-split .image-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}
.content-split .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Testimonials Section --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}
.testimonial-card {
  border-left: 4px solid;
  border-image: var(--gradient) 1;
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: var(--spacing-md);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
}
.author-info strong {
  display: block;
  color: var(--color-light);
}
.author-info span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.text-center { text-align: center; }
.text-center h2 { margin-bottom: var(--spacing-xxl); }


/* --- CTA Section --- */
.cta-section {
  background: var(--gradient);
  padding: var(--spacing-xxl) 0;
  text-align: center;
  color: var(--color-light);
  border-radius: var(--border-radius);
  margin: var(--spacing-section) 0;
}
.cta-section h2 {
  color: var(--color-light);
  text-shadow: none;
}
.cta-section .btn-secondary {
    border-color: var(--color-light);
    color: var(--color-light);
}
.cta-section .btn-secondary:hover {
    background-color: var(--color-light);
    color: var(--color-primary);
}

/* --- Footer --- */
.site-footer {
  background-color: #121622;
  padding: var(--spacing-xxl) 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-top: 2px solid;
  border-image: var(--gradient) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-xl);
}
.footer-column h4 {
  font-family: var(--font-title);
  color: var(--color-light);
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: var(--spacing-sm);
}
.footer-links a {
  color: var(--color-text-muted);
}
.footer-links a:hover {
  color: var(--color-primary);
  padding-left: var(--spacing-sm);
}
.footer-socials {
    display: flex;
    gap: var(--spacing-md);
}
.footer-socials a {
    font-size: 1.5rem;
    color: var(--color-text-muted);
}
.footer-bottom {
  margin-top: var(--spacing-xxl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

/* --- Disclaimer Section --- */
.disclaimer-section {
  background-color: rgba(0,0,0,0.2);
  color: var(--color-text-muted);
  padding: var(--spacing-lg) var(--spacing-xl);
  margin: var(--spacing-xl) auto 0 auto;
  border-radius: var(--border-radius);
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1280px;
}
.disclaimer-section p {
    margin-bottom: 0;
}
.disclaimer-section strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-family: var(--font-title);
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: flex-start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}
.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--spacing-sm);
    padding: var(--spacing-md);
    color: var(--color-light);
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
}
textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}
.contact-info-item .icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 5px;
}
.contact-info-item p { margin-bottom: 0; }
.contact-info-item a { color: var(--color-text); }
.contact-info-item a:hover { color: var(--color-primary); }

.map-container {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Thank You Page --- */
.thank-you-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(255,71,87,0.5);
}

.thank-you-icon svg {
  width: 50px;
  height: 50px;
  color: white;
}

.thank-you-section h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.thank-you-section p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 30px;
}

/* --- Legal Pages (Terms & Privacy) --- */
.legal-content h2 {
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-md);
    font-size: 1.8rem;
    color: var(--color-primary);
}
.legal-content h3 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
    color: var(--color-accent);
}
.legal-content ul, .legal-content ol {
    margin-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

/* --- Cookie Banner --- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(5px);
  padding: var(--spacing-lg);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  z-index: 9999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

#cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
#cookie-banner a {
  color: var(--color-accent);
}
#cookie-banner-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-shrink: 0;
}
#cookie-banner .btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
}
#cookie-banner .btn-primary { animation: none; }
#cookie-banner .btn-primary:hover { transform: none; box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4); }

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .content-split {
        grid-template-columns: 1fr;
    }
    .content-split .image-container {
        order: -1;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

  .nav-links.open {
    right: 0;
  }
  
  .nav-links a {
      font-size: 1.2rem;
  }

  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.open .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-toggle.open .icon-bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.open .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
    
  #cookie-banner {
      flex-direction: column;
      text-align: center;
  }
  
  .section {
      padding: var(--spacing-xxl) 0;
  }

  .map-container {
      height: 350px;
  }
}