/* ===== VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #00b4d8;
  --primary-dark: #0096c7;
  --primary-light: #48cae4;
  --secondary-color: #9e24e7;
  --accent-color: #06ffa5;
  
  --text-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-gray: #6b7280;
  
  --bg-dark: #0f172a;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(0, 180, 216, 0.3);
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 5rem 0;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section__description {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

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

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

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

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

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

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav__logo i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.nav__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

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

.nav__link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

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

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

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__subtitle {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero__description {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.hero__image-wrapper {
  position: relative;
}

.hero__image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: pulse 3s ease-in-out infinite;
}

.hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.floating-card--1 {
  top: 10%;
  right: -10%;
}

.floating-card--2 {
  bottom: 10%;
  left: -10%;
  animation-delay: 1.5s;
}

.floating-card i {
  font-size: 2rem;
  color: var(--primary-color);
}

.floating-card strong {
  display: block;
  color: var(--text-dark);
}

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

.hero__shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  z-index: 1;
}

.shape--1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.shape--2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  bottom: 10%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.shape--3 {
  width: 250px;
  height: 250px;
  background: var(--accent-color);
  top: 50%;
  right: 20%;
  animation: float 7s ease-in-out infinite;
  animation-delay: 2s;
}

/* ===== FEATURES ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

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

.feature-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card__description {
  color: var(--text-gray);
}

/* ===== ABOUT SECTION ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--text-light);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.about__badge i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about__badge span {
  font-size: 1.25rem;
  font-weight: 700;
}

.about__list {
  margin: 2rem 0;
}

.about__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about__item i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-dark);
}

.services .section__subtitle,
.services .section__title,
.services .section__description {
  color: var(--text-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-card__title {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card__description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.service-card__features {
  margin-bottom: 1.5rem;
}

.service-card__features li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card__features i {
  color: var(--accent-color);
}

.service-card__link {
  color: var(--primary-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card__link:hover {
  gap: 1rem;
}

.services__cta {
  text-align: center;
}

/* ===== TEAM ===== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.team-card__image {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-card__image img {
  transform: scale(1.1);
}

.team-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-card__overlay {
  opacity: 1;
}

.team-card__social {
  display: flex;
  gap: 1rem;
}

.team-card__social a {
  width: 45px;
  height: 45px;
  background: var(--text-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.team-card__social a:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-5px);
}

.team-card__content {
  padding: 2rem;
  text-align: center;
}

.team-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-card__role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card__bio {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-light);
}

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

.testimonial-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-card__rating {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__text {
  font-size: 1.125rem;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-card__name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonial-btn:hover {
  transform: scale(1.1);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

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

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

/* ===== GALLERY ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.comparison-slider {
  position: relative;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
}

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider__after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
}

.comparison-slider__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
}

.gallery-item__label {
  color: var(--text-gray);
  font-weight: 600;
}

/* ===== CTA ===== */
.cta {
  background: var(--bg-dark);
}

.cta__card {
  background: var(--gradient-primary);
  padding: 4rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.cta__description {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer__logo i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.footer__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.footer__title {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer__links li,.footer__info li {
  margin-bottom: 0.75rem;
}

.footer__links a,
.footer__info a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__links a:hover,
.footer__info a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer__info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__info i {
  color: var(--primary-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a:hover {
  color: var(--primary-light);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
}

.scroll-top.show {
  display: flex;
}

.scroll-top:hover {
  transform: translateY(-5px);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 10rem 0 6rem;
  text-align: center;
  margin-top: 80px;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.page-hero__title {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.page-hero__description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

/* ===== SERVICE DETAILS ===== */
.service-detail {
  padding: 5rem 0;
}

.service-detail:nth-child(even) {
  background: var(--bg-light);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail__grid--reverse {
  direction: rtl;
}

.service-detail__grid--reverse > * {
  direction: ltr;
}

.service-detail__image {
  position: relative;
}

.service-detail__image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.service-detail__badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 2rem;
  box-shadow: var(--shadow-xl);
}

.service-detail__category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 180, 216, 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-detail__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-detail__description {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.service-detail__features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item h4 {
  margin-bottom: 0.25rem;
}

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

.service-detail__price {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price__label {
  color: var(--text-gray);
}

.price__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price__period {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* ===== FILTERS ===== */
.services-filter {
  padding: 2rem 0;
  background: var(--bg-light);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.filter-tab.active {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.filter-tab:hover:not(.active) {
  background: var(--primary-light);
  color: var(--text-light);
}

/* ===== CONTACT FORMS ===== */
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

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

.info-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
}

.info-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-card__text {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.info-card__text a {
  color: var(--primary-color);
  font-weight: 500;
}

.info-card__link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.info-card__subtext {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.5rem;
}

.contact-form-section {
  padding: 5rem 0;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-benefits {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.contact-emergency {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.emergency-icon {
  width: 50px;
  height: 50px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.emergency-content h4 {
  margin-bottom: 0.5rem;
}

.emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ef4444;
  color: var(--text-light);
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-top: 0.5rem;
}

.contact-form__wrapper {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group label i {
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  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;
  min-height: 120px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

.checkbox-label a {
  color: var(--primary-color);
  font-weight: 500;
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-md);
  display: none;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  display: block;
}

/* ===== MAP ===== */
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-top: 2rem;
}

/* ===== FAQ ===== */
.faq__grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-gray);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

[data-animate] {
  opacity: 0;
}

[data-animate].animate {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

[data-animate="fadeIn"].animate {
  animation-name: fadeIn;
}

[data-animate="fadeInUp"].animate {
  animation-name: fadeInUp;
}

[data-animate="fadeInLeft"].animate {
  animation-name: fadeInLeft;
}

[data-animate="fadeInRight"].animate {
  animation-name: fadeInRight;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background: var(--bg-card);
    width: 80%;
    max-width: 350px;
    height: 100vh;
    padding: 6rem 3rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s;
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .nav__close,
  .nav__toggle {
    display: block;
  }
  
  .nav__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  
  .nav__btns .btn {
    display: none;
  }
  
  .hero__container,
  .about__grid,
  .service-detail__grid,
  .contact-form__grid,
  .cta__card {
    grid-template-columns: 1fr;
  }
  
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta__card {
    text-align: center;
  }
  
  .cta__buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero__buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero__stats {
    grid-template-columns: 1fr;
  }
  
  .contact-form__wrapper {
    padding: 2rem 1.5rem;
  }
  
  .floating-card {
    display: none;
  }
}
