/* ============== Comex Business — Static CSS ============== */
:root {
  --navy: #1B2A4A;
  --navy-deep: #111827;
  --royal: #0055A4;
  --bright: #0088CC;
  --cyan: #5BC0DE;
  --glow: #A8D8EA;
  --gold: #D4A843;
  --gold-light: #E8C76A;
  --background: #ffffff;
  --foreground: #1a1f36;
  --muted: #f4f6f9;
  --muted-foreground: #6b7280;
  --secondary: #f4f6f9;
  --border: #e5e9ef;
  --gradient-hero: linear-gradient(135deg, rgba(27, 42, 74, 0.95), rgba(0, 85, 164, 0.82));
  --gradient-card: linear-gradient(135deg, #0055A4, #0088CC);
  --gradient-cta: linear-gradient(135deg, #D4A843, #E8C76A);
  --gradient-navy: linear-gradient(135deg, #1B2A4A 0%, #0055A4 100%);
  --shadow-elegant: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(91, 192, 222, 0.3);
  --shadow-glow-gold: 0 0 40px rgba(212, 168, 67, 0.35);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

ul {
  list-style: none;
}

section {
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============== Utilities ============== */
.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.shadow-elegant {
  box-shadow: var(--shadow-elegant);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.bg-navy {
  background: var(--navy);
  color: #fff;
}

.bg-navy-deep {
  background: var(--navy-deep);
  color: #fff;
}

.bg-secondary {
  background: var(--secondary);
}

.text-cyan {
  color: var(--cyan);
}

.text-royal {
  color: var(--royal);
}

.text-gold {
  color: var(--gold);
}

/* Story link underline */
.story-link {
  position: relative;
  display: inline-block;
}

.story-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--cyan);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.story-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* CTA buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--gradient-cta);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--royal);
  transform: translateY(-2px);
}

/* ============== Loading Screen ============== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s ease;
}

.loading-screen.hide {
  transform: translateY(-100%);
}

.loading-screen img {
  width: 280px;
  max-width: 70vw;
  animation: scaleIn 0.9s ease-out;
  position: relative;
  z-index: 10;
}

.loading-bar {
  margin-top: 32px;
  height: 4px;
  width: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.loading-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cyan), var(--glow));
  animation: loadBar 2s linear infinite;
}

@keyframes loadBar {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============== Header ============== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(27, 42, 74, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-elegant);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 48px;
}

.main-nav {
  display: none;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--cyan);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.lang-btn:hover {
  color: var(--cyan);
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 140px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(27, 42, 74, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}

.lang-dropdown.open {
  display: block;
}

.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.88rem;
  text-align: left;
  transition: background 0.2s;
}

.lang-dropdown button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown button span:last-child {
  text-transform: uppercase;
}

.header-cta {
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--gradient-cta);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.menu-toggle {
  color: #fff;
  display: flex;
}

@media (min-width: 1024px) {

  .main-nav,
  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 74, 0.8);
  backdrop-filter: blur(8px);
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 320px;
  max-width: 85vw;
  background: var(--navy);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-menu-header img {
  height: 40px;
}

.mobile-menu-header button {
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-langs {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.mobile-langs button {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-langs button.active {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

.mobile-cta {
  margin-top: 24px;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: var(--gradient-cta);
  color: var(--navy);
  font-weight: 700;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

#particles-hero {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120vmin;
  height: 120vmin;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 2;
  animation: spinSlow 60s linear infinite;
}

.hero-ring div {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(91, 192, 222, 0.4);
}

.hero-ring div:nth-child(1) {
  inset: 0;
}

.hero-ring div:nth-child(2) {
  inset: 32px;
  border-color: rgba(91, 192, 222, 0.3);
}

.hero-ring div:nth-child(3) {
  inset: 80px;
  border-color: rgba(91, 192, 222, 0.2);
}

@keyframes spinSlow {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1024px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.hero-rotating-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-rotating {
  max-width: 720px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  transition: opacity 0.6s, transform 0.6s;
}

.hero-rotating.fade-out {
  opacity: 0;
  transform: translateY(-12px);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  animation: bounceY 2s infinite;
  z-index: 5;
  font-size: 2rem;
}

@keyframes bounceY {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -10px);
  }
}

/* ============== Clients marquee ============== */
.clients-section {
  padding: 80px 0;
  background: var(--secondary);
}

.clients-title {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 40px;
}

.marquee-wrap {
  overflow: hidden;
}

.marquee {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-foreground);
  transition: color 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.marquee-item:hover {
  color: var(--royal);
}

.marquee-item i {
  font-size: 1.75rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============== About ============== */
.about-section {
  padding: 96px 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.about-section p {
  color: var(--muted-foreground);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.about-image-glow {
  position: absolute;
  inset: -16px;
  background: var(--gradient-card);
  border-radius: 24px;
  opacity: 0.3;
  filter: blur(40px);
}

.about-image-wrap img {
  position: relative;
  border-radius: 16px;
  box-shadow: var(--shadow-elegant);
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 2px solid rgba(91, 192, 222, 0.3);
}

/* ============== Benefits ============== */
.benefits-section {
  padding: 96px 0;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

#particles-benefits {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.benefits-section .container {
  position: relative;
  z-index: 5;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.section-head .subtitle {
  color: var(--gold);
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 67, 0.4);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
  color: #fff;
  font-size: 1.5rem;
}

.benefit-card:hover .benefit-icon {
  box-shadow: var(--shadow-glow-gold);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============== Services ============== */
.services-section {
  padding: 96px 0;
  background: var(--secondary);
}

.services-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.service-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: left;
  transition: all 0.3s;
  width: 100%;
  align-items: flex-start;
}

.service-item:hover {
  border-color: var(--royal);
}

.service-item.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow-elegant);
}

.service-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--royal);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.service-item.active .service-item-icon {
  background: var(--gold);
  color: var(--navy);
}

.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.service-item-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-top: 4px;
  display: none;
}

.service-item.active .service-item-desc {
  display: block;
  color: rgba(255, 255, 255, 0.8);
}

.service-panel {
  background: var(--gradient-navy);
  border-radius: 16px;
  padding: 40px;
  min-height: 420px;
  color: #fff;
  box-shadow: var(--shadow-elegant);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-panel-bg {
  position: absolute;
  right: -48px;
  bottom: -48px;
  opacity: 0.1;
  font-size: 18rem;
  line-height: 1;
}

.service-panel-content {
  position: relative;
  z-index: 2;
}

.service-panel-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-panel h3 {
  font-size: 1.875rem;
  margin-bottom: 16px;
}

.service-panel p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ============== Stats ============== */
.stats-section {
  padding: 80px 0;
  background: var(--gradient-navy);
  color: #fff;
  overflow: hidden;
}

#particles-stats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 5;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'Space Grotesk', monospace;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============== Testimonials ============== */
.testimonials-section {
  padding: 96px 0;
  background: var(--secondary);
}

.testimonials-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.swiper-testimonials {
  padding-bottom: 60px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-elegant);
  position: relative;
  overflow: hidden;
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 5rem;
  color: rgba(212, 168, 67, 0.15);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
  color: var(--foreground);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-name {
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.88rem;
  color: var(--muted-foreground);
}

.swiper-testimonials .swiper-pagination-bullet {
  background: var(--royal);
}

/* ============== Blog ============== */
.blog-section {
  padding: 96px 0;
}

.blog-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 64px;
}

.blog-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-image {
  height: 208px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-category {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(91, 192, 222, 0.1);
  color: var(--royal);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.blog-card:hover h3 {
  color: var(--royal);
}

.blog-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--royal);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ============== Contact ============== */
.contact-section {
  padding: 96px 0;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

#particles-contact {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 5;
}

.contact-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: rgba(91, 192, 222, 0.4);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-card-label {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-card-value {
  font-weight: 600;
}

.contact-hq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .contact-hq-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hq {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.contact-hq-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-hq-head span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.contact-hq p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

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

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-row a:hover {
  background: var(--cyan);
  color: var(--navy);
}

.contact-map {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.contact-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.contact-map-content {
  position: relative;
  z-index: 2;
}

.contact-map h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-map p {
  color: rgba(255, 255, 255, 0.75);
}

/* ============== Quote Form ============== */
.quote-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--secondary), var(--background));
}

.quote-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.quote-head {
  text-align: center;
  margin-bottom: 48px;
}

.quote-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.quote-head p {
  color: var(--muted-foreground);
  font-size: 1.1rem;
}

.quote-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-elegant);
}

@media (min-width: 768px) {
  .quote-form {
    padding: 40px;
  }
}

.form-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: block;
}

.field.full {
  grid-column: 1 / -1;
}

.field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(0, 85, 164, 0.2);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: #ef4444;
}

.field-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 8px;
}

.submit-btn {
  margin-top: 32px;
  width: 100%;
  padding: 16px 40px;
  border-radius: 12px;
  background: var(--gradient-cta);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .submit-btn {
    width: auto;
  }
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============== Footer ============== */
.site-footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
}

.footer-brand img {
  height: 170px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--cyan);
  color: var(--navy);
}

.footer-col h4 {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-col a {
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-contact-li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-li i {
  color: var(--cyan);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--cyan);
}

/* ============== WhatsApp float ============== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elegant);
  animation: pulseRing 2s infinite;
  transition: transform 0.3s;
  font-size: 1.6rem;
}

.wa-float:hover {
  transform: scale(1.1);
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============== Toast ============== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #fff;
  color: var(--foreground);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-elegant);
  border-left: 4px solid var(--cyan);
  min-width: 280px;
  max-width: 400px;
  animation: slideInRight 0.3s ease;
  font-size: 0.92rem;
}

.toast.success {
  border-left-color: #10b981;
}

.toast.error {
  border-left-color: #ef4444;
}

@keyframes slideInRight {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============== Particles ============== */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(91, 192, 222, 0.8);
  animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.7;
  }
}

/* AOS-ish fallback */
[data-aos] {
  opacity: 0;
  transition: all 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}