/*
Theme Name: Solvinger Impact Launch
Description: A modern, responsive WordPress theme based on the Solvinger React application. Features include multi-language support, custom sections for services, projects, and contact forms, with a beautiful gradient design system.
Author: Solvingers
Version: 1.0.0
Text Domain: solvinger-impact
License: GPL v2 or later
Tags: one-page, business, responsive, modern, gradient, tech, portfolio
*/

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

/* Solvinger Design System - Modern Digital Agency Colors */
:root {
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  
  --popover: 0 0% 100%;
  --popover-foreground: 222 47% 11%;
  
  /* Primary: Modern tech blue */
  --primary: 234 89% 74%;
  --primary-foreground: 0 0% 100%;
  --primary-dark: 234 89% 64%;
  --primary-light: 234 89% 84%;
  
  /* Secondary: Deep tech navy */
  --secondary: 222 47% 11%;
  --secondary-foreground: 0 0% 100%;
  
  /* Muted: Soft grays */
  --muted: 220 13% 96%;
  --muted-foreground: 220 9% 46%;
  
  /* Accent: Vibrant gradient colors */
  --accent: 280 100% 70%;
  --accent-foreground: 0 0% 100%;
  --accent-secondary: 320 100% 75%;
  
  /* Success/CTA green */
  --success: 142 76% 36%;
  --success-foreground: 0 0% 100%;
  
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  
  --border: 220 13% 91%;
  --input: 220 13% 91%;
  --ring: 234 89% 74%;
  
  /* Custom Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(234 89% 74%), hsl(280 100% 70%));
  --gradient-hero: linear-gradient(135deg, hsl(234 89% 74%) 0%, hsl(280 100% 70%) 50%, hsl(320 100% 75%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(0 0% 100%), hsl(220 13% 98%));
  --gradient-dark: linear-gradient(135deg, hsl(222 47% 11%), hsl(222 47% 8%));
  
  /* Shadows */
  --shadow-soft: 0 4px 20px hsl(234 89% 74% / 0.1);
  --shadow-medium: 0 8px 30px hsl(234 89% 74% / 0.15);
  --shadow-strong: 0 20px 60px hsl(234 89% 74% / 0.2);
  --shadow-glow: 0 0 40px hsl(234 89% 74% / 0.3);
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius: 0.5rem;
}

/* Dark mode variables */
.dark {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;
  --card: 222.2 84% 4.9%;
  --card-foreground: 210 40% 98%;
  --popover: 222.2 84% 4.9%;
  --popover-foreground: 210 40% 98%;
  --primary: 210 40% 98%;
  --primary-foreground: 222.2 47.4% 11.2%;
  --secondary: 217.2 32.6% 17.5%;
  --secondary-foreground: 210 40% 98%;
  --muted: 217.2 32.6% 17.5%;
  --muted-foreground: 215 20.2% 65.1%;
  --accent: 217.2 32.6% 17.5%;
  --accent-foreground: 210 40% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 210 40% 98%;
  --border: 217.2 32.6% 17.5%;
  --input: 217.2 32.6% 17.5%;
}

/* Base HTML Elements */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
}

p {
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

a {
  color: hsl(var(--primary));
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: hsl(var(--primary-dark));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: hsl(var(--primary-dark));
  transform: translateY(-2px);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem; /* Reduce horizontal padding for mobile */
  font-size: 1rem; /* Smaller font size for mobile */
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 160px; /* Reduce minimum width for mobile */
  max-width: 280px; /* Add max-width to prevent text overflow */
  backdrop-filter: blur(10px);
  white-space: nowrap; /* Prevent text wrapping */
  text-align: center;
}

@media (min-width: 640px) {
  .btn-hero {
    padding: 1rem 2rem; /* Restore full padding on larger screens */
    font-size: 1.125rem; /* Restore full font size on larger screens */
    min-width: 200px; /* Restore full width on larger screens */
  }
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.btn-hero > * {
  position: relative;
  z-index: 1;
}

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

.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Cards */
.card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
}

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

.card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-glass:hover {
  background: rgba(255, 255, 255, 0.15);
}

.card-elegant {
  background: linear-gradient(145deg, hsl(var(--card)), hsl(var(--muted)));
  border: 1px solid hsl(var(--border));
}

.card-elegant:hover {
  border-color: hsl(var(--primary));
}

/* Text Gradients */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-lg {
  padding: 6rem 0;
}

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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(var(--primary));
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

.nav-menu a {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}

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

.nav-menu a:hover {
  color: hsl(var(--primary));
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    hsl(var(--primary)) 0%, 
    hsl(var(--primary-secondary)) 25%, 
    hsl(var(--accent)) 50%, 
    hsl(var(--accent-secondary)) 75%, 
    hsl(var(--primary)) 100%);
  overflow: hidden;
  padding: 2rem 1rem; /* Original padding */
  padding-top: 6rem; /* Add top padding to avoid header overlap */
  padding-bottom: 10px; /* Add bottom padding */
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 140, 248, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-element {
  display: none; /* Hide all background elements on all screen sizes */
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  position: relative;
  z-index: 3;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 2rem; /* Increase padding slightly on larger screens */
  }
}

.hero-main-title {
  margin-bottom: 3rem;
  margin-top: 2rem; /* Add top margin for better spacing */
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0;
  color: #ffffff; /* Use solid white color instead of gradient for better visibility */
  letter-spacing: -0.02em;
}

.hero-title .text-gradient {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  /* Remove the old shadow effect */
}

.hero-title .text-gradient::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.3; /* Reduce opacity for subtle effect */
}

.hero-offer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem 1.5rem; /* Reduce padding for mobile */
  margin: 0 auto 3rem auto;
  max-width: 700px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
  .hero-offer {
    padding: 2.5rem; /* Restore full padding on larger screens */
  }
}

.hero-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.4) 50%, 
    transparent 100%);
}

.hero-offer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 193, 7, 0.1) 0%,
    rgba(255, 152, 0, 0.05) 30%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-offer:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 32px 64px -12px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-offer .text-gradient {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-offer {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}
.text-accent {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.text-accent {
  background: linear-gradient(
    135deg,
    hsl(var(--success)),
    hsl(var(--success) / 0.8),
    hsl(var(--success) / 0.6)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}


.hero-image {
  margin: 0 auto 3rem auto;
  max-width: 600px;
  position: relative;
}

.hero-bottom-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-strong);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 140, 248, 0.3); }
  50% { box-shadow: 0 0 40px rgba(139, 140, 248, 0.6); }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Spacing Utilities */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem !important;; padding-bottom: 4rem !important; }

/* Text Utilities */
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

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

/* Footer */
.footer {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding-top: 10px; /* Add top padding */
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer a {
  color: hsl(var(--secondary-foreground));
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) { 
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-lg {
    padding: 3rem 0;
  }
}

/* WordPress Block Styles */
.wp-block-group {
  margin-bottom: 2rem;
}

.wp-block-image {
  margin-bottom: 1.5rem;
}

.wp-block-image img {
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
}

/* Accessibility */
.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;
}

/* Language Switcher */
.language-switcher {
  margin-left: auto;
}

.language-switcher select {
  padding: 0.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--input));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}

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

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: white;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsl(var(--border));
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.mobile-nav-menu {
  list-style: none;
}

.mobile-nav-menu li {
  margin-bottom: 1rem;
}

.mobile-nav-menu a {
  display: block;
  padding: 0.75rem 0;
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid hsl(var(--border));
  transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
  color: hsl(var(--primary));
}

.mobile-menu-footer {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

/* Active Navigation State */
.nav-menu a.active,
.mobile-nav-menu a.active {
  color: hsl(var(--primary));
}

.nav-menu a.active::after {
  width: 100%;
}

/* Header CTA */
.header-cta {
  margin-left: 1rem;
}

@media (max-width: 1024px) {
  .header-cta {
    display: none;
  }
}

/* Utility Classes */
.w-full { width: 100%; }
.h-auto { height: auto; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
.h-6 { height: 1.5rem; }
.w-6 { width: 1.5rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.h-16 { height: 4rem; }
.w-16 { width: 4rem; }
.h-48 { height: 12rem; }

.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-24 { margin-top: 6rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }

.ml-auto { margin-left: auto; }
.h-3 { height: 0.75rem; }
.w-3 { width: 0.75rem; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }

.p-1 { padding: 0.25rem; }
.p-8 { padding: 2rem; }
.pt-4 { padding-top: 1rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-4 { padding-bottom: 1rem; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 50%; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-white { color: rgb(255 255 255); }
.text-red-500 { color: rgb(239 68 68); }
.text-red-800 { color: rgb(153 27 27); }
.text-green-500 { color: rgb(34 197 94); }
.text-green-800 { color: rgb(22 101 52); }
.text-orange-500 { color: rgb(249 115 22); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-700 { color: rgb(55 65 81); }

.bg-red-100 { background-color: rgb(254 226 226); }
.bg-green-100 { background-color: rgb(220 252 231); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-primary { --tw-gradient-from: hsl(var(--primary)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-accent { --tw-gradient-to: hsl(var(--accent)); }

.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-red-300 { border-color: rgb(252 165 165); }
.border-green-300 { border-color: rgb(134 239 172); }

.cursor-pointer { cursor: pointer; }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:opacity-100:hover { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:bg-primary { background-color: hsl(var(--primary)); }
.group:hover .group-hover\:text-white { color: white; }
.group:hover .group-hover\:border-primary { border-color: hsl(var(--primary)); }
.group:hover .group-hover\:text-primary { color: hsl(var(--primary)); }

.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* Responsive Utilities */
@media (max-width: 768px) {
  .md\:flex { display: flex !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:flex-row { flex-direction: row !important; }
}

@media (min-width: 640px) {
  .mdhidden { display: none }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:text-right { text-align: right; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:p-12 { padding: 3rem; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Animations */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Form Validation */
.character-counter {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: right;
  margin-top: 0.25rem;
}

.form-input.error,
.form-textarea.error {
  border-color: hsl(var(--destructive));
  box-shadow: 0 0 0 3px hsl(var(--destructive) / 0.1);
}

.error-message {
  color: hsl(var(--destructive));
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Additional Spacing */
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }

/* Text Opacity */
.text-white\/80 { color: rgb(255 255 255 / 0.8); }
.text-white\/60 { color: rgb(255 255 255 / 0.6); }

/* Background Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-secondary { --tw-gradient-from: hsl(var(--secondary)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-secondary\/90 { --tw-gradient-to: hsl(var(--secondary) / 0.9); }

.from-primary\/20 { --tw-gradient-from: hsl(var(--primary) / 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-accent\/20 { --tw-gradient-to: hsl(var(--accent) / 0.2); }

.bg-white\/10 { background-color: rgb(255 255 255 / 0.1); }
.bg-white\/20 { background-color: rgb(255 255 255 / 0.2); }

.border-white\/20 { border-color: rgb(255 255 255 / 0.2); }

/* Additional Utilities */
.border-t { border-top-width: 1px; }

.pt-8 { padding-top: 2rem; }

.backdrop-blur-md { backdrop-filter: blur(12px); }

.hover\:bg-white\/20:hover { background-color: rgb(255 255 255 / 0.2); }

.hover\:bg-primary:hover { background-color: hsl(var(--primary)); }

.border { border-width: 1px; }

.text-white { color: rgb(255 255 255); }

/* Schedule Button */
.schedule-btn {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.schedule-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
  color: white;
}

/* Additional Border Radius */
.rounded-2xl { border-radius: 1rem; }

.p-8 { padding: 2rem; }

.mb-12 { margin-bottom: 3rem; }

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

.transition-all { transition-property: all; }

.duration-300 { transition-duration: 300ms; }

.font-medium { font-weight: 500; }

.font-semibold { font-weight: 600; }

.font-bold { font-weight: 700; }

.text-xl { font-size: 1.25rem; line-height: 1.75rem; }

.text-2xl { font-size: 1.5rem; line-height: 2rem; }

.mb-4 { margin-bottom: 1rem; }

.mb-6 { margin-bottom: 1.5rem; }

.max-w-2xl { max-width: 42rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.gap-3 { gap: 0.75rem; }

.gap-4 { gap: 1rem; }

.gap-6 { gap: 1.5rem; }

.gap-8 { gap: 2rem; }

.fill-current { fill: currentColor; }

.text-red-400 { color: rgb(248 113 113); }

/* Link Hover Effects */
.link-hover {
  position: relative;
  text-decoration: none;
}

.link-hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}

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

/* Footer Styles */
footer ul {
  list-style: none;
  padding: 0;
}

footer li {
  margin-bottom: 0.5rem;
}

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

.justify-between { justify-content: space-between; }

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

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

.flex-row { flex-direction: row; }

.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }

.px-8 { padding-left: 2rem; padding-right: 2rem; }

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

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  
  .md\:justify-between { justify-content: space-between; }
  
  .md\:items-center { align-items: center; }
}

/* Base footer bottom layout - mobile first */
.footer-bottom-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(-10px) rotate(240deg);
  }
}

@media (max-width: 768px) {
  .hero-offer {
    padding: 2rem 1.5rem;
    margin: 1.5rem 1rem;
    border-radius: 20px;
  }
  
  .hero-offer h2 {
    font-size: 1.75rem;
  }
  
  .hero-buttons {
    gap: 1rem;
  }
  
  .btn-hero {
    min-width: 180px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }
.border-white-20 { border-color: rgba(255, 255, 255, 0.2); }
.from-primary-20 { --tw-gradient-from: hsla(234, 89%, 74%, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-accent-20 { --tw-gradient-to: hsla(280, 100%, 70%, 0.2); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.text-primary { color: hsl(234, 89%, 74%); }
.text-red-400 { color: #f87171; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }

.schedule-btn {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.schedule-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  .container {
    padding-top: 1rem ;
    padding-bottom: 1rem ;
    padding-inline: 0.5rem ;
  }
}

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

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

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

.w-1-5 {
  width: 0.375rem;  
}

.h-1-5 {
  height: 0.375rem;  
}