/* ============================================
   Keeggi - Food Delivery Platform
   Static CSS Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
  /* Keeggi Brand Colors - Orange, Red, Purple */
  --background: hsl(30, 25%, 98%);
  --foreground: hsl(280, 40%, 15%);
  
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(280, 40%, 15%);
  
  /* Primary - Vibrant Orange (from logo) */
  --primary: hsl(18, 100%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  
  /* Secondary - Purple/Magenta (from logo cart) */
  --secondary: hsl(280, 60%, 35%);
  --secondary-foreground: hsl(0, 0%, 100%);
  
  /* Muted - Soft Gray */
  --muted: hsl(30, 15%, 94%);
  --muted-foreground: hsl(280, 20%, 40%);
  
  /* Accent - Deep Red (from logo gradient) */
  --accent: hsl(0, 85%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  
  /* Success - Fresh Green */
  --success: hsl(142, 70%, 45%);
  --success-foreground: hsl(0, 0%, 100%);
  
  --border: hsl(280, 15%, 88%);
  
  /* Custom gradients matching logo */
  --gradient-hero: linear-gradient(135deg, hsl(18, 100%, 55%) 0%, hsl(0, 85%, 50%) 50%, hsl(320, 70%, 40%) 100%);
  --gradient-warm: linear-gradient(180deg, hsl(30, 25%, 98%) 0%, hsl(280, 20%, 96%) 100%);
  --gradient-brand: linear-gradient(90deg, hsl(18, 100%, 55%) 0%, hsl(0, 85%, 50%) 50%, hsl(320, 70%, 40%) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(280, 40%, 15%, 0.08);
  --shadow-card: 0 8px 32px -8px hsla(280, 40%, 15%, 0.12);
  --shadow-elevated: 0 16px 48px -12px hsla(280, 40%, 15%, 0.18);
  --shadow-glow: 0 8px 32px -8px hsla(18, 100%, 55%, 0.3);
  
  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-sans: 'DM Sans', sans-serif;
  
  /* Border Radius */
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ============================================
   Layout Utilities
   ============================================ */
.container-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-main {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-main {
    padding: 0 2rem;
  }
}

.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.grid {
  display: grid;
}

/* ============================================
   Backgrounds & Gradients
   ============================================ */
.gradient-hero {
  background: var(--gradient-hero);
}

.gradient-warm {
  background: var(--gradient-warm);
}

.bg-background {
  background-color: var(--background);
}

.bg-card {
  background-color: var(--card);
}

.bg-foreground {
  background-color: var(--foreground);
}

.bg-muted {
  background-color: var(--muted);
}

/* ============================================
   Text Utilities
   ============================================ */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-foreground { color: var(--foreground); }
.text-background { color: var(--background); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-success { color: var(--success); }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ============================================
   Shadow Utilities
   ============================================ */
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-elevated { box-shadow: var(--shadow-elevated); }
.shadow-glow { box-shadow: var(--shadow-glow); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px hsla(18, 100%, 55%, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--muted);
}

.btn-hero {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px hsla(18, 100%, 55%, 0.4);
}

.btn-hero-outline {
  background: hsla(0, 0%, 100%, 0.15);
  color: var(--background);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  background: hsla(0, 0%, 100%, 0.25);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo img {
  height: 3rem;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .header-logo img {
    height: 3.5rem;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--primary);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--muted);
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  animation: fadeIn 0.3s ease;
}

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

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: hsla(18, 100%, 55%, 0.1);
  color: var(--primary);
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

.mobile-menu-cta .btn {
  width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--foreground);
  color: var(--background);
}

.footer-container {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-brand p {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-brand img {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-item span {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
}

.footer-contact-item .small {
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.5);
}

.footer-legal p {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-legal .label {
  display: block;
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.5);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.875rem;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  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(to right, 
    hsla(280, 40%, 15%, 0.95) 0%, 
    hsla(280, 40%, 15%, 0.8) 50%, 
    hsla(280, 40%, 15%, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  padding: 5rem 0;
  animation: slideUp 0.6s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: hsla(18, 100%, 55%, 0.2);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--background);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

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

.hero-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
}

/* ============================================
   Features Section
   ============================================ */
.features {
  background: var(--background);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: hsla(18, 100%, 55%, 0.1);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-badge.success {
  background: hsla(142, 70%, 45%, 0.1);
  color: var(--success);
}

.section-header h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  background: var(--gradient-warm);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  text-align: center;
}

.step-icon-wrapper {
  position: relative;
  display: inline-flex;
  margin-bottom: 2rem;
}

.step-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--card);
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.05);
}

.step-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-glow);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--muted-foreground);
  max-width: 18rem;
  margin: 0 auto;
}

/* Connection line between steps */
.step:not(:last-child)::after {
  display: none;
  content: '';
  position: absolute;
  top: 4rem;
  left: 60%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, hsla(18, 100%, 55%, 0.5), transparent);
}

@media (min-width: 768px) {
  .step:not(:last-child)::after {
    display: block;
  }
}

/* ============================================
   App Download Section
   ============================================ */
.app-download {
  background: var(--background);
  overflow: hidden;
}

.app-download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .app-download-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.app-download h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .app-download h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .app-download h2 {
    font-size: 3rem;
  }
}

.app-download-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--foreground);
  color: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.app-badge:hover {
  transform: scale(1.02);
}

.app-badge:active {
  transform: scale(0.98);
}

.app-badge svg {
  width: 2rem;
  height: 2rem;
}

.app-badge-text {
  text-align: left;
}

.app-badge-text small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}

.app-badge-text span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2;
}

.app-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.app-stats .stars {
  color: var(--primary);
}

.app-stats .divider {
  color: var(--border);
}

.app-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .app-mockup-wrapper {
    justify-content: flex-end;
  }
}

.app-mockup {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.app-mockup-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  filter: blur(48px);
  opacity: 0.2;
  border-radius: 50%;
  transform: scale(0.75);
}

.app-mockup img {
  position: relative;
  width: 18rem;
  filter: drop-shadow(0 25px 50px hsla(0, 0%, 0%, 0.25));
}

@media (min-width: 640px) {
  .app-mockup img {
    width: 20rem;
  }
}

@media (min-width: 1024px) {
  .app-mockup img {
    width: 24rem;
  }
}

/* ============================================
   Trust Section
   ============================================ */
.trust {
  background: var(--gradient-warm);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

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

.trust-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(142, 70%, 45%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.trust-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--success);
}

.trust-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.trust-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.compliance-notice {
  margin-top: 4rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: center;
}

.compliance-notice p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.compliance-notice .small {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* ============================================
   Contact Page
   ============================================ */
.page-hero {
  padding: 5rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero p {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.8);
  max-width: 36rem;
  margin: 0 auto;
}

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

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

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

@media (min-width: 1024px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

.contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(18, 100%, 55%, 0.1);
}

.form-input {
  height: 3rem;
}

.form-textarea {
  resize: none;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.contact-card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-card-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-card-content .small {
  font-size: 0.75rem;
}

.map-placeholder {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-placeholder-inner {
  aspect-ratio: 16/9;
  background: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
}

.map-placeholder-inner svg {
  width: 3rem;
  height: 3rem;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.map-placeholder-inner p {
  font-size: 0.875rem;
}

.map-placeholder-inner .small {
  font-size: 0.75rem;
}

/* ============================================
   Policy Pages
   ============================================ */
.policy-content {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .policy-content {
    padding: 3rem;
  }
}

.policy-date {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.policy-section ul {
  list-style: disc;
  list-style-position: inside;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-contact-box {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--muted-foreground);
}

.policy-contact-box p {
  margin-bottom: 0.5rem;
}

.policy-contact-box p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Contact Page
   ============================================ */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  color: var(--background);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero p {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.8);
  max-width: 42rem;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-info-left h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.contact-info-left > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.contact-card-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-card-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-card-content .small {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  opacity: 0.7;
}

.contact-map-right {
  position: relative;
  min-height: 400px;
}

@media (min-width: 1024px) {
  .contact-map-right {
    min-height: 600px;
  }
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .map-container {
    min-height: 600px;
  }
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ============================================
   Animations
   ============================================ */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
