:root {
  --primary: #FF6B35;
  --primary-dark: #E55A2B;
  --secondary: #FF8C42;
  --accent: #FFA726;
  --light: #F8F4F0;
  --dark: #2C3E50;
  --text: #34495E;
  --text-light: #7F8C8D;
  --gray-light: #F5F5F5;
  --gray-medium: #E8E8E8;
  --orange-light: #FFE0B2;
  --orange-dark: #D84315;
  --gray-dark: #424242;
  --gray-darker: #212121;
  --orange-gray: #FFCC80;
  --orange-gray-light: #FFE0B2;
  --orange-gray-dark: #FFB74D;
  --gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
  --gradient-dark: linear-gradient(135deg, #E55A2B 0%, #FF6B35 100%);
  --gradient-gray: linear-gradient(135deg, #424242 0%, #616161 100%);
  --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);
  --shadow: 0 4px 6px rgba(255, 107, 53, 0.1);
  --shadow-lg: 0 10px 25px rgba(255, 107, 53, 0.15);
  --shadow-gray: 0 4px 6px rgba(66, 66, 66, 0.1);
  --shadow-orange: 0 4px 6px rgba(255, 107, 53, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn::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:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient);
  color: var(--light);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background: var(--gray-light);
}

.section-dark {
  background: var(--gradient-gray);
  color: var(--light);
}

.section-orange {
  background: var(--gradient-orange);
  color: var(--light);
}

/* Cards */
.card {
  background: var(--orange-gray-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-gray);
  border: 1px solid var(--orange-gray);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Hero */
.hero {
  background: var(--gradient-orange);
  color: var(--light);
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
}

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Rounded corners */
.rounded-xl {
  border-radius: 16px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--orange-gray-light);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--orange-gray);
}

.header.scrolled {
  box-shadow: var(--shadow-orange);
  padding: 0.5rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Source Sans Pro', sans-serif;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
}

/* Feature Cards */
.feature-card {
  background: var(--orange-gray-light);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-gray);
  border: 1px solid var(--orange-gray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--gradient-orange);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial {
  background: var(--orange-gray-light);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-gray);
  border: 1px solid var(--orange-gray);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--gradient-orange);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--orange-gray-light);
  border-radius: 20px;
  border: 1px solid var(--orange-gray);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  font-family: 'Source Sans Pro', sans-serif;
}

/* Forms */
.form-input,
.form-textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--orange-gray);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Source Sans Pro', sans-serif;
  background: var(--orange-gray-light);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  background: var(--light);
}

/* Footer */
.footer {
  background: var(--gray-darker);
  color: var(--light);
  padding: 4rem 0 2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--orange-gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
} 