*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1E3A5F;
  --navy-dark: #0F1F33;
  --navy-deeper: #0A1424;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --white: #FFFFFF;
  --off-white: #F8F6F3;
  --gray-100: #EDEBE7;
  --gray-200: #C8C5C0;
  --gray-400: #8B8883;
  --gray-600: #5C5A56;
  --dark: #1A1A18;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1100px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  background: var(--navy-deeper);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
}

.section,
.services {
  border-bottom: 2px solid var(--gold);
}

.section {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
}

.section-title--light {
  color: var(--white);
}

.section-title--dark {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 16px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deeper);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-deeper);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deeper);
}

.btn-outline--light {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline--light:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ========== HEADER ========== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 20, 36, 0.45);
  backdrop-filter: blur(12px);
  padding: 0;
  height: var(--header-height);
  transition: background 0.3s ease;
}

.header-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.header-particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
}

.header-particles span:nth-child(1)  { left: 10px;  top: 15%;  animation: float-particle 4s ease-in-out infinite; }
.header-particles span:nth-child(2)  { left: 16px;  top: 30%;  animation: float-particle 4s ease-in-out infinite 0.6s; }
.header-particles span:nth-child(3)  { left: 8px;   top: 45%;  animation: float-particle 4s ease-in-out infinite 1.2s; }
.header-particles span:nth-child(4)  { left: 14px;  top: 55%;  animation: float-particle 4s ease-in-out infinite 1.8s; }
.header-particles span:nth-child(5)  { left: 10px;  top: 70%;  animation: float-particle 4s ease-in-out infinite 2.4s; }
.header-particles span:nth-child(6)  { left: 16px;  top: 85%;  animation: float-particle 4s ease-in-out infinite 3s; }
.header-particles span:nth-child(7)  { right: 10px; top: 20%;  animation: float-particle 4s ease-in-out infinite 0.3s; }
.header-particles span:nth-child(8)  { right: 16px; top: 35%;  animation: float-particle 4s ease-in-out infinite 0.9s; }
.header-particles span:nth-child(9)  { right: 8px;  top: 50%;  animation: float-particle 4s ease-in-out infinite 1.5s; }
.header-particles span:nth-child(10) { right: 14px; top: 65%;  animation: float-particle 4s ease-in-out infinite 2.1s; }
.header-particles span:nth-child(11) { right: 10px; top: 80%;  animation: float-particle 4s ease-in-out infinite 2.7s; }
.header-particles span:nth-child(12) { right: 16px; top: 90%;  animation: float-particle 4s ease-in-out infinite 3.3s; }

@keyframes float-particle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  15% { opacity: 1; transform: translateY(-6px) scale(1); }
  30% { opacity: 0.6; transform: translateY(3px) scale(0.8); }
  45% { opacity: 1; transform: translateY(-3px) scale(1.1); }
  60% { opacity: 0.4; transform: translateY(0) scale(0.7); }
  75% { opacity: 0.8; transform: translateY(4px) scale(1); }
  90% { opacity: 0.2; transform: translateY(-2px) scale(0.6); }
}

.header.scrolled {
  background: rgba(10, 20, 36, 0.84);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo img {
  height: 34px;
  display: block;
}

.header-nav {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.header-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 0 100px;
  border-bottom: 2px solid var(--gold);
  background: var(--navy-deeper);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) brightness(0.45);
  transition: filter 2.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
}

.hero.revealed .hero-image {
  filter: grayscale(0%) brightness(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 36, 0.92);
  z-index: 1;
  pointer-events: none;
  transition: background 2.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
}

.hero.revealed .hero-overlay {
  background: rgba(10, 20, 36, 0.50);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-content > * {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(40px);
  transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero.revealed .hero-title {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero.revealed .hero-divider {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0.8s;
}

.hero.revealed .hero-subtitle {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 1.2s;
}

.hero.revealed .hero-btn {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 1.6s;
}

.hero-content {
  text-align: center;
  max-width: 780px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 0;
  line-height: 1.1;
}

.hero-title span {
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--gold);
  display: block;
  margin-top: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 36px;
  letter-spacing: 0.5px;
}

.hero-btn {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  animation: cta-glow 3s ease-in-out infinite 2.8s;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.4); }
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== ABOUT ========== */

.about {
  display: flex;
  align-items: flex-start;
  padding: 24px 0 24px 100px;
  overflow: hidden;
  gap: 120px;
}

.about-text-panel {
  flex: 1;
  max-width: 520px;
  background: rgba(10, 20, 36, 0.97);
  padding: 28px 32px;
}

.about-text-panel .section-label {
  color: var(--gold);
  margin-bottom: 12px;
}

.about-text-panel .section-title {
  color: var(--white);
  margin-bottom: 24px;
}

.about-text-panel p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
}

.about-video-panel {
  flex: 1;
  max-width: 1100px;
  height: 540px;
  position: relative;
  overflow: hidden;
}

.about-video-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 32px solid var(--navy-deeper);
  pointer-events: none;
  z-index: 4;
}

.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease;
}

.about-video-1 {
  opacity: 1;
}

.about-video-2 {
  opacity: 0;
}

.about-mobile-play {
  display: none;
}

/* ========== TESTIMONIALS ========== */

.testimonial-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  backface-visibility: hidden;
  will-change: opacity;
}

.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 36, 0.72);
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonial-bg-img:nth-child(1) {
  animation: bg-cycle 20s infinite;
}

.testimonial-bg-img:nth-child(2) {
  animation: bg-cycle 20s infinite 5s;
}

.testimonial-bg-img:nth-child(3) {
  animation: bg-cycle 20s infinite 10s;
}

.testimonial-bg-img:nth-child(4) {
  animation: bg-cycle 20s infinite 15s;
}

@keyframes bg-cycle {
  0% { opacity: 0; }
  5% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}

/* ========== SERVICES (ACCORDION) ========== */

.services {
  overflow: hidden;
}

.services-header {
  position: relative;
  text-align: center;
  padding: 80px 24px 48px;
  overflow: hidden;
}

.services-header::before {
  content: '';
  position: absolute;
  inset: -20%;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='90' viewBox='0 0 52 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 2l24 14v28L26 58 2 44V16z' fill='none' stroke='rgba(212,175,55,0.22)' stroke-width='1'/%3E%3Cpath d='M26 88L2 74V46l24 14 24-14v28z' fill='none' stroke='rgba(212,175,55,0.22)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 52px 90px;
  mask-image: radial-gradient(ellipse at center, transparent 40%, black 60%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 40%, black 60%);
  pointer-events: none;
  z-index: 0;
}

.services-grid {
  display: flex;
  height: 700px;
}

.service-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 20, 36, 0.65);
  transition: background 0.5s ease;
}

.service-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.service-card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 20px;
  max-width: 260px;
  transition: transform 0.4s ease;
}

.service-card:nth-child(3) .service-card-title {
  font-size: 1.1rem;
}

.service-card-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Accordion effect */
.services-grid:hover .service-card {
  flex: 0.6;
}

.services-grid:hover .service-card:hover {
  flex: 1.6;
}

.service-card:hover .service-card-overlay {
  background: rgba(10, 20, 36, 0.4);
}

.service-card:hover .service-card-title {
  transform: translateY(-4px);
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services-header {
    padding: 60px 24px 32px;
  }

  .services-grid {
    flex-direction: column;
    height: auto;
  }

  .service-card {
    flex: none !important;
    height: 320px;
  }

  .service-card-title {
    font-size: 1.1rem;
    white-space: normal;
    max-width: 280px;
  }

  .services-grid:hover .service-card {
    flex: none;
  }
}

/* ========== DEPOIMENTOS ========== */

.reviews-carousel {
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 0 0 calc((100% - 60px) / 4);
  cursor: pointer;
}

.review-card-link:hover .review-card {
  transform: translateY(-4px);
  border-color: #c6ad72;
}

.review-card {
  height: 100%;
  background: rgba(34, 34, 34, 0.85);
  border: 2px solid rgba(198, 173, 114, 0.3);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 28px;
}

.review-date {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.review-platform {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
}

.review-stars {
  color: #f6bb06;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1;
}

.review-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: -webkit-line-clamp 0.3s ease, max-height 0.3s ease;
}

.review-text.expanded {
  -webkit-line-clamp: unset;
}

.review-read-more {
  font-size: 12px;
  color: #c6ad72;
  cursor: pointer;
  margin-top: 8px;
  display: none;
  user-select: none;
  flex-shrink: 0;
}

.review-read-more.visible {
  display: block;
}

.review-read-more:hover {
  text-decoration: underline;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 2px solid #c6ad72;
  border-radius: 50%;
  background: #222;
  color: #c6ad72;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.reviews-carousel:hover .carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}

.carousel-arrow:hover {
  background: #c6ad72;
  color: #222;
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #c6ad72;
  transform: scale(1.3);
}
@media (max-width: 900px) {
  .review-card-link {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 540px) {
  .review-card-link {
    flex: 0 0 100%;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

/* ========== CONTACT ========== */

.contact {
  background: var(--navy-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p,
.contact-item .schedule {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  text-decoration: none;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-day {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  min-width: 110px;
}

.schedule-time {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-align: right;
}

.schedule-closed {
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-item-sep {
  display: block;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  margin: 2px 0;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deeper);
  transform: translateY(-2px);
}



/* ========== MAPA ========== */

.map-wrapper {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 350px;
  height: 100%;
}

.map-wrapper iframe {
  display: block;
  height: 100%;
}

/* ========== FOOTER ========== */

.footer {
  background: var(--navy-deeper);
  color: rgba(255, 255, 255, 0.5);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  height: 34px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 8px;
  max-width: 300px;
  line-height: 1.5;
}

.footer h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-phone {
  margin-top: 24px;
}

.footer-phone a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  transition: color 0.3s ease;
}

.footer-phone a:hover {
  color: var(--gold);
}

.footer-phone-sep {
  display: block;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  margin: 2px 0;
}

.footer-newsletter-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form .btn {
  font-size: 0.7rem;
  padding: 12px 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
  .header-toggle {
    display: flex;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 20, 36, 0.95);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-nav.active {
    display: flex;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-title span {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
  }

  .service-card-title {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ========== ABOUT MOBILE ========== */

  .about {
    flex-direction: column;
    padding: 32px 20px;
    gap: 24px;
  }

  .about-text-panel {
    width: 100%;
    flex: none;
    max-width: none;
    padding: 24px 20px;
  }

  .about-video-panel {
    width: 100%;
    flex: none;
    height: 300px;
    position: relative;
  }

  .about-video-panel::after {
    display: none;
  }

  .about-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .about-mobile-play {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(10, 20, 36, 0.3);
    color: var(--gold);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .about-mobile-play:hover {
    background: rgba(10, 20, 36, 0.15);
  }

  .about-mobile-play.hidden {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-title span {
    font-size: 0.95rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.75rem;
  }

  .header-logo img {
    height: 26px;
  }
}
