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

:root {
  --primary-color: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --secondary-color: #10b981;
  --dark: #0f172a;
  --dark-alt: #1e293b;
  --gray: #64748b;
  --light-gray: #f1f5f9;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-alt: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

section {
  padding: 100px 0;
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.logo i {
  font-size: 28px;
}

.logo img {
  width: 150px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 3px;
}

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

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

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

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 5px;
  background: var(--light-gray);
  padding: 5px;
  border-radius: 20px;
}

.lang-btn {
  padding: 6px 14px;
  border: none;
  background: transparent;
  color: var(--gray);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border-radius: 15px;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
}

.lang-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-color);
}

.lang-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #3b82f6;
  color: var(--white);
  border-color: #3b82f6;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 0;
}

.hero .container {
  position: relative;
  z-index: 5;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      180deg,
      #e0f2fe 0%,
      #f0f9ff 40%,
      rgba(255, 255, 255, 0.7) 70%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    url("../images/cleaning_hero.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Minimal Sparkling Stars Animation */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: subtleSpark 4s ease-in-out infinite;
  z-index: 1;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
}

.sparkle::before {
  width: 1px;
  height: 12px;
  top: -3px;
  left: 2.5px;
}

.sparkle::after {
  width: 12px;
  height: 1px;
  top: 2.5px;
  left: -3px;
}

@keyframes subtleSpark {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1) rotate(180deg);
  }
}

@keyframes sparkSpin {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2) rotate(360deg);
  }
}

@keyframes sparkPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.7) rotate(0deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1) rotate(90deg);
  }
}

.sparkle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation: sparkSpin 4s ease-in-out infinite;
  width: 8px;
  height: 8px;
}

.sparkle:nth-child(1)::before {
  width: 2px;
  height: 16px;
  top: -4px;
  left: 3px;
}

.sparkle:nth-child(1)::after {
  width: 16px;
  height: 2px;
  top: 3px;
  left: -4px;
}

.sparkle:nth-child(2) {
  top: 30%;
  left: 85%;
  animation: sparkPulse 5s ease-in-out infinite 1s;
  width: 5px;
  height: 5px;
}

.sparkle:nth-child(2)::before {
  width: 1.5px;
  height: 10px;
  top: -2.5px;
  left: 1.75px;
}

.sparkle:nth-child(2)::after {
  width: 10px;
  height: 1.5px;
  top: 1.75px;
  left: -2.5px;
}

.sparkle:nth-child(3) {
  top: 60%;
  left: 20%;
  animation: subtleSpark 4.5s ease-in-out infinite 2s;
  width: 7px;
  height: 7px;
}

.sparkle:nth-child(3)::before {
  width: 2px;
  height: 14px;
  top: -3.5px;
  left: 2.5px;
}

.sparkle:nth-child(3)::after {
  width: 14px;
  height: 2px;
  top: 2.5px;
  left: -3.5px;
}

.sparkle:nth-child(4) {
  top: 70%;
  left: 80%;
  animation: sparkSpin 5.5s ease-in-out infinite 3s;
  width: 10px;
  height: 10px;
}

.sparkle:nth-child(4)::before {
  width: 2.5px;
  height: 20px;
  top: -5px;
  left: 3.75px;
}

.sparkle:nth-child(4)::after {
  width: 20px;
  height: 2.5px;
  top: 3.75px;
  left: -5px;
}

.sparkle:nth-child(5) {
  top: 40%;
  left: 50%;
  animation: sparkPulse 4.8s ease-in-out infinite 1.5s;
  width: 6px;
  height: 6px;
}

.sparkle:nth-child(5)::before {
  width: 2px;
  height: 12px;
  top: -3px;
  left: 2px;
}

.sparkle:nth-child(5)::after {
  width: 12px;
  height: 2px;
  top: 2px;
  left: -3px;
}
.sparkle:nth-child(6) {
  display: none;
}
.sparkle:nth-child(7) {
  display: none;
}
.sparkle:nth-child(8) {
  display: none;
}
.sparkle:nth-child(9) {
  display: none;
}
.sparkle:nth-child(10) {
  display: none;
}
.sparkle:nth-child(11) {
  display: none;
}
.sparkle:nth-child(12) {
  display: none;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-top: -100px;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 2;
  transition:
    opacity 0.1s ease-out,
    transform 0.1s ease-out;
}

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

.hero-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: rgba(59, 130, 246, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #1e293b;
}

.hero-title .highlight {
  color: #1e293b;
}

.hero-description {
  font-size: 17px;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-buttons .btn-outline {
  display: none;
}

.hero-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-features {
  display: none;
}

.scroll-indicator {
  display: none;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* =============================================
   Section Headers
   ============================================= */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.services .section-label {
  color: #64748b;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-description {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
}

/* =============================================
   About Section
   ============================================= */
.about {
  background: #1e3a8a;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  z-index: 10;
  transform: scale(0.95);
  transform-origin: top center;
  transition: transform 0.1s ease-out;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
}

.scroll-view-indicator {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.about-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.sparkle-decoration {
  position: absolute;
  color: #fbbf24;
}

.sparkle-1 {
  bottom: 15%;
  left: 8%;
  font-size: 24px;
}

.sparkle-1::before {
  content: "✦";
  display: block;
  animation: twinkle 3s ease-in-out infinite;
}

.sparkle-2 {
  bottom: 25%;
  left: 12%;
  font-size: 40px;
  transform: rotate(15deg);
}

.sparkle-2::before {
  content: "✦";
  display: block;
  animation: twinkle 3s ease-in-out infinite 1s;
}

.sparkle-3 {
  bottom: 18%;
  left: 15%;
  font-size: 16px;
  transform: rotate(-15deg);
}

.sparkle-3::before {
  content: "✦";
  display: block;
  animation: twinkle 3s ease-in-out infinite 2s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

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

.about-content {
  color: var(--white);
}

.about-content .section-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--white);
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

.about-content .btn {
  background: #fbbf24;
  color: #1e3a8a;
  border-color: #fbbf24;
  font-weight: 600;
}

.about-content .btn:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  transform: translateY(-2px);
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

.image-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-card.image-1 {
  grid-column: 1;
  grid-row: 1;
  height: 200px;
}

.image-card.image-2 {
  grid-column: 2;
  grid-row: 1 / 3;
  height: 420px;
}

.image-card.image-3 {
  grid-column: 1;
  grid-row: 2;
  height: 200px;
}

.image-card.image-4 {
  grid-column: 2;
  grid-row: 3;
  height: 200px;
  margin-top: -200px;
  margin-left: -120px;
  width: calc(100% + 120px);
}

/* =============================================
   Services Section
   ============================================= */
.services {
  position: relative;
  background: var(--white);
}

.services-header {
  position: relative;
}

.services-sparkles {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.sparkle-4 {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 20px;
  color: #3b82f6;
}

.sparkle-4::before {
  content: "✦";
  display: block;
  animation: twinkle 3s ease-in-out infinite;
}

.sparkle-5 {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 32px;
  color: #3b82f6;
  transform: rotate(15deg);
}

.sparkle-5::before {
  content: "✦";
  display: block;
  animation: twinkle 3s ease-in-out infinite 1s;
}

.sparkle-6 {
  position: absolute;
  top: 5px;
  left: 40px;
  font-size: 14px;
  color: #3b82f6;
  transform: rotate(-15deg);
}

.sparkle-6::before {
  content: "✦";
  display: block;
  animation: twinkle 3s ease-in-out infinite 2s;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-card.featured {
  background: var(--gradient-alt);
  color: var(--white);
  border-color: transparent;
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-list li {
  color: var(--white);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card > p {
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  margin-bottom: 25px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--gray);
}

.service-list i {
  color: var(--secondary-color);
  font-size: 14px;
}

.service-card.featured .service-list i {
  color: var(--white);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-card.featured .service-link {
  color: var(--white);
}

.service-link:hover {
  gap: 12px;
}

/* =============================================
   Process Section
   ============================================= */
.process {
  background: var(--light-gray);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(59, 130, 246, 0.08);
  z-index: 0;
}

.step-icon {
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.process-step p {
  color: var(--gray);
  line-height: 1.7;
}

/* =============================================
   Pricing Section
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  background: var(--gradient-alt);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.05);
}

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

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 30px;
}

.pricing-card.featured .pricing-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

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

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
}

.amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.period {
  font-size: 16px;
  color: var(--gray);
  margin-top: 20px;
}

.pricing-card.featured .period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--gray);
}

.pricing-card.featured .pricing-features li {
  color: var(--white);
}

.pricing-features li.disabled {
  opacity: 0.4;
}

.pricing-features i {
  font-size: 16px;
}

.pricing-features .fa-check {
  color: var(--secondary-color);
}

.pricing-card.featured .pricing-features .fa-check {
  color: var(--white);
}

.pricing-features .fa-times {
  color: #ef4444;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-card.featured .btn-primary {
  background: var(--white);
  color: var(--primary-color);
}

.pricing-card.featured .btn-primary:hover {
  background: var(--light-gray);
}

.pricing-note {
  text-align: center;
  padding: 25px;
  background: var(--light-gray);
  border-radius: 15px;
}

.pricing-note p {
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-note i {
  color: var(--primary-color);
}

/* =============================================
   Testimonials Section
   ============================================= */
.testimonials {
  background: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 18px;
}

.testimonial-text {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark);
}

.author-info p {
  font-size: 14px;
  color: var(--gray);
}

/* =============================================
   Contact Section
   ============================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: var(--light-gray);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: var(--primary-color);
}

.info-card:hover .info-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-card span {
  font-size: 14px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

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

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

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo i {
  color: var(--primary-color);
  font-size: 28px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 13px;
}

.badge-item i {
  color: var(--primary-color);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

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

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 40px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-title {
    font-size: 36px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    min-height: 100vh;
    padding-bottom: 0;
  }

  .hero-content {
    margin-top: -50px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .sparkle {
    display: none;
  }

  .about {
    padding: 80px 0;
    transform: scale(1) !important;
    box-shadow: none;
  }

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

  .about-title {
    font-size: 32px;
  }

  .about-images {
    gap: 15px;
  }

  .image-card.image-1,
  .image-card.image-3 {
    height: 150px;
  }

  .image-card.image-2 {
    height: 320px;
  }

  .image-card.image-4 {
    height: 150px;
    margin-top: -150px;
    margin-left: -60px;
    width: calc(100% + 60px);
  }

  .sparkle-decoration {
    display: none;
  }

  .scroll-view-indicator {
    display: none;
  }

  .services-sparkles {
    display: none;
  }

  .section-title {
    font-size: 32px;
  }

  .services-grid,
  .process-timeline,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .btn-lg {
    padding: 14px 30px;
    font-size: 15px;
  }
}
