:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fdba74;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #f9fafb;
  --text: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --radius: 0.5rem;
  --radius-lg: 0.875rem;
  --font: 'Inter', 'Open Sans', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-align: center;
  justify-content: center;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: 1px solid #c2410c;
  box-shadow: 0 2px 8px rgba(249,115,22,0.35);
}

.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(249,115,22,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(249,115,22,0.12);
  color: var(--primary-dark);
  border: 1px solid rgba(249,115,22,0.2);
}

.badge-muted {
  background: var(--bg-alt);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.badge-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0.75rem 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-header h2 .accent {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0.5rem auto 0;
  line-height: 1.7;
}

.section-divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  border-radius: 4px;
  margin: 0.85rem auto 0;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: var(--shadow-lg); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  height: 66px;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 1px;
}

.brand-pcs {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--primary);
  line-height: 1;
  text-transform: uppercase;
}

.brand-bc {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--text-secondary);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.footer .brand-pcs { color: #fff; }
.footer .brand-bc { color: #64748b; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.navbar-links a:hover { color: var(--text); }
.navbar-links a:hover::after { transform: scaleX(1); }

.navbar-cta { margin-left: 0.5rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .mobile-toggle { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,15,30,0.88) 0%, rgba(10,15,30,0.7) 50%, rgba(10,15,30,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 9rem 0 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(249,115,22,0.18);
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fdba74;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-content h1 .highlight {
  background: linear-gradient(to right, #fb923c, #fdba74);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: #bfcfe8;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  flex: 1;
  min-width: 80px;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: heroScrollPulse 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 0.75rem; }
  .hero-stat-value { font-size: 1.5rem; }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.trust-item-icon svg { width: 18px; height: 18px; }

/* ===== SPACES ===== */
.spaces-section { padding: 6rem 0; }

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .spaces-grid { grid-template-columns: 1fr; }
}

.spaces-grid .card {
  overflow: hidden;
}

.spaces-grid .card:hover {
  transform: translateY(-4px);
}

.space-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.space-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.spaces-grid .card:hover .space-card-img img {
  transform: scale(1.04);
}

.space-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 50%);
}

.space-card-price {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
}

.space-card-price .badge {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 2px 8px rgba(249,115,22,0.4);
}

.space-card-body { padding: 1.5rem; }
.space-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.space-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.space-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.space-features .badge { font-size: 0.75rem; }

.feature-check {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.feature-check svg { width: 14px; height: 14px; color: var(--primary); }

/* ===== AMENITIES ===== */
.amenities-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }

.amenity-card {
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249,115,22,0.14) 0%, rgba(249,115,22,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  border: 1.5px solid rgba(249,115,22,0.2);
  transition: background 0.2s, transform 0.2s;
}

.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, rgba(249,115,22,0.22) 0%, rgba(249,115,22,0.1) 100%);
  transform: scale(1.1);
}

.amenity-icon svg { width: 26px; height: 26px; }
.amenity-card h3 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; }
.amenity-card p { color: var(--text-secondary); font-size: 0.83rem; line-height: 1.5; }

/* ===== WHY US STRIP ===== */
.whyus-section {
  padding: 6rem 0;
  background: #0f172a;
  overflow: hidden;
  position: relative;
}

.whyus-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
  pointer-events: none;
}

.whyus-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(249,115,22,0.08), transparent 70%);
  pointer-events: none;
}

.whyus-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.whyus-header .badge-white-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 1rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.whyus-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.whyus-header p {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) { .whyus-grid { grid-template-columns: 1fr; } }

.whyus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.2s, border-color 0.2s;
}

.whyus-card:hover {
  background: rgba(249,115,22,0.06);
  border-color: rgba(249,115,22,0.2);
}

.whyus-card-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: monospace;
}

.whyus-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.whyus-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== LOUNGE BANNER ===== */
.lounge-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.lounge-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lounge-section .hero-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2));
}

.lounge-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.lounge-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.lounge-content p {
  color: #bfcfe8;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ===== PRICING ===== */
.pricing-section { padding: 6rem 0; background: var(--bg-alt); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, rgba(249,115,22,0.04) 0%, #fff 60%);
  box-shadow: 0 8px 32px rgba(249,115,22,0.15);
  transform: translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.popular-badge .badge {
  background: linear-gradient(to right, #f97316, #ea580c);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(249,115,22,0.4);
}

.pricing-card h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
.pricing-card .plan-desc { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1.25rem; }

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.25rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}

.pricing-amount .currency { font-size: 1.1rem; font-weight: 600; color: var(--primary); }
.pricing-amount .amount { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.04em; }
.pricing-period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.pricing-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(226,232,240,0.5);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 6rem 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  right: 18px;
  font-size: 8rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.07;
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  font-weight: 700;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
  color: #f59e0b;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-section { padding: 6rem 0; background: var(--bg-alt); }

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

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.03em;
}

.contact-info > p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  transition: background 0.2s;
}

.contact-item:hover { background: rgba(249,115,22,0.04); }

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item h4 { font-weight: 700; margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

.contact-form-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.contact-form-card .form-subtitle {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-control {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

textarea.form-control { resize: vertical; min-height: 100px; }

select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2rem; }

.alert {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== FOOTER ===== */
.footer {
  background: #0c1220;
  border-top: none;
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-about .navbar-brand span { color: #fff; }
.footer-about p { color: #64748b; font-size: 0.875rem; line-height: 1.7; margin-top: 0.85rem; }

.footer h4 {
  font-weight: 600;
  margin-bottom: 1.1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
}

.footer ul li { padding: 0.3rem 0; }
.footer ul li a {
  color: #64748b;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer ul li a:hover { color: var(--primary-light); }
.footer ul li:not(:has(a)) { color: #64748b; font-size: 0.875rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: #475569; }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #334155;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
