/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  position: relative;
}
body::after {
  content: "";
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.04; pointer-events: none; z-index: 9999;
  filter: contrast(150%) brightness(150%);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== VARIABLES ===== */
:root {
  --navy: #09090b;
  --dark2: #121214;
  --dark3: #18181b;
  --gold: #d4af37;
  --gold-light: #f1e5ac;
  --cream: #fafafa;
  --cream-dim: rgba(250, 250, 250, 0.65);
  --red: #1a365d;
  --red-light: #2c5282;
  --glass: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  --section-padding: 10rem 0;
}

/* ===== LOGO BLENDING ===== */
.blend-logo {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blend-logo[data-processed="true"] {
  opacity: 1;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.1rem 0;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(9,9,11,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 54px; /* Perfectly tuned height */
}
.nav-logo {
  display: flex; align-items: center; gap: 0rem;
}
.nav-icon {
  width: 59px; height: 59px; object-fit: contain;
  margin: 0;
}
.nav-text-logo {
  width: 171px; height: auto; object-fit: contain;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-link {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: var(--red);
  color: #fff; font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--red-light); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 7rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: var(--dark);
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(30,58,138,0.25) 0%, transparent 70%),
              linear-gradient(to bottom, transparent 0%, var(--dark) 100%);
  z-index: 1;
}
.hero-circles .circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(30,58,138,0.15);
  animation: pulse-ring 6s ease-in-out infinite;
}
.c1 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.c2 { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.5s; }
.c3 { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 3s; }
@keyframes pulse-ring { 0%,100%{opacity:0.2;} 50%{opacity:0.5;} }

.hero-content {
  position: relative;
  text-align: center; max-width: 780px;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(212,207,193,0.35);
  color: var(--gold);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.45rem 1.2rem; border-radius: 50px;
  background: rgba(212,207,193,0.06);
}
.hero-logo {
  display: none; /* Removed as requested */
}
/* @keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} } */

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  font-weight: 300; line-height: 1.05;
  display: flex; flex-direction: column; gap: 0.05em;
}
.hero-title .line { 
  display: block; 
  opacity: 0; transform: translateY(20px);
  animation: reveal-up 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) { animation-delay: 0.5s; }

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title .italic { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--cream-dim); max-width: 580px;
  line-height: 1.8; font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.btn-primary {
  background: var(--red);
  color: #fff; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 2px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(30,58,138,0.35);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30,58,138,0.45);
}
.btn-ghost {
  border: 1px solid rgba(245,240,235,0.3);
  color: var(--cream); font-size: 0.85rem;
  font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 2px;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245,240,235,0.05);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 0.5rem;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 500;
  color: var(--gold-light);
}
.stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); }
.stat-divider { width: 1px; height: 40px; background: rgba(245,240,235,0.15); }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce { 0%,100%{transform:translateY(0);opacity:1;} 50%{transform:translateY(10px);opacity:0.4;} }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--red);
  padding: 0.85rem 0; overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 2rem;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); font-weight: 500;
}
.marquee-track .dot { color: rgba(255,255,255,0.5); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding: var(--section-padding); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.section-desc {
  margin-top: 1rem;
  font-size: 0.95rem; color: var(--cream-dim);
  line-height: 1.7; max-width: 540px; margin-left: auto; margin-right: auto;
}
.section-header.light .section-title { color: var(--dark); }
.section-header.light .section-desc { color: rgba(13,10,8,0.65); }

/* ===== SERVICES ===== */
.services-section { background: var(--dark2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 8px; padding: 3.5rem 2.5rem;
  position: relative; overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 75%);
  opacity: 0; transition: opacity 0.6s;
}
.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.8rem; margin-bottom: 1.5rem; transition: transform 0.6s; }
.service-card:hover .service-icon { transform: scale(1.2) rotate(5deg); }
.service-card.featured {
  border-color: rgba(30,58,138,0.35);
  background: linear-gradient(135deg, rgba(30,58,138,0.12) 0%, var(--dark3) 60%);
}
.service-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.88rem; color: var(--cream-dim); line-height: 1.65; }
.service-tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 50px;
  background: rgba(212,207,193,0.12); color: var(--gold);
  border: 1px solid rgba(212,207,193,0.25);
}
.service-tag.urgent { background: rgba(30,58,138,0.15); color: #60a5fa; border-color: rgba(30,58,138,0.3); }

/* ===== PRICING ===== */
.pricing-section { background: var(--cream); }
.pricing-section .section-title { color: var(--dark); }
.pricing-section .section-eyebrow { color: var(--red); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.price-category {
  background: var(--red);
  color: #fff;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; padding: 0.9rem 1.5rem;
}
.price-list { list-style: none; padding: 0.5rem 0; }
.price-list li {
  display: flex; justify-content: space-between;
  padding: 0.9rem 1.75rem;
  font-size: 0.9rem; color: var(--cream-dim);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.price-list li:last-child { border-bottom: none; }
.price-list li:hover { background: rgba(255,255,255,0.03); color: var(--cream); }
.price-list li span:last-child { font-weight: 500; color: var(--gold); }
.price-note {
  text-align: center; margin-top: 2rem;
  font-size: 0.8rem; color: rgba(13,10,8,0.5);
  font-style: italic;
}

/* ===== WHY US ===== */
.why-section { background: var(--dark); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.why-text .section-title { text-align: left; }
.why-body {
  font-size: 0.95rem; color: var(--cream-dim);
  line-height: 1.8; margin: 1.5rem 0 2rem;
}
.why-points { display: flex; flex-direction: column; gap: 1.5rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  color: var(--gold); font-size: 1rem;
  margin-top: 0.15rem; flex-shrink: 0;
}
.why-point strong { display: block; color: var(--cream); margin-bottom: 0.25rem; font-weight: 500; }
.why-point p { font-size: 0.87rem; color: var(--cream-dim); line-height: 1.6; }
.why-visual { display: flex; align-items: center; justify-content: center; }
.why-logo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.why-logo { width: 340px; position: relative; z-index: 1; }
.why-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(30,58,138,0.2);
}
.r1 { width: 350px; height: 350px; }
.r2 { width: 450px; height: 450px; animation-direction: reverse; animation-duration: 30s; border-style: dashed; }
@keyframes spin-ring { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ===== ABOUT ===== */
.about-section { background: var(--dark2); }
.about-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.about-text p {
  font-size: 1.15rem; color: var(--cream-dim);
  line-height: 1.85; margin-bottom: 1.2rem;
}
.about-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.about-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 8px; padding: 2.5rem 1.75rem;
  text-align: center; display: flex; flex-direction: column; gap: 0.5rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-card:hover { 
  border-color: var(--gold); 
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.about-num-wrap { display: flex; align-items: center; justify-content: center; gap: 2px; }
.about-num, .about-num-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 500; color: var(--gold-light);
}
.about-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }

/* ===== CONTACT ===== */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.contact-grid.centered-contact {
  grid-template-columns: repeat(3, minmax(240px, 300px));
  justify-content: center;
}
@media (max-width: 950px) {
  .contact-grid.centered-contact {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.contact-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 8px; padding: 3rem 2rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1.5rem;
  min-height: 420px;
}
.contact-card:hover { 
  transform: translateY(-10px); 
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.map-preview { margin: 1rem 0; overflow: hidden; border-radius: 4px; width: 100%; }
.map-preview iframe { transition: filter 0.4s ease; }
.contact-card:hover .map-preview iframe { filter: none; }
.contact-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-card p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; margin: 0; }
.contact-link {
  display: inline-block;
  font-size: 0.85rem; color: var(--gold);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  margin-top: 0.5rem;
}
.contact-link:hover { color: var(--gold-light); }
.whatsapp-cta {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding: 4rem 2rem;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}
.whatsapp-cta p { font-size: 1rem; color: var(--cream-dim); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: #fff;
  font-size: 0.9rem; font-weight: 600;
  padding: 0.9rem 2rem; border-radius: 50px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: #050914;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { width: 58px; height: auto; object-fit: contain; }
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; color: var(--cream);
}
.footer-tagline { font-size: 0.75rem; color: var(--cream-dim); letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-dim); transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(245,240,235,0.35); }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  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.4);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-pop 0.5s 1.5s both;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
@keyframes wa-pop { from{opacity:0;transform:scale(0);} to{opacity:1;transform:scale(1);} }

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-left.revealed, .reveal-right.revealed { transform: translateX(0); }

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

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(30,58,138,0.4);
  box-shadow: 0 12px 40px rgba(30,58,138,0.2);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 78vw; max-width: 320px;
    background: rgba(13,10,8,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 2.5rem;
    padding: 2rem;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { right: 0; }
  .nav-link, .nav-cta { font-size: 1.1rem; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-logo { width: 200px; }
  .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .section { padding: 4rem 0; }
}
@media (max-width: 400px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .stat-divider { display: none; }
  .about-cards { grid-template-columns: 1fr; }
}
