 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1e2a2f;
            scroll-behavior: smooth;
            line-height: 1.5;
        }

        /* Paleta más viva y moderna: naranja vibrante, azules profundos y toques cálidos */
        :root {
            --primary-dark: #0B2B2C;
            --primary-accent: #E86A2C;     /* naranja vibrante - energía mecánica */
            --accent-hover: #F07E42;
            --gold-soft: #F9B23F;
            --light-bg: #FEF6F0;
            --gray-bg: #F9F9FC;
            --text-muted: #4A5B5E;
            --border-light: #FFEADB;
            --card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
        }

        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--primary-accent);
            border-radius: 4px;
        }
        .section-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Navbar moderna */
        .navbar {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            z-index: 100;
            border-bottom: 2px solid var(--border-light);
            padding: 0.9rem 0;
        }
        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo h1 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-dark);
        }
        .logo span {
            color: var(--primary-accent);
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            color: #1f3e3f;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-links a:hover {
            color: var(--primary-accent);
        }

        /* Hero con slider */
        .hero {
            padding: 2rem 0 3rem;
            background: linear-gradient(145deg, #ffffff 0%, var(--light-bg) 100%);
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .hero-text {
            flex: 1.1;
        }
        .rating {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232, 106, 44, 0.12);
            padding: 0.5rem 1.2rem;
            border-radius: 60px;
            margin-bottom: 1.2rem;
            font-weight: 600;
        }
        .rating i {
            color: var(--gold-soft);
        }
        .hero-text h1 {
            font-size: 3.4rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        .hero-text p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 90%;
        }
        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-block;
            background: var(--primary-accent);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: 0.25s;
            border: none;
            box-shadow: 0 6px 14px rgba(232,106,44,0.25);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-accent);
            color: var(--primary-accent);
            box-shadow: none;
        }
        .btn-outline:hover {
            background: var(--primary-accent);
            color: white;
        }
        .btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }
        .slider-container {
            flex: 1;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            background: #fff;
        }
        .swiper {
            width: 100%;
            height: 320px;
            border-radius: 28px;
        }
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .info-card {
            margin-top: 1.5rem;
            background: white;
            border-radius: 28px;
            padding: 1.5rem;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--border-light);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.8rem;
        }
        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }
        .info-item i {
            color: var(--primary-accent);
            font-size: 1.3rem;
        }

        /* secciones */
        section {
            padding: 5rem 0;
            border-bottom: 1px solid #f0e4db;
        }
        .bg-vivid {
            background: var(--gray-bg);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .service-card {
            background: white;
            padding: 2rem 1.8rem;
            border-radius: 32px;
            transition: all 0.25s;
            border: 1px solid rgba(232,106,44,0.15);
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
        }
        .service-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary-accent);
            box-shadow: 0 20px 30px -12px rgba(232,106,44,0.2);
        }
        .service-card i {
            font-size: 2.6rem;
            color: var(--primary-accent);
            margin-bottom: 1.2rem;
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }
        /* Galería imágenes extra */
        .gallery-mini {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            margin: 2rem 0 1rem;
        }
        .gallery-mini img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 24px;
            transition: 0.2s;
            border: 2px solid white;
            box-shadow: 0 6px 12px rgba(0,0,0,0.05);
        }
        .gallery-mini img:hover {
            transform: scale(1.02);
            border-color: var(--primary-accent);
        }
        .badge-multi {
            background: var(--primary-accent);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            display: inline-block;
        }
        .contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        .contact-details {
            flex: 1;
            background: white;
            border-radius: 32px;
            padding: 2rem;
            box-shadow: var(--card-shadow);
        }
        .map-placeholder {
            flex: 1;
            background: #f0e7de;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background-image: url('https://picsum.photos/id/104/600/400?grayscale');
            background-size: cover;
            background-position: center;
            color: white;
            font-weight: bold;
            position: relative;
        }
        .map-overlay {
            background: rgba(0,0,0,0.55);
            width: 100%;
            height: 100%;
            border-radius: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 1rem;
        }
        footer {
            background: var(--primary-dark);
            color: #e7d9ce;
            padding: 2.5rem 0;
            text-align: center;
        }
        @media (max-width: 850px) {
            .hero-text h1 { font-size: 2.3rem; }
            .nav-inner { flex-direction: column; gap: 10px; }
            .gallery-mini { grid-template-columns: repeat(2,1fr); }
        }
        .testimonial-highlight {
            background: #fff2e9;
            border-left: 5px solid var(--primary-accent);
            padding: 1.2rem;
            border-radius: 24px;
            margin-top: 1.5rem;
        }
		.hero-slider-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.hero-slider-full .swiper {
  width: 100%;
  height: 70vh;
}

.hero-slider-full img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.hero-content {
  text-align: center;
  padding: 60px 20px;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 20px 0;
}

.hero-text p {
  font-size: 18px;
  color: #555;
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #777;
}

.info-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.info-item {
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-section {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
  overflow: hidden;
}

/* Fondo decorativo animado */
.services-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 60%);
  top: -200px;
  left: -200px;
  animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(40px); }
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.services-header h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 18px;
  opacity: 0.8;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* CARDS */
.service-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 18px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover animado */
.service-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Icono */
.service-item i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #3b82f6;
}

/* Título */
.service-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Badge final */
.services-badge {
  margin-top: 40px;
  text-align: center;
  padding: 15px 25px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  display: inline-block;
  border-radius: 50px;
  font-size: 15px;
}
.maintenance-agency {
  position: relative;
  padding: 110px 20px;
  background: #ffffff; /* ?? fondo blanco */
  color: #111;
  overflow: hidden;
}

/* Glow decorativo suave */
.maintenance-agency::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 65%);
  top: -300px;
  right: -300px;
  animation: floatSoft 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(60px); }
}

/* HEADER */
.maintenance-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px auto;
}

.maintenance-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 10px;
  color: #555;
}

.maintenance-header h2 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #111;
}

.maintenance-header p {
  font-size: 18px;
  color: #555;
  opacity: 0.9;
}

/* GRID */
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD DARK PREMIUM */
.maintenance-card {
  background: linear-gradient(135deg, #0a0f1c, #0b1220);
  color: #fff;

  border-radius: 20px;
  padding: 30px;

  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* hover */
.maintenance-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  border: 1px solid rgba(59,130,246,0.4);
}

/* ICONOS */
.maintenance-card i {
  font-size: 32px;
  color: #3b82f6;
  margin-bottom: 14px;
}

/* CTA */
.maintenance-cta {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

/* CTA BOX DARK */
.cta-box {
  text-align: center;
  padding: 35px;
  border-radius: 22px;

  background: linear-gradient(135deg, #0a0f1c, #0b1220);
  color: #fff;

  border: 1px solid rgba(255,255,255,0.08);
  max-width: 700px;
}

.cta-box h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cta-box p {
  opacity: 0.8;
  margin-bottom: 20px;
}

/* BOTONES */
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #3b82f6;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* TESTIMONIAL DARK */
.maintenance-testimonial {
  margin-top: 60px;
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border-radius: 20px;

  background: linear-gradient(135deg, #0a0f1c, #0b1220);
  color: #fff;

  border: 1px solid rgba(255,255,255,0.08);
}

.quote-icon {
  font-size: 24px;
  color: #3b82f6;
  margin-bottom: 10px;
}
.gallery-section {
  padding: 100px 20px;
  background: #fff;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* IMÁGENES */
.gallery-item {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* BADGE */
.gallery-badge {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.gallery-badge i {
  color: #3b82f6;
  margin-right: 6px;
}

/* ?? LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.9);
  animation: zoomIn 0.3s ease forwards;
}

@keyframes zoomIn {
  to { transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #3b82f6;
}
/* KICKER (micro etiqueta superior) */
.gallery-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TITLE */
.gallery-header h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #111;
}

/* SUBTEXT */
.gallery-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}
.gallery-trust-badge {
  margin-top: 35px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 50px;

  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);

  font-size: 14px;
  color: #1f2937;

  backdrop-filter: blur(6px);
}

.gallery-trust-badge i {
  color: #3b82f6;
}
.trust-section {
  padding: 100px 20px;
  background: #ffffff;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* KICKER */
.trust-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TITLE */
.trust-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #111;
}

/* TEXT */
.trust-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/* LISTA */
.trust-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.trust-list i {
  color: #3b82f6;
  font-size: 18px;
}

/* RATING */
.trust-rating {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 50px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  font-size: 14px;
  color: #1f2937;
}

.trust-rating i {
  color: #fbbf24;
}

/* CARD DERECHA */
.trust-card {
  background: linear-gradient(135deg, #0a0f1c, #0b1220);
  color: #fff;
  padding: 35px;
  border-radius: 22px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.trust-card i {
  font-size: 36px;
  color: #3b82f6;
  margin-bottom: 10px;
}

.trust-card img {
  width: 100%;
  margin-top: 15px;
  border-radius: 16px;
}
.location-section {
  padding: 100px 20px;
  background: #ffffff;
}

/* HEADER */
.location-header {
  text-align: center;
  margin-bottom: 50px;
}

.location-header h2 {
  font-size: 42px;
  color: #111;
}

/* GRID */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* INFO */
.location-info h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #111;
}

.location-info p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.location-info a {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

/* FEATURES */
.location-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.location-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
}

.location-features i {
  color: #3b82f6;
}

/* BOTÓN */
.location-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 22px;
  border-radius: 50px;
  background: #3b82f6;
  color: #fff !important;
  font-weight: 600;
  transition: 0.3s ease;
}

.location-btn:hover {
  background: #2563eb;
  transform: translateY(-3px);
}

/* MAP CARD */
.location-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-card {
  width: 100%;
  padding: 40px;
  border-radius: 22px;

  background: linear-gradient(135deg, #0a0f1c, #0b1220);
  color: #fff;

  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.map-card i {
  font-size: 40px;
  color: #3b82f6;
  margin-bottom: 10px;
}

.map-card h3 {
  margin-bottom: 10px;
}

.map-card span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.7;
}
.contact-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0f1c, #0b1220); /* igual servicios */
  color: #fff;
  overflow: hidden;
}

/* glow suave */
.contact-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 60%);
  top: -250px;
  left: -250px;
  animation: floatSoft 14s ease-in-out infinite;
}

/* HEADER */
.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.contact-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-header p {
  opacity: 0.8;
  font-size: 18px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FORM CARD */
.contact-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(12px);
}

.contact-form-card h3 {
  margin-bottom: 20px;
}

/* INPUTS PRO */
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25);
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

/* BUTTON */
.contact-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: #3b82f6;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #2563eb;
  transform: translateY(-3px);
}

/* INFO CARD */
.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 30px;
}

/* PHONE */
.contact-phone {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-phone i {
  color: #3b82f6;
}

/* HIGHLIGHT */
.contact-highlight {
  margin-top: 20px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
}

/* RATING */
.contact-rating {
  margin-top: 15px;
  opacity: 0.85;
}

.contact-rating i {
  color: #fbbf24;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25);
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

.contact-btn {
  padding: 14px;
  border-radius: 50px;
  background: #3b82f6;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #2563eb;
  transform: translateY(-3px);
}