/* ============================================
   ZTOI TECH - Clean Professional Design
   Matching Reference Screenshot Exactly
   ============================================ */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

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

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

/* Color Variables - Clean minimal palette */
:root {
  /* Primary Colors */
  --primary: #ff4d00;
  --primary-hover: #e64500;
  --primary-light: rgba(255, 77, 0, 0.08);
  --primary-glow: rgba(255, 77, 0, 0.15);

  /* Neutral Colors */
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --gray-700: #4a4a4a;
  --gray-600: #6b6b6b;
  --gray-500: #8c8c8c;
  --gray-400: #ababab;
  --gray-300: #d4d4d4;
  --gray-200: #e8e8e8;
  --gray-100: #f5f5f5;
  --cream: #faf9f6;
  --white: #ffffff;

  /* Semantic Colors */
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;

  /* Shadows - Softer */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  background-color: var(--cream);
  overflow-x: hidden;
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--gray-600);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

/* ============================================
   Navigation - Clean Header Design
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

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

/* Logo - Orange ZTOI TECH text */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1002;
}

.nav-logo:hover {
  opacity: 0.9;
}

.logo {
  height: 40px;
  width: auto;
  transition: var(--transition-normal);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Made nav font bigger for desktop/laptop */
.nav-link {
  position: relative;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--black);
}

.nav-link.active {
  color: var(--primary);
}

/* Orange underline for active nav */
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* CTA Button in Nav */
.nav-cta {
  margin-left: 20px;
  padding: 12px 28px !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.5px !important;
}

.nav-cta::after {
  display: none !important;
}

/* Nav Overlay - for closing mobile menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger Menu - Improved positioning */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  border-radius: 8px;
  transition: var(--transition-normal);
  /* Ensure hamburger is properly positioned */
  position: relative;
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--gray-100);
}

.hamburger:focus {
  outline: none;
}

.hamburger-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 18px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  left: 0;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/* Hamburger Active State */
.hamburger.active .hamburger-inner {
  background: transparent;
}

.hamburger.active .hamburger-inner::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ============================================
   Hero Section - Clean Minimal Design
   ============================================ */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  background-color: #fcfbf9;
}

/* Subtle gradient overlay */
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(255, 77, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#globe-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Lowest level */
    opacity: 0.6; /* Controls overall fade */
    pointer-events: none; /* Crucial: allows you to click buttons underneath */
}

/* Large bold heading */
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 0 8px;
}

/* Hero buttons - Desktop layout */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* New row for call + explore on mobile */
.hero-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ============================================
   Buttons - Pill Shaped
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn i {
  font-size: 1rem;
  transition: var(--transition-normal);
}

/* Primary Button - Filled Orange */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(255, 77, 0, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.35);
}

/* Secondary Button - Now with orange hover background */
.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.25);
}

/* Outline Button - Orange Tint */
.btn-outline {
  background: rgba(255, 77, 0, 0.04);
  color: var(--black);
  border-color: rgba(255, 77, 0, 0.25);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.25);
}

.btn-outline:hover i {
  color: var(--white);
}

.btn-outline i {
  color: var(--primary);
}

/* Icon Only Button */
.btn-icon {
  width: 56px;
  height: 56px;
  padding: 0;
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(255, 77, 0, 0.25);
  flex-shrink: 0;
}

.btn-icon:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.35);
}

.btn-icon i {
  font-size: 1.2rem;
}

.btn-full {
  width: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(255, 77, 0, 0.35);
  z-index: 997;
  transition: var(--transition-normal);
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 32px rgba(255, 77, 0, 0.45);
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 50px 0;
  position: relative;
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Service Cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: var(--transition-normal);
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.08);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--primary);
  transform: scale(1.05);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  transition: var(--transition-normal);
}

.service-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.service-card.featured .service-btn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.service-card.featured .service-btn:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* ============================================
   Feature Cards
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 40px 24px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.25);
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 77, 0, 0.35);
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.story-text h3 {
  font-size: 2.25rem;
  color: var(--black);
  margin-bottom: 24px;
  font-weight: 800;
}

.story-text p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.company-stat {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
}

.company-stat:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-500);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.value-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.25);
  transition: var(--transition-normal);
}

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

.value-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.value-card h4 {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 12px;
  font-weight: 700;
}

.value-card p {
  color: var(--gray-500);
  line-height: 1.7;
}

/* Mission Vision */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
}

.mv-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.25);
}

.mv-icon i {
  font-size: 1.35rem;
  color: var(--white);
}

.mv-card h3 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 16px;
  font-weight: 700;
}

.mv-card p {
  color: var(--gray-500);
  line-height: 1.8;
}

/* Team Section */
.team-section h3 {
  font-size: 2rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 800;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-member {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
}

.team-member:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 32px rgba(255, 77, 0, 0.25);
  transition: var(--transition-normal);
}

.team-member:hover .member-avatar {
  transform: scale(1.05);
}

.member-avatar i {
  font-size: 2.5rem;
  color: var(--white);
}

.team-member h4 {
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
}

.member-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.member-bio {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.member-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--gray-500);
  text-align: left;
}

.detail-item i {
  color: var(--primary);
  width: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.member-social a {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: var(--transition-normal);
}

.member-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-intro h3 {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 16px;
  font-weight: 800;
}

.contact-intro p {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-methods {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255, 77, 0, 0.2);
  transition: var(--transition-normal);
}

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

.contact-icon i {
  color: var(--white);
  font-size: 1.1rem;
}

.contact-details h4 {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-details p {
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-cta {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
}

.contact-cta h4 {
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-cta p {
  color: var(--gray-500);
  margin-bottom: 16px;
}

.emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  transition: var(--transition-normal);
}

.emergency-phone:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form-container {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  /* Added padding-bottom for better spacing */
  padding-bottom: 48px;
}

.contact-form h3 {
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 700;
  /* Added padding-bottom to the title */
  padding-bottom: 16px;
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  accent-color: var(--primary);
  cursor: pointer;
}

.privacy-link {
  color: var(--primary);
  font-weight: 600;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* ============================================
   Booking Page Styles - Professional redesign
   ============================================ */
.booking-content {
  max-width: 900px;
  margin: 0 auto;
}

.booking-form-container {
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.booking-form-container h3,
.contact-form h3 {
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 700;
}

.booking-form-container .form-subtitle {
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* Improved service selection grid */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.service-option {
  position: relative;
}

.service-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-normal);
}

.service-option label:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.service-option label i {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 12px;
  transition: var(--transition-normal);
}

.service-option label span {
  font-weight: 600;
  color: var(--black);
  font-size: 0.9rem;
}

.service-option input:checked + label {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(255, 77, 0, 0.25);
}

.service-option input:checked + label i,
.service-option input:checked + label span {
  color: var(--white);
}

/* Form Section Divider */
.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin: 32px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title i {
  color: var(--primary);
}

/* ============================================
   Privacy & Terms Pages
   ============================================ */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-container {
  background: var(--white);
  padding: 60px;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
}

.legal-container h2 {
  font-size: 1.5rem;
  color: var(--black);
  margin: 40px 0 16px;
  font-weight: 700;
}

.legal-container h2:first-of-type {
  margin-top: 0;
}

.legal-container p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-container ul {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-container li {
  margin-bottom: 8px;
}

.legal-container strong {
  color: var(--black);
}

.legal-container a {
  color: var(--primary);
  font-weight: 600;
}

.legal-container a:hover {
  text-decoration: underline;
}

.last-updated {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

/* ============================================
   Alerts
   ============================================ */
.alert {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 1001;
  max-width: 500px;
  width: calc(100% - 48px);
  animation: slideDown 0.4s ease;
  box-shadow: var(--shadow-lg);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.alert-success {
  background: var(--white);
  border: 2px solid var(--success);
  color: var(--success);
}

.alert-error {
  background: var(--white);
  border: 2px solid var(--error);
  color: var(--error);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-logo-section .logo-text {
  color: var(--primary);
  font-size: 1.5rem;
}

.footer-contact-info {
  margin-top: 24px;
}

.footer-contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-contact-info .contact-item i {
  color: var(--primary);
  margin-top: 4px;
  width: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-bottom-links a {
  color: var(--gray-400);
  transition: var(--transition-normal);
}

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

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.scroll-animate:nth-child(1) {
  transition-delay: 0.05s;
}
.scroll-animate:nth-child(2) {
  transition-delay: 0.1s;
}
.scroll-animate:nth-child(3) {
  transition-delay: 0.15s;
}
.scroll-animate:nth-child(4) {
  transition-delay: 0.2s;
}
.scroll-animate:nth-child(5) {
  transition-delay: 0.25s;
}
.scroll-animate:nth-child(6) {
  transition-delay: 0.3s;
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */

/* Tablet and below */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-container {
    padding: 40px;
  }
}

/* Mobile Navigation - Fixed hamburger menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-container {
    padding: 16px 20px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 24px 40px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu-inner {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-link {
    width: 100%;
    padding: 18px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
    text-align: left;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--primary);
  }

  .nav-cta {
    margin: 24px 0 0 0;
    width: 100%;
    text-align: center;
    padding: 16px 24px !important;
  }

  /* Hero Mobile - Full viewport height */
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 120px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.85rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1.0rem;
    margin-bottom: 40px;
    line-height: 1.7;
  }

  /* Hero buttons - call icon + explore on same row, portfolio below */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons-row .btn-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .hero-buttons-row .btn-secondary {
    flex: 1;
    max-width: 200px;
    padding: 16px 28px;
  }

  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
    padding: 16px 28px;
  }

  /* Sections Mobile */
  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Grids Mobile */
  .services-grid,
  .features-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Service select grid - 2 columns on mobile */
  .service-select-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  /* Cards Mobile */
  .service-card,
  .feature-card,
  .value-card,
  .team-member,
  .mv-card {
    padding: 32px 24px;
  }

  /* Footer Mobile */
  .footer {
    padding: 60px 0 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-contact-info .contact-item {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    gap: 24px;
  }

  /* Contact/Booking Mobile */
  .contact-form-container,
  .booking-form-container {
    padding: 32px 24px;
  }

  /* Legal Pages Mobile */
  .legal-container {
    padding: 32px 24px;
  }

  .legal-container h2 {
    font-size: 1.25rem;
  }

  /* WhatsApp Mobile */
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 14px 16px;
  }

  .logo {
    height: 36px;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  /* Ensure hero is full height on small mobile */
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 110px 16px 40px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.99rem;
    margin-bottom: 32px;
  }

  /* Smaller buttons on small mobile */
  .hero-buttons-row .btn-icon {
    width: 52px;
    height: 52px;
  }

  .hero-buttons-row .btn-secondary {
    padding: 14px 20px;
    font-size: 0.8rem;
  }

  .hero-buttons .btn-outline {
    max-width: 260px;
    padding: 14px 24px;
    font-size: 0.8rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-card,
  .feature-card,
  .value-card,
  .team-member,
  .mv-card {
    padding: 28px 20px;
  }

  .contact-form-container,
  .booking-form-container {
    padding: 24px 20px;
    border-radius: 20px;
  }

  /* Service select grid - still 2 columns but smaller */
  .service-select-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .service-option label {
    padding: 16px 10px;
  }

  .service-option label i {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .service-option label span {
    font-size: 0.75rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.8rem;
  }

  .whatsapp-btn {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .legal-container {
    padding: 24px 20px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 100px 12px 30px;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .nav-menu {
    width: 100%;
    max-width: none;
  }

  .hero-buttons-row {
    gap: 10px;
  }

  .hero-buttons-row .btn-icon {
    width: 48px;
    height: 48px;
  }

  .hero-buttons-row .btn-secondary {
    padding: 12px 16px;
    font-size: 0.75rem;
  }

  .hero-buttons .btn-outline {
    max-width: 100%;
    padding: 12px 20px;
    font-size: 0.75rem;
  }

  .service-option label {
    padding: 14px 8px;
  }

  .service-option label i {
    font-size: 1.2rem;
  }

  .service-option label span {
    font-size: 0.7rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .whatsapp-btn,
  .footer,
  .hamburger {
    display: none;
  }

  body {
    font-size: 12pt;
    background: white;
  }

  .section {
    padding: 20px 0;
  }
}
