/* ============================================
   DIBIA SOLUTIONS — Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --deep-teal: #004B5D;
  --dark-teal: #00404D;
  --gold: #D4AA00;
  --gold-hover: #e6ba00;
  --gold-glow: rgba(212, 170, 0, 0.3);
  --charcoal: #333333;
  --cream: #F7F5E8;
  --white: #FFFFFF;
  --overlay-bg: rgba(0, 64, 77, 0.92);

  /* Typography */
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'DM Sans', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-overlay: 0 20px 60px rgba(0, 0, 0, 0.3);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
}

/* --- CSS Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul,
ol {
  list-style: none;
}

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

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

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

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

/* --- Section Base --- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section--dark {
  background: var(--deep-teal);
  color: var(--white);
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section--dark .section__title {
  color: var(--white);
}

.section__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark-teal);
}

.btn--primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateY(-2px);
}

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

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background: var(--deep-teal);
  color: var(--white);
}

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

.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--dark-teal);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 36px;
}

.btn--whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

/* ============================================
   SECTION 1: NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-medium);
}

.nav--scrolled {
  background: rgba(0, 75, 93, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

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

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

.nav__cta {
  margin-left: 12px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--deep-teal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all var(--transition-medium);
}

.nav__mobile--open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile .nav__link {
  font-size: 1.5rem;
  color: var(--cream);
}

.nav__mobile .nav__link:hover {
  color: var(--gold);
}

/* ============================================
   SECTION 2: HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--deep-teal);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--cream);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Reveal system: CSS class toggled by JS --- */
.will-reveal {
  /* opacity: 0; REMOVED to ensure visibility */
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-reveal.reveal--left {
  transform: translateX(-30px);
}

.will-reveal.reveal--right {
  transform: translateX(30px);
}

.revealed {
  opacity: 1;
  transform: none !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero__scroll-indicator span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-chevron {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: rotate(45deg) translateY(8px);
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ============================================
   SECTION 3: TRUST BAR
   ============================================ */
.trust {
  padding: 50px 0;
  background: var(--cream);
  overflow: hidden;
}

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

.trust__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust__number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--deep-teal);
}

.trust__label {
  font-size: 0.95rem;
  color: var(--charcoal);
  opacity: 0.7;
}

/* ============================================
   SECTION 4: SOLUTIONS SHOWCASE
   ============================================ */
.solutions {
  padding: var(--section-padding);
  background: var(--deep-teal);
  color: var(--white);
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-medium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  transform: perspective(800px) rotateY(2deg) rotateX(2deg) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.solution-card--coming-soon {
  opacity: 0.6;
}

.solution-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 170, 0, 0.15);
  border-radius: var(--radius-sm);
  color: var(--gold);
}

.solution-card__icon svg {
  width: 28px;
  height: 28px;
}

.solution-card__name {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.solution-card__tagline {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 24px;
}

.solution-card__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.solution-card__badge--demo {
  background: rgba(212, 170, 0, 0.2);
  color: var(--gold);
}

.solution-card__badge--dev {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
}

.solution-card__badge--soon {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* --- Product Spotlight Overlay --- */
.spotlight {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  overflow-y: auto;
}

.spotlight--open {
  display: block;
}

.spotlight__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.spotlight__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 60px auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--charcoal);
  box-shadow: var(--shadow-overlay);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spotlight--open .spotlight__content {
  transform: translateY(0);
  opacity: 1;
}

.spotlight__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.spotlight__close:hover {
  background: var(--deep-teal);
  color: var(--white);
}

.spotlight__name {
  font-size: 2rem;
  color: var(--deep-teal);
  margin-bottom: 12px;
}

.spotlight__description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--charcoal);
}

.spotlight__video {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.spotlight__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.spotlight__features {
  margin-bottom: 32px;
}

.spotlight__features h3 {
  font-size: 1.2rem;
  color: var(--deep-teal);
  margin-bottom: 16px;
}

.spotlight__feature-list {
  display: grid;
  gap: 12px;
}

.spotlight__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.spotlight__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(0, 75, 93, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-teal);
  margin-top: 2px;
}

.spotlight__feature-icon svg {
  width: 14px;
  height: 14px;
}

/* --- Pricing Inside Spotlight --- */
.spotlight__pricing {
  margin-bottom: 32px;
}

.spotlight__pricing h3 {
  font-size: 1.2rem;
  color: var(--deep-teal);
  margin-bottom: 8px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.pricing-toggle__switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--cream);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid #ddd;
  transition: all var(--transition-fast);
}

.pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--deep-teal);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.pricing-toggle__switch--annual::after {
  left: 24px;
}

.pricing-toggle__switch--annual {
  border-color: var(--gold);
}

.pricing-toggle__badge {
  font-size: 0.75rem;
  background: rgba(212, 170, 0, 0.15);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.pricing-card {
  border: 2px solid var(--cream);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition-fast);
}

.pricing-card--recommended {
  border-color: var(--gold);
  background: rgba(212, 170, 0, 0.04);
  position: relative;
}

.pricing-card--recommended::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark-teal);
  padding: 2px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.pricing-card__price {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 4px;
}

.pricing-card__period {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 16px;
}

.pricing-card__feature {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.7;
}

.spotlight__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   SECTION 5: SERVICES
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 75, 93, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--deep-teal);
  transition: all var(--transition-fast);
}

.service-card:hover .service-card__icon {
  background: var(--deep-teal);
  color: var(--gold);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: 1.3rem;
  color: var(--deep-teal);
  margin-bottom: 14px;
}

.service-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.8;
}

.services__cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services__cta-text {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  color: var(--deep-teal);
}

/* ============================================
   SECTION 6: HOW WE WORK (Process Timeline)
   ============================================ */
.process {
  padding: var(--section-padding);
  background: var(--white);
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12.5%;
  width: 75%;
  height: 3px;
  background: var(--cream);
}

.process__line-progress {
  position: absolute;
  top: 35px;
  left: 12.5%;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.1s linear;
}

.process__step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.process__step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-teal);
  position: relative;
  z-index: 1;
  transition: all var(--transition-medium);
}

.process__step--active .process__step-number {
  background: var(--gold);
  color: var(--dark-teal);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.process__step-title {
  font-size: 1.1rem;
  color: var(--deep-teal);
  margin-bottom: 10px;
}

.process__step-text {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* ============================================
   SECTION 7: ABOUT
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__story h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--deep-teal);
  margin-bottom: 20px;
}

.about__story p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--charcoal);
}

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

.about__diff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about__diff-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 75, 93, 0.08);
  border-radius: var(--radius-sm);
  color: var(--deep-teal);
}

.about__diff-icon svg {
  width: 20px;
  height: 20px;
}

.about__diff-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 4px;
}

.about__diff-text {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}

.about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__logo-large {
  max-width: 320px;
  opacity: 0.9;
}

/* ============================================
   SECTION 8: TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--deep-teal);
  color: var(--white);
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 16px;
}

.testimonial-card__inner {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__star {
  color: var(--gold);
  width: 20px;
  height: 20px;
}

.testimonial-card__quote {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.9;
}

.testimonial-card__author {
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-card__role {
  font-size: 0.85rem;
  opacity: 0.6;
}

.testimonial-card__badge {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  background: rgba(212, 170, 0, 0.2);
  color: var(--gold);
  font-family: var(--font-mono);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials__dot--active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ============================================
   SECTION 9: CONTACT
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.contact__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-teal);
  margin-bottom: 6px;
}

.contact__input,
.contact__textarea,
.contact__select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--transition-fast);
}

.contact__input:focus,
.contact__textarea:focus,
.contact__select:focus {
  border-color: var(--gold);
}

.contact__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact__form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.contact__form-success--show {
  display: block;
}

.contact__form-success svg {
  width: 60px;
  height: 60px;
  color: #25D366;
  margin-bottom: 16px;
}

.contact__form-success p {
  font-size: 1.1rem;
  color: var(--deep-teal);
  font-weight: 600;
}

.contact__form-success span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.contact__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--deep-teal);
}

.contact__info-icon svg {
  width: 20px;
  height: 20px;
}

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.contact__social {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--deep-teal);
  transition: all var(--transition-fast);
}

.contact__social:hover {
  background: var(--deep-teal);
  color: var(--gold);
}

.contact__social svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SECTION 10: FOOTER
   ============================================ */
.footer {
  background: var(--dark-teal);
  color: var(--white);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 12px;
  line-height: 1.6;
}

.footer__logo img {
  height: 36px;
  width: auto;
}

.footer__links-title,
.footer__newsletter-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--gold);
}

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

.footer__links-list a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.footer__links-list a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer__newsletter p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer__newsletter-form {
  display: flex;
  gap: 8px;
}

.footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer__newsletter-input:focus {
  border-color: var(--gold);
}

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

.footer__bottom-socials {
  display: flex;
  gap: 16px;
}

.footer__bottom-socials a {
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.footer__bottom-socials a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer__bottom-socials svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--deep-teal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo {
  width: 80px;
  height: 80px;
  animation: preloaderPulse 1.2s ease infinite;
}

@keyframes preloaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* ============================================
   CUSTOM CURSOR (Desktop Only)
   ============================================ */
.cursor {
  display: none;
}

@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease, background 0.2s ease;
    margin-left: -5px;
    margin-top: -5px;
  }

  .cursor--hover {
    width: 36px;
    height: 36px;
    margin-left: -18px;
    margin-top: -18px;
    background: transparent;
    border: 2px solid var(--gold);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- End of Stylesheet --- */