
:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --sand: #f5f0e8;
  --sand-dark: #e8e0d4;
  --coral: #e85d4a;
  --coral-dark: #c94a3a;
  --gold: #d4a853;
  --white: #ffffff;
  --text: #334155;
  --text-light: #64748b;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,23,42,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}

.logo {
  font-size: 1.5rem; font-weight: 800; color: var(--white);
  text-decoration: none; letter-spacing: -0.5px;
}
.logo span { color: var(--coral); }

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 500;
  font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--coral); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.mobile-toggle {
  display: none; background: none; border: none; color: var(--white);
  font-size: 1.5rem; cursor: pointer;
}

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.4);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px;
}
.hero-badge {
  display: inline-block; padding: 8px 20px; border: 1px solid var(--coral);
  color: var(--coral); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 50px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px;
}
.hero h1 span { color: var(--coral); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.8);
  margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  text-decoration: none; font-size: 0.95rem; letter-spacing: 0.5px;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary {
  background: var(--coral); color: var(--white);
  box-shadow: 0 4px 15px rgba(232,93,74,0.4);
}
.btn-primary:hover {
  background: var(--coral-dark); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,93,74,0.5);
}
.btn-outline {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--coral); color: var(--coral); }

/* Sections */
.section { padding: 100px 24px; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }

.container { max-width: 1280px; margin: 0 auto; }

.section-header {
  text-align: center; max-width: 640px; margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-header p { color: var(--text-light); font-size: 1.1rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* Cards */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%; height: 240px; object-fit: cover;
}
.card-body { padding: 28px; }
.card-body h3 {
  font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--navy);
}
.card-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.card-price {
  font-size: 1.5rem; font-weight: 800; color: var(--coral);
}
.card-price span {
  font-size: 0.85rem; color: var(--text-light); font-weight: 500;
}

/* Features */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.feature-item {
  text-align: center; padding: 32px 24px;
  border-radius: 16px; transition: all 0.3s ease;
}
.feature-item:hover { background: rgba(232,93,74,0.05); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem; color: var(--white);
}
.feature-item h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy);
}
.section-dark .feature-item h3 { color: var(--white); }
.feature-item p { font-size: 0.9rem; color: var(--text-light); }
.section-dark .feature-item p { color: rgba(255,255,255,0.6); }

/* Image Gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(15,23,42,0.8));
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; }

/* CTA Banner */
.cta-banner {
  position: relative; padding: 120px 24px; text-align: center;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(15,23,42,0.75);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3rem); color: var(--white); font-weight: 800;
  margin-bottom: 20px;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; }

/* Footer */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.6); padding: 80px 24px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px; max-width: 1280px; margin: 0 auto 64px;
}
.footer-brand h3 {
  font-size: 1.5rem; color: var(--white); margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--coral); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4 {
  color: var(--white); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral); }

.social-links {
  display: flex; gap: 12px; margin-top: 20px;
}
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center; color: var(--white);
  text-decoration: none; font-size: 1rem; transition: all 0.3s;
}
.social-links a:hover {
  background: var(--coral); transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px; text-align: center; font-size: 0.85rem;
  max-width: 1280px; margin: 0 auto;
}

/* Map */
.map-container {
  width: 100%; height: 400px; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* Form */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--navy);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--sand-dark);
  border-radius: 12px; font-size: 0.95rem; transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--coral);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--navy); flex-direction: column;
    padding: 24px; gap: 16px; display: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.active { display: flex; }
  .mobile-toggle { display: block; }
  .section { padding: 60px 16px; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* Breadcrumb */
.breadcrumb {
  padding: 100px 24px 40px; background: var(--navy-light);
  color: var(--white);
}
.breadcrumb .container { max-width: 1280px; margin: 0 auto; }
.breadcrumb h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.breadcrumb nav { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb nav a { color: var(--coral); text-decoration: none; }

/* Content */
.content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.content h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 16px; color: var(--navy); }
.content p { margin-bottom: 16px; color: var(--text); }
.content ul { margin-left: 24px; margin-bottom: 16px; }
.content li { margin-bottom: 8px; }

/* Promo Badge */
.promo-badge {
  display: inline-block; background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white); padding: 4px 12px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stats */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px; text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem; font-weight: 800; color: var(--coral); line-height: 1;
}
.stat-item p { font-size: 0.9rem; color: var(--text-light); margin-top: 8px; }

/* Two Column */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.two-col img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}
