/* ---- CSS Variables ---- */
:root {
  /* Colors */
  --primary-color: #4F46E5;
  --secondary-color: #06B6D4;
  --accent-color: #F59E0B;
  --bg-color: #f8fafc;
  --bg-light: rgba(255, 255, 255, 0.4);
  --text-dark: #1e293b;
  --text-body: #475569;
  --text-light: #ffffff;
  --border-color: rgba(255, 255, 255, 0.5);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: 1px solid rgba(255, 255, 255, 0.8);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --glass-blur: blur(12px);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Layout */
  --container-width: 1200px;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* offset for sticky header */
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-color);
  background-image:
    radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(245, 158, 11, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(79, 70, 229, 0.08) 0px, transparent 50%);
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- Layout Helpers ---- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-padding {
  padding: var(--spacing-xxl) 0;
}

.bg-light {
  background: var(--bg-light);
  border-top: var(--glass-border);
  border-bottom: var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

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

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

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

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

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

.section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  background: rgba(37, 99, 235, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
  color: white;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-color: transparent;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-glow {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 1000;
  border-bottom: var(--glass-border);
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo i {
  font-size: 1.75rem;
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
}

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

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: white;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

.close-menu-btn {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.mobile-nav-cta {
  margin-top: 1rem;
  width: 100%;
}

/* ---- Hero Section ---- */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 20%);
  min-height: auto;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.3);
  filter: blur(100px);
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.3);
  filter: blur(100px);
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--glass-shadow);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  border: var(--glass-border);
}

.trust-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.hero-content h1 {
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  color: var(--text-body);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--glass-bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.highlight-item i {
  color: #10b981;
  font-size: 1.25rem;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: var(--glass-border);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.floating-card strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.1rem;
}

.floating-card span {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* ---- About Section ---- */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 4px solid white;
  animation: float 5s ease-in-out infinite alternate;
}

.experience-badge .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.experience-badge .text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.about-content p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-features i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.about-features strong {
  display: block;
  color: var(--text-dark);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

/* ---- Services Section ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.9);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-color: transparent;
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* ---- Why Choose Us ---- */
.why-us-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.why-us-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: var(--glass-border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-us-list li:hover {
  border-color: var(--primary-color);
  transform: translateX(5px) scale(1.02);
  box-shadow: var(--shadow-md);
  background: white;
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.why-us-list span {
  font-weight: 500;
  color: var(--text-dark);
}

.why-us-visual {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.why-us-visual:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.rating-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.rating-number {
  font-size: 5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
  color: white;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.rating-stars {
  font-size: 1.5rem;
  color: #f59e0b;
  display: flex;
  gap: 0.25rem;
}

.rating-text {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition);
}

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

.review-stars {
  color: #f59e0b;
  font-size: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.review-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-dark);
  flex-grow: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--secondary-color);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.reviewer-details strong {
  display: block;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.reviewer-details span {
  font-size: 0.875rem;
}

/* ---- Location Section ---- */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: var(--glass-bg);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(5px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  color: var(--text-dark);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.map-placeholder {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  border: var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  color: var(--text-body);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.map-placeholder i {
  font-size: 4rem;
  color: #94a3b8;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 5rem 0;
  color: white;
  border-top: 4px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.cta-section>* {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Footer ---- */
.footer {
  background: #0f172a;
  color: var(--text-light);
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--secondary-color);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.footer-brand p {
  opacity: 0.8;
  max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
  color: white;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  opacity: 0.8;
}

.footer-contact i {
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.5rem var(--spacing-lg);
  text-align: center;
  opacity: 0.7;
  font-size: 0.875rem;
}

/* ---- Products Section ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: var(--glass-border);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.9);
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--primary-color);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.product-card:hover .product-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* Make the last card span correctly if needed */
.border-span {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .border-span {
    grid-column: auto;
    max-width: none;
  }
}

/* ---- Brands Section ---- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.brand-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: var(--glass-border);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
  background: white;
}

.brand-logo {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.brand-category {
  font-size: 0.75rem;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Accessories Section ---- */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.accessory-card {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.accessory-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

.accessory-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.accessory-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.accessory-card:hover i {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* ---- Animations ---- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

/* ---- Responsive Design ---- */
@media (max-width: 1024px) {

  .hero-container,
  .about-container,
  .why-us-container,
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content,
  .about-content {
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 2rem;
  }

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

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

  .experience-badge {
    right: 1rem;
    top: -1rem;
  }

  .about-features li {
    text-align: left;
  }

  .floating-card {
    bottom: 20px;
    left: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

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

  .mobile-menu-btn {
    display: block;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-image-wrapper {
    margin-top: 1rem;
  }

  .floating-card {
    display: none;
  }

  /* Hide complex decorative elements on small screens for cleaner look */

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-contact li {
    justify-content: center;
    text-align: center;
  }

  .experience-badge {
    padding: 1rem;
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .rating-number {
    font-size: 4rem;
  }
}