/*
Theme Name: FRZO Fresh Homes
Theme URI: 
Author: Antigravity
Author URI: 
Description: Custom WordPress theme for FRZO Fresh Homes.
Version: 1.0
Text Domain: frzo-fresh-homes
*/
/* ===== DESIGN TOKENS ===== */
:root {
  --navy-dark: #0a1628;
  --navy: #0f2443;
  --navy-mid: #163562;
  --blue: #1a75c4;
  --blue-light: #3fa4e8;
  --blue-sky: #58c5f0;
  --blue-pale: #e8f4fd;
  --gold: #d4952c;
  --gold-light: #f0b84d;
  --white: #ffffff;
  --off-white: #f6f9fc;
  --gray-100: #f0f3f7;
  --gray-200: #dce3ec;
  --gray-300: #b0bec9;
  --gray-500: #6b7f94;
  --gray-700: #3a4a5c;
  --gray-900: #1a2332;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.15);
  --shadow-xl: 0 16px 64px rgba(10, 22, 40, 0.2);
  --shadow-glow: 0 0 30px rgba(26, 117, 196, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

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

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: 0.6s;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 117, 196, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 117, 196, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 149, 44, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 149, 44, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-left a, .top-bar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
}

.top-bar-left a:hover, .top-bar-right a:hover {
  color: var(--blue-sky);
}

.top-bar-left i, .top-bar-right i {
  color: var(--blue-light);
  font-size: 0.9rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.top-bar-social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-logo img {
  height: 65px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 50px;
}

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

.nav-links a {
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 60%;
}

.nav-cta {
  margin-left: 12px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(15, 36, 67, 0.75) 50%, rgba(22, 53, 98, 0.6) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(88, 197, 240, 0.15);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { width: 300px; height: 300px; top: -50px; right: -50px; animation-delay: 0s; }
.particle:nth-child(2) { width: 200px; height: 200px; bottom: -40px; left: 10%; animation-delay: 3s; }
.particle:nth-child(3) { width: 150px; height: 150px; top: 30%; right: 20%; animation-delay: 6s; }
.particle:nth-child(4) { width: 100px; height: 100px; top: 60%; left: 5%; animation-delay: 9s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  25% { transform: translate(30px, -30px) scale(1.1); opacity: 0.25; }
  50% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.2; }
  75% { transform: translate(10px, -10px) scale(1.05); opacity: 0.18; }
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 197, 240, 0.15);
  border: 1px solid rgba(58, 197, 240, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: var(--blue-sky);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge i {
  font-size: 0.75rem;
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--blue-sky), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

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

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-image-wrapper {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bounceIn 1s ease-out 1s both;
}

.hero-image-badge i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.hero-image-badge-text {
  font-family: var(--font-heading);
}

.hero-image-badge-text strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.hero-image-badge-text span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

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

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

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.5); }
  70% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-tag i {
  font-size: 0.7rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 117, 196, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(26, 117, 196, 0.1), rgba(63, 164, 232, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--blue);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

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

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.why-us-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.3;
}

.why-us-image-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.why-us-image-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
}

.why-us-image-badge span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.why-us-content h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.why-us-content h2 span {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-us-content > p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(26, 117, 196, 0.1), rgba(63, 164, 232, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-icon i {
  font-size: 1.2rem;
  color: var(--blue);
}

.why-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-feature p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ===== DETAILED SERVICES ===== */
.detailed-services {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.detailed-services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 117, 196, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.detailed-services .section-header h2 {
  color: var(--white);
}

.detailed-services .section-header h2 span {
  background: linear-gradient(135deg, var(--blue-sky), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detailed-services .section-header p {
  color: rgba(255,255,255,0.6);
}

.detailed-services .section-tag {
  color: var(--blue-sky);
}

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

.detail-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.detail-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(88, 197, 240, 0.3);
  transform: translateY(-4px);
}

.detail-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.detail-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-card-icon i {
  font-size: 1.3rem;
  color: var(--white);
}

.detail-card h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.detail-card ul {
  list-style: none;
}

.detail-card ul li {
  padding: 6px 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-card ul li i {
  color: var(--blue-sky);
  font-size: 0.7rem;
  min-width: 14px;
}

/* ===== PROCESS / HOW IT WORKS ===== */
.process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue), var(--blue-pale));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 117, 196, 0.3);
  position: relative;
}

.process-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(26, 117, 196, 0.2);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--off-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 117, 196, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 0.95rem;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--blue-pale);
  position: absolute;
  top: -20px;
  left: -5px;
  line-height: 1;
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--blue);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 117, 196, 0.1), rgba(63, 164, 232, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card.featured .pricing-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

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

.pricing-card.featured .pricing-icon i {
  color: var(--white);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-700);
}

.pricing-features li i {
  color: var(--blue);
  font-size: 0.85rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-mid));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 117, 196, 0.2), transparent 70%);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner h2 span {
  background: linear-gradient(135deg, var(--blue-sky), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(26, 117, 196, 0.1), rgba(63, 164, 232, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item p, .contact-item a {
  color: var(--gray-500);
  font-size: 0.92rem;
}

.contact-item a:hover {
  color: var(--blue);
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 117, 196, 0.1), rgba(63, 164, 232, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 117, 196, 0.1);
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

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

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-brand-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand-badge {
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-brand-badge i {
  color: var(--blue-sky);
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.6rem;
  color: var(--blue-light);
  transition: var(--transition);
}

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

.footer-links a:hover i {
  color: var(--blue-sky);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

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

.footer-contact-item p, .footer-contact-item a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
}

.footer-contact-item a:hover {
  color: var(--white);
}

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

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

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

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== LOADING SPINNER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(88, 197, 240, 0.2);
  border-top-color: var(--blue-sky);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

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

/* --- Large Desktop (1280px+) --- */
@media (min-width: 1280px) {
  .container { max-width: 1200px; }
}

/* --- Desktop / Small Desktop (1024px â€“ 1279px) --- */
@media (max-width: 1279px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .service-card { padding: 28px 22px; }
  .service-icon { width: 56px; height: 56px; margin-bottom: 16px; }
  .service-icon i { font-size: 1.5rem; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.88rem; }
}

/* --- Tablet Landscape & Small Desktop (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { order: 1; }
  .hero-image-wrapper { order: 0; display: none; }

  .hero h1 { font-size: 2.8rem; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .service-card { padding: 32px 24px; }
  .service-icon { width: 64px; height: 64px; margin-bottom: 20px; }
  .service-icon i { font-size: 1.6rem; }

  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-us-image { order: -1; }
  .why-us-image img { height: 400px; }

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-steps::before { display: none; }

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

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }

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

  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

/* --- Tablet Portrait (max-width: 768px) --- */
@media (max-width: 768px) {
  /* Top Bar - show but compact */
  .top-bar {
    padding: 6px 0;
    font-size: 0.78rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 4px;
  }

  .top-bar-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .top-bar-right {
    justify-content: center;
    gap: 10px;
  }

  /* Navbar */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9998;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 24px;
  }

  .nav-links.open a {
    font-size: 1.2rem;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-sm);
  }

  .nav-links.open a:hover,
  .nav-links.open a.active {
    background: var(--blue-pale);
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy);
    cursor: pointer;
  }

  /* Hero */
  .hero { min-height: 75vh; padding: 40px 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.8rem; }
  .hero-badge { font-size: 0.75rem; padding: 6px 16px; }

  /* Sections */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 2rem; }
  .section-header p { font-size: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-card { padding: 28px 20px; }

  /* Detail cards */
  .detail-card { padding: 24px; }
  .detail-card ul li { font-size: 0.85rem; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-number { width: 68px; height: 68px; font-size: 1.5rem; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card { padding: 32px 28px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  /* CTA */
  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 1.8rem; }
  .cta-banner p { font-size: 1rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrapper { padding: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* --- Small Tablet / Large Phone (max-width: 600px) --- */
@media (max-width: 600px) {
  /* Top bar compact single-column */
  .top-bar-left {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .top-bar-left a,
  .top-bar-right span {
    font-size: 0.78rem;
  }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 1.85rem; line-height: 1.2; }
  .hero p { font-size: 0.92rem; line-height: 1.7; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.7rem; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.7rem; }
  .section-header p { font-size: 0.92rem; }
  .container { padding: 0 16px; }

  /* Services - single column */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card {
    padding: 24px 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .service-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    margin-bottom: 0;
  }
  .service-icon i { font-size: 1.3rem; }
  .service-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .service-card p { font-size: 0.85rem; margin-bottom: 10px; line-height: 1.6; }

  /* Why us */
  .why-us-image img { height: 280px; }
  .why-us-image-badge {
    bottom: -10px;
    right: 10px;
    padding: 14px 20px;
  }
  .why-us-image-badge strong { font-size: 1.5rem; }
  .why-us-content h2 { font-size: 1.7rem; }
  .why-feature-icon { width: 42px; height: 42px; min-width: 42px; }
  .why-feature h4 { font-size: 0.95rem; }
  .why-feature p { font-size: 0.85rem; }

  /* Details */
  .detail-card { padding: 20px; }
  .detail-card-icon { width: 42px; height: 42px; min-width: 42px; }
  .detail-card-icon i { font-size: 1.1rem; }
  .detail-card h3 { font-size: 1.05rem; }
  .detail-card ul li { font-size: 0.82rem; padding: 4px 0; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-number { width: 60px; height: 60px; font-size: 1.3rem; margin-bottom: 16px; }
  .process-step h3 { font-size: 1rem; }
  .process-step p { font-size: 0.85rem; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 28px 20px; }
  .pricing-card .price { font-size: 2rem; }

  /* CTA */
  .cta-banner { padding: 48px 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.9rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Contact */
  .contact-form-wrapper { padding: 24px 16px; }
  .contact-item-icon { width: 42px; height: 42px; min-width: 42px; }
  .contact-item h4 { font-size: 0.9rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-badges { justify-content: flex-start; }
}

/* --- Phone (max-width: 420px) --- */
@media (max-width: 420px) {
  /* Top bar - even more compact */
  .top-bar { font-size: 0.72rem; padding: 5px 0; }
  .top-bar-left a { font-size: 0.72rem; }
  .top-bar-social a { width: 24px; height: 24px; font-size: 0.7rem; }

  /* Nav */
  .nav-logo img { height: 50px; }
  .navbar .container { padding-top: 6px; padding-bottom: 6px; }

  /* Hero */
  .hero { min-height: auto; padding: 60px 0 50px; }
  .hero h1 { font-size: 1.55rem; }
  .hero p { font-size: 0.85rem; }
  .hero-badge { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 16px; }
  .hero-buttons .btn { padding: 12px 24px; font-size: 0.88rem; }
  .hero-stat-number { font-size: 1.4rem; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.45rem; }
  .section-header p { font-size: 0.85rem; }

  /* Service cards - stacked compact */
  .service-card { padding: 20px 16px; gap: 12px; }
  .service-icon { width: 44px; height: 44px; min-width: 44px; }
  .service-icon i { font-size: 1.1rem; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.8rem; }
  .service-link { font-size: 0.82rem; }

  /* Why us */
  .why-us-image img { height: 220px; }
  .why-us-content h2 { font-size: 1.45rem; }
  .why-us-content > p { font-size: 0.9rem; }
  .why-us-features { gap: 16px; }

  /* Detail cards */
  .detail-card { padding: 16px; }
  .detail-card h3 { font-size: 0.95rem; }
  .detail-card ul li { font-size: 0.78rem; gap: 8px; }
  .detail-card-icon { width: 38px; height: 38px; min-width: 38px; }

  /* Pricing */
  .pricing-card .price { font-size: 1.8rem; }
  .pricing-card h3 { font-size: 1.15rem; }
  .pricing-features li { font-size: 0.85rem; }

  /* Testimonials */
  .testimonial-card { padding: 24px 18px; }
  .testimonial-quote { font-size: 0.88rem; }

  /* CTA */
  .cta-banner h2 { font-size: 1.3rem; }
  .cta-banner p { font-size: 0.85rem; }

  /* Contact */
  .contact-info h3 { font-size: 1.2rem; }
  .contact-form-wrapper h3 { font-size: 1.1rem; }
  .form-group label { font-size: 0.85rem; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  .btn { padding: 12px 24px; font-size: 0.88rem; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer h4 { font-size: 1rem; margin-bottom: 16px; }
  .footer-links a { font-size: 0.85rem; }
  .footer-bottom p { font-size: 0.78rem; }
  .footer-bottom-links a { font-size: 0.78rem; }
  .footer-bottom-links { gap: 16px; }

  .back-to-top { bottom: 16px; right: 16px; width: 38px; height: 38px; font-size: 1rem; }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets */
  .btn { min-height: 48px; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .top-bar-social a { width: 36px; height: 36px; }
  .contact-social a { width: 48px; height: 48px; }
  .back-to-top { width: 48px; height: 48px; }

  /* Remove hover-only effects on touch */
  .service-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .pricing-card:hover { transform: none; box-shadow: none; }
  .detail-card:hover { transform: none; }
}

/* ===== LANDSCAPE PHONE ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 40px 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { margin-top: 16px; }
  .nav-links.open { overflow-y: auto; justify-content: flex-start; padding-top: 60px; }
}


/* ===== PRICING SECTION ===== */
.pricing { background: var(--off-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--gray-200);
}
.pricing-card.featured {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-icon {
  width: 60px; height: 60px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem; color: var(--blue);
}
.pricing-card.featured .pricing-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.price { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.price span { font-size: 1rem; color: var(--gray-500); font-weight: 500; }
.price-note { font-size: 0.85rem; color: var(--blue); margin-bottom: 24px; font-weight: 600; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; color: var(--gray-700); }
.pricing-features i { color: var(--blue-sky); margin-top: 4px; }
