/* Surya Techno Service Center - Shared CSS Stylesheet */

:root {
  --primary: #0F4C81;
  --primary-light: #1562A4;
  --secondary: #FF6B00;
  --secondary-hover: #E05E00;
  --secondary-light: #FFF0E6;
  --dark: #0F172A;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-600: #475569;
  --gray-700: #334155;
  --bg-footer: #0A0F1E;
  
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --max-width: 1280px;
  
  --shadow-sm: 0 2px 8px rgba(15, 76, 129, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 76, 129, 0.08), 0 8px 16px -6px rgba(15, 76, 129, 0.05);
  --shadow-lg: 0 20px 40px -10px rgba(15, 76, 129, 0.12), 0 10px 20px -10px rgba(15, 76, 129, 0.06);
  --shadow-sec: 0 10px 20px -5px rgba(255, 107, 0, 0.2);
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* UTILITIES */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.25rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray-600);
  margin-top: 15px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  gap: 10px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-sec);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -5px rgba(255, 107, 0, 0.3);
}

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

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--secondary-light);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* SCROLL ANIMATION */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* HEADER & TOP BAR */
.top-bar {
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-info {
  display: flex;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2.5;
}

.header-main {
  position: sticky;
  top: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header-main.sticky {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

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

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

/* NAV DROPDOWN MENU */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  transition: var(--transition);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--white);
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  z-index: 1000;
  margin-top: 10px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item-dropdown:hover .dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--light);
  color: var(--primary);
  padding-left: 26px;
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondary);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.burger div {
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* SECTION 1: HERO */
.hero {
  background: radial-gradient(circle at 80% 20%, rgba(240, 244, 248, 0.6) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--secondary);
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 35px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--gray-700);
}

.hero-badge-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #E0F2FE;
  color: var(--primary);
  border-radius: 50%;
}

.hero-badge-item span svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
}

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

.hero-image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 6s ease;
}

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

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
  top: 15%;
  left: -40px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 15%;
  right: -30px;
  animation-delay: 2s;
}

.floating-icon {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.5;
}

.floating-card-1 .floating-icon {
  background-color: var(--secondary);
}

.floating-info h4 {
  font-size: 1.15rem;
  color: var(--primary);
}

.floating-info p {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
}

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

/* SECTION 2: STATISTICS */
.stats {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 10px 0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-100);
}

/* SECTION 3: ABOUT COMPANY */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

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

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background-color: var(--secondary);
  color: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sec);
  text-align: center;
  max-width: 160px;
}

.about-exp-badge h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.about-exp-badge p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-tagline {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-description {
  color: var(--gray-600);
  margin-bottom: 30px;
}

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

.about-feature-card {
  display: flex;
  gap: 16px;
}

.about-feature-icon {
  background-color: var(--gray-100);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-feature-card:hover .about-feature-icon {
  background-color: var(--primary);
  color: var(--white);
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.about-feature-text h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.about-feature-text p {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* SECTION 4: SERVICES */
.services {
  background-color: var(--light);
}

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

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background-color: rgba(15, 76, 129, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: var(--white);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 25px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
  cursor: pointer;
}

.service-more-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: var(--transition);
}

.service-card:hover .service-more-btn svg {
  transform: translateX(4px);
}

/* SECTION 5: WHY CHOOSE US */
.why-choose {
  background-color: var(--white);
}

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

.why-card {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.why-card:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background-color: var(--secondary);
  color: var(--white);
}

.why-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.why-text h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* SECTION 6: PROCESS */
.process {
  background-color: var(--light);
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  width: 75%;
  height: 4px;
  background-color: var(--gray-200);
  z-index: 1;
}

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

.process-num-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--white);
  border: 4px solid var(--gray-200);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 25px auto;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .process-num-box {
  border-color: var(--secondary);
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--gray-600);
  padding: 0 10px;
}

/* SECTION 7: BRANDS WE REPAIR */
.brands {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.brand-badge {
  background-color: var(--light);
  border: 1px solid var(--gray-200);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
  transition: var(--transition);
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.brand-badge:hover {
  background-color: var(--white);
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

/* SECTION 8: COMMON PROBLEMS */
.problems {
  background-color: var(--light);
}

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

.problem-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 76, 129, 0.2);
}

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

.problem-icon {
  width: 46px;
  height: 46px;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.problem-header h3 {
  font-size: 1.2rem;
  color: var(--primary);
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  flex-grow: 1;
}

.problem-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  cursor: pointer;
}

.problem-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: var(--transition);
}

.problem-card:hover .problem-cta svg {
  transform: translateX(4px);
}

/* SECTION 9: TESTIMONIALS */
.testimonials {
  background-color: var(--white);
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-slider {
  overflow: hidden;
  cursor: grab;
}

.testimonials-slider:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.testimonial-card {
  background-color: var(--light);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 30px;
  left: 40px;
  color: rgba(15, 76, 129, 0.08);
  font-size: 5rem;
  font-family: var(--font-title);
  line-height: 0;
  user-select: none;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: #FFC107;
  margin-bottom: 25px;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.8;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.client-details {
  text-align: left;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.client-loc {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 10;
}

.slider-nav:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.slider-prev {
  left: -15px;
}

.slider-next {
  right: -15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 10px;
}

/* SECTION 10: FAQ */
.faq {
  background-color: var(--light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--gray-100);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon-box svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  transition: var(--transition);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 24px 24px 24px;
  color: var(--gray-600);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
  transition: var(--transition);
}

/* Active State */
.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 76, 129, 0.15);
}

.faq-item.active .faq-icon-box {
  background-color: var(--primary);
  color: var(--white);
}

.faq-item.active .faq-icon-box svg {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  border-top-color: var(--gray-100);
}

/* SECTION 11: SERVICE AREAS */
.areas {
  background-color: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.area-card {
  background-color: var(--light);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.area-card:hover {
  background-color: var(--white);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.area-icon {
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.area-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

/* SECTION 12: CALL TO ACTION */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, #082F52 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  color: var(--gray-200);
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cta .btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}

.contact-info-panel {
  background-color: var(--primary);
  color: var(--white);
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-info-title h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.contact-info-title p {
  color: var(--gray-200);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

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

.contact-detail-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.contact-detail-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-300);
  margin-bottom: 4px;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.contact-hours {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  font-size: 0.9rem;
  color: var(--gray-200);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-hours svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2.5;
}

.contact-form-panel {
  background-color: var(--light);
  padding: 50px 40px;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.contact-form-panel h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-form-panel p {
  color: var(--gray-600);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

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

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

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid var(--gray-200);
  background-color: var(--white);
  color: var(--dark);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 45px;
}

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

.form-submit-btn {
  width: 100%;
  border-radius: 12px;
  font-size: 1.05rem;
}

/* SECTION 14: FOOTER */
.footer {
  background: linear-gradient(160deg, #0A0F1E 0%, #0d1a35 40%, #0F1F3D 70%, #0a1628 100%);
  color: var(--white);
  padding: 80px 0 30px 0;
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.footer-about p {
  color: var(--gray-300);
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: var(--gray-300);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-links-list a::before {
  content: '→';
  color: var(--secondary);
  font-weight: bold;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gray-300);
}

.footer-contact-icon {
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.footer-contact-text span {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

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

.footer-bottom p:first-child {
  color: rgba(255, 255, 255, 0.55);
}

/* STICKY FLOATING ACTION BUTTONS */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  cursor: pointer;
  color: var(--white);
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.float-call {
  background-color: var(--secondary);
}

.float-call svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.5;
}

/* DETAILS/MODAL SYSTEM */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--white);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--gray-100);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--primary);
  color: var(--white);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

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

.modal-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-light);
  color: var(--secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.modal-header h3 {
  font-size: 1.6rem;
  color: var(--primary);
}

.modal-body {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

.modal-bullet-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--gray-700);
}

.modal-bullet-list li svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 3;
}

.modal-footer {
  margin-top: 35px;
  display: flex;
  gap: 16px;
}

.modal-footer .btn {
  flex: 1;
}

/* CONFIRMATION SUCCESS MODAL */
.success-modal .modal-content {
  text-align: center;
  max-width: 450px;
}

.success-icon-box {
  width: 80px;
  height: 80px;
  background-color: #DEF7EC;
  color: #03543F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
}

.success-icon-box svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.success-modal h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.success-modal p {
  color: var(--gray-600);
  margin-bottom: 25px;
}

/* INDIVIDUAL SERVICE PAGE STYLES */
.service-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #082F52 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 15px;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.breadcrumb-active {
  color: var(--white);
  font-weight: 600;
}

.service-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: start;
}

.service-content-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-main-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.service-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-text-block h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-text-block p {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-text-block ul.checkmark-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin: 25px 0;
}

.service-text-block ul.checkmark-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.service-text-block ul.checkmark-list li svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 3;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-sidebar-col {
  position: sticky;
  top: 110px;
  z-index: 10;
}

.service-booking-box {
  background-color: var(--light);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
}

.service-booking-box h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
  text-align: center;
}

.service-booking-box p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 25px;
  text-align: center;
}

/* RESPONSIVE DESIGN FOR SERVICE PAGES */
@media (max-width: 992px) {
  .service-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-sidebar-col {
    position: static;
  }
  .service-hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  /* MOBILE DROPDOWN ACCORDION */
  .nav-item-dropdown .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .nav-item-dropdown.active .dropdown-trigger svg {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    width: 100%;
    background-color: var(--gray-100);
    border-radius: 8px;
    margin-top: 10px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .dropdown-menu.active {
    max-height: 500px;
    padding: 10px 0;
  }
  
  .dropdown-item {
    padding: 10px 30px;
  }
  
  .service-text-block ul.checkmark-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  .services-grid, .problems-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid, .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-badges-grid {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-image-wrapper {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }
  .floating-card-1 {
    left: -15px;
  }
  .floating-card-2 {
    right: -15px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .process-timeline::before {
    display: none;
  }
  .process-step {
    max-width: 400px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
  .navbar {
    height: 70px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .burger {
    display: flex;
  }
  .navbar .btn {
    display: none;
  }
  .burger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  .burger.active div:nth-child(2) {
    opacity: 0;
  }
  .burger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .hero-desc {
    font-size: 1.1rem;
  }
  .section-title h2 {
    font-size: 1.85rem;
  }
  .services-grid, .problems-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .brands-grid, .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    padding: 40px 20px;
  }
  .slider-wrapper {
    padding: 0 10px;
  }
  .slider-nav {
    display: none;
  }
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero-badges-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .brands-grid, .areas-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .cta h2 {
    font-size: 2rem;
  }
  .cta p {
    font-size: 1rem;
  }
  .contact-info-panel, .contact-form-panel {
    padding: 35px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
