/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

:root {
  /* Theme: Creative Modern (Navy/Teal/Gold) */
  --primary-navy: #0f172a;
  --primary-teal: #0d9488;
  --accent-gold: #f59e0b;
  --dark-bg: #1e293b;
  --light-text: #f8fafc;
  --dark-text: #334155;
  --white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --gradient-main: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  --gradient-btn: linear-gradient(90deg, #0d9488 0%, #0f766e 100%);

  --radius: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--primary-navy);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.container {
  width: min(1500px, 92%);
  margin-inline: auto;
}

/* Header */
.header {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 60px;
  filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.3));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #94a3b8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #cbd5e1;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn-primary {
  background: var(--gradient-btn);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.6);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.25rem;
}

/* Hero */
.hero {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 0 0 500px;
  max-width: 100%;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Abstract Shapes */
.abstract-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-teal);
  top: -100px;
  right: -100px;
  animation: float 10s infinite alternate;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-gold);
  bottom: 0;
  left: -100px;
  animation: float 12s infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(20px, 40px);
  }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
  text-align: left;
}

.section-header.center {
  text-align: center;
}

.section-alt {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
}

/* Wavy Dividers */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-bottom::after {
  content: "";
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' style='fill:%231e293b;fill-opacity:1'/%3E%3C/svg%3E");
  background-size: cover;
}

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

/* Cards */
.feature-grid,
.teaser-grid,
.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card,
.teaser-card {
  background: var(--gradient-card);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover,
.teaser-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal);
}

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-teal);
  font-weight: 600;
}

/* Page Specifics */
.page-hero {
  background: var(--gradient-main);
  padding: 6rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.contact-section {
  background: var(--dark-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-text {
  font-size: 1.1rem;
  color: #94a3b8;
}

.contact-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  border-left: 4px solid var(--accent-gold);
}

.contact-box a {
  color: var(--primary-teal);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  color: var(--dark-text);
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  padding: 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-family: var(--font-body);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* Footer */
.footer {
  background: #020617;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  color: #64748b;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-nav a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-text {
    flex: auto;
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}