/* ============================================
   TAWFEEQOH HAMZAT - LUXURY GLOBAL STYLES
   Premium Personal Brand Website
   ============================================ */

/* CSS Variables - Luxury Color System */
:root {
  /* Background Colors */
  --bg-primary: #F6F4EF;
  --bg-secondary: #0B0B0C;
  --bg-cream: #FAF8F3;
  
  /* Accent Colors */
  --accent-periwinkle: #7B6CFF;
  --accent-periwinkle-light: #9B8FFF;
  --accent-periwinkle-dark: #5A4FD9;
  
  /* Text Colors */
  --text-primary: #111114;
  --text-secondary: #6E6E73;
  --text-light: #FFFFFF;
  --text-muted: #9E9EA3;
  
  /* Gradient Colors */
  --gradient-blob-a: rgba(200, 215, 255, 0.55);
  --gradient-blob-b: rgba(255, 220, 235, 0.45);
  --gradient-blob-c: rgba(230, 245, 255, 0.40);
  
  /* Shadows */
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.15);
  --shadow-button: 0 8px 24px rgba(123, 108, 255, 0.35);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
  
  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection Styling */
::selection {
  background-color: var(--accent-periwinkle);
  color: var(--text-light);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-periwinkle);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-periwinkle-dark);
}

/* ============================================
   GRADIENT BACKGROUND & TEXTURE
   ============================================ */

.gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  background: var(--bg-primary);
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-a {
  width: 60vw;
  height: 60vw;
  background: var(--gradient-blob-a);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.blob-b {
  width: 50vw;
  height: 50vw;
  background: var(--gradient-blob-b);
  bottom: -15%;
  left: -10%;
  animation-delay: -7s;
}

.blob-c {
  width: 45vw;
  height: 45vw;
  background: var(--gradient-blob-c);
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5%, 5%) scale(1.05);
  }
  50% {
    transform: translate(-3%, 8%) scale(0.95);
  }
  75% {
    transform: translate(-5%, -3%) scale(1.02);
  }
}

/* Paper Grain Overlay */
.paper-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(48px, 6vw, 104px);
}

h2 {
  font-size: clamp(40px, 5vw, 80px);
}

h3 {
  font-size: clamp(32px, 4vw, 56px);
}

h4 {
  font-size: clamp(24px, 3vw, 40px);
}

h5 {
  font-size: clamp(20px, 2vw, 28px);
}

h6 {
  font-size: clamp(16px, 1.5vw, 20px);
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.text-display {
  font-family: var(--font-display);
  font-weight: 700;
}

.text-italic {
  font-style: italic;
}

.text-accent {
  color: var(--accent-periwinkle);
}

.text-light {
  color: var(--text-light);
}

.text-muted {
  color: var(--text-muted);
}

.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-periwinkle);
  color: var(--text-light);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background: var(--accent-periwinkle-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(123, 108, 255, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--text-light);
  color: var(--text-primary);
}

.btn-light:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-secondary);
  color: var(--text-light);
}

.btn-dark:hover {
  background: #1a1a1e;
  transform: translateY(-2px);
}

.btn-text {
  background: transparent;
  color: var(--text-primary);
  padding: 0.5rem 0;
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-periwinkle);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.btn-text:hover::after {
  transform: scaleX(1);
}

/* Sticky CTA Button */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  padding: 1rem 2rem;
  background: var(--accent-periwinkle);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-button);
  text-decoration: none;
  transition: all var(--transition-medium);
  animation: pulse 2s ease-in-out infinite;
}

.sticky-cta:hover {
  background: var(--accent-periwinkle-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(123, 108, 255, 0.5);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(123, 108, 255, 0.35);
  }
  50% {
    box-shadow: 0 8px 32px rgba(123, 108, 255, 0.55);
  }
}

/* ============================================
   CARDS & IMAGES
   ============================================ */

.card {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
  transition: all var(--transition-medium);
}

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

.image-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-card:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: var(--shadow-hover);
}

.image-card:hover img {
  transform: scale(1.03);
}

/* ============================================
   FORMS
   ============================================ */

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

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--text-light);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-periwinkle);
  box-shadow: 0 0 0 4px rgba(123, 108, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' 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 1rem center;
  background-size: 1.25rem;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-medium);
}

.nav.scrolled {
  background: rgba(246, 244, 239, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 4vw;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-logo:hover {
  color: var(--accent-periwinkle);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-periwinkle);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.75rem 1.5rem;
  background: var(--accent-periwinkle);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-medium);
}

.nav-cta:hover {
  background: var(--accent-periwinkle-dark);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-medium);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Full Screen Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

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

.menu-links {
  list-style: none;
  text-align: center;
}

.menu-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color var(--transition-fast);
  position: relative;
}

.menu-link:hover {
  color: var(--accent-periwinkle);
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent-periwinkle);
  transition: all var(--transition-medium);
  transform: translateX(-50%);
}

.menu-link:hover::after {
  width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-secondary);
  color: var(--text-light);
  padding: 6rem 8vw 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-light);
}

.footer-tagline {
  color: var(--text-muted);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all var(--transition-medium);
}

.footer-social:hover {
  background: var(--accent-periwinkle);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  transition: color var(--transition-fast);
}

.footer-link a:hover {
  color: var(--accent-periwinkle);
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-email {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  transition: color var(--transition-fast);
}

.footer-email:hover {
  color: var(--accent-periwinkle);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-light);
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */

.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.exit-popup.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup-content {
  background: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-medium);
}

.exit-popup.active .exit-popup-content {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.exit-popup-close:hover {
  color: var(--text-primary);
}

.exit-popup-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 1rem;
}

.exit-popup-text {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ============================================
   AI CHATBOT
   ============================================ */

.chatbot-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 100;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  background: var(--accent-periwinkle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 24px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: all var(--transition-medium);
}

.chatbot-toggle:hover {
  background: var(--accent-periwinkle-dark);
  transform: scale(1.05);
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 380px;
  max-height: 500px;
  background: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chatbot-header {
  background: var(--accent-periwinkle);
  color: var(--text-light);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 18px;
  transition: opacity var(--transition-fast);
}

.chatbot-close:hover {
  opacity: 0.7;
}

.chatbot-messages {
  padding: 1.5rem;
  max-height: 320px;
  overflow-y: auto;
}

.chatbot-message {
  margin-bottom: 1rem;
  animation: messageSlide 0.3s ease;
}

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

.chatbot-message-bot {
  background: var(--bg-primary);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-bottom-left-radius: 4px;
}

.chatbot-message-user {
  background: var(--accent-periwinkle);
  color: var(--text-light);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-bottom-right-radius: 4px;
  margin-left: auto;
  max-width: 80%;
}

.chatbot-input-area {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 0.75rem;
}

.chatbot-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.chatbot-input:focus {
  border-color: var(--accent-periwinkle);
}

.chatbot-send {
  width: 40px;
  height: 40px;
  background: var(--accent-periwinkle);
  border: none;
  border-radius: 50%;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.chatbot-send:hover {
  background: var(--accent-periwinkle-dark);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8vw;
}

.container-narrow {
  max-width: 1000px;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-dark {
  background: var(--bg-secondary);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--text-light);
}

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

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

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

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

.animate-fadeInDown {
  animation: fadeInDown 0.6s ease forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.6s ease forwards;
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .nav {
    padding: 1rem 4vw;
  }
  
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .chatbot-window {
    width: 340px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
  }
  
  .footer {
    padding: 4rem 6vw 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .sticky-cta {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 13px;
  }
  
  .chatbot-widget {
    bottom: 1.5rem;
    left: 1.5rem;
  }
  
  .chatbot-toggle {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
  
  .chatbot-window {
    width: calc(100vw - 3rem);
    max-width: 360px;
    left: 0;
  }
  
  .exit-popup-content {
    padding: 2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 5vw;
  }
  
  .btn {
    padding: 0.875rem 2rem;
    font-size: 13px;
  }
  
  .card {
    border-radius: var(--radius-md);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .gradient-blob {
    animation: none;
  }
  
  .sticky-cta {
    animation: none;
  }
}