/* ===============================
   ROOT VARIABLES
================================ */
:root{
  --blue:#0b3c6f;
  --gold:#d4af37;
  --dark:#0a1a2f;
  --light:#f6f8fb;
  --text:#222;
}

/* ===============================
   RESET & GLOBAL
================================ */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{ scroll-behavior:smooth; }

body{
  font-family:Segoe UI, Arial, sans-serif;
  color:var(--text);
  overflow-x:hidden;
}

.container{
  width:94%;
  max-width:1400px;
  margin:auto;
}

.nav a.active{
  color: var(--gold);
}

.nav a.active::after{
  width:100%;
}


#loader{
  position:fixed;
  inset:0;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.loader-inner{
  position:relative;
  width:140px;
  height:140px;
}

.loader-inner img{
  width:70px;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:2;
}

.spinner{
  position:absolute;
  inset:0;
  border:4px solid rgba(212,175,55,.25);
  border-top-color:var(--gold);
  border-radius:50%;
  animation:spin 1.2s linear infinite;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}
#loader{
  transition: opacity .2s ease;
}

/* ===============================
   TOP BAR
================================ */
.topbar{
  background:var(--blue);
  color:#f1f1f1;
  text-align:center;
  padding:.6rem;
  font-size:.9rem;
}

/* ===============================
   HEADER & NAV
================================ */
.site-header{
  background: var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}


.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:var(--blue);
}

.logo{ height:45px; }

.nav{
  display:flex;
  gap:1.5rem;
}

.nav a{
  text-decoration: none;
  color: #fff; /* white text */
  font-weight: 600;
  position: relative;
  padding-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,.35); /* subtle shadow */
}

.nav a:hover{
  color: #fff;
  text-shadow: 0 3px 6px rgba(11,60,111,.6);
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background: var(--blue); /* BLUE hover */
  transition:width .3s ease;
}

.nav a:hover::after{
  width:100%;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #fff;
}

.logo{
  height: 48px;
  background: #fff;          /* white backing */
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
}

.hamburger span{
  width:25px;
  height:3px;
  background:var(--blue);
}

/* ===============================
   HERO
================================ */
.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(rgba(12, 16, 20, 0.55), rgba(7, 44, 83, 0.55)),
    url("images/hero-bg.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

.hero h1{
  font-size:2.9rem;
  margin-bottom:1rem;
}

.cta{
  display:inline-block;
  background:var(--gold);
  color:#000;
  padding:.9rem 2rem;
  font-weight:600;
  margin-top:1rem;
  text-decoration:none;
  transition:.3s;
}

.cta:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 25px rgba(0,0,0,.25);
}
/* HERO SLIDER */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}
/* ===============================
   GLOBAL SECTIONS
================================ */
.section{
  padding:6.5rem 0;
  scroll-margin-top:120px;
}

/* ===============================
   HEADINGS + GOLD ACCENT
================================ */
.sec-title,
.about-title{
  text-align:center;
  font-size:2.8rem;
  color:var(--blue);
  margin-bottom:3.5rem;
  position:relative;
}

.sec-title::after,
.about-title::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-16px;
  transform:translateX(-50%);
  width:90px;
  height:4px;
  background:var(--gold);
  border-radius:2px;
}

/* ===============================
   DIAGONAL PATTERN
================================ */
.pattern-bg{
  position:relative;
  overflow:hidden;
}

.pattern-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(212,175,55,0.07),
      rgba(212,175,55,0.07) 1px,
      transparent 1px,
      transparent 14px
    );
  animation:patternMove 30s linear infinite;
  z-index:0;
}

@keyframes patternMove{
  from{ background-position:0 0; }
  to{ background-position:260px 260px; }
}

/* ===============================
   ABOUT US (FULL WIDTH)
================================ */
.about-section{
  background:var(--light);
}

.about-section .container{
  max-width:100%;
}

.about-text{
  width:100%;
  padding:0 6vw;
  text-align:center;
  position:relative;
  z-index:1;
}

.about-description{
  font-weight:600;
  font-size:1.18rem;
  line-height:2;
  margin-bottom:1.4rem;
}

/* ===============================
   BULLETS
================================ */
.bullets{
  display:flex;
  justify-content:center;
  gap:2.2rem;
  list-style:none;
  margin-top:1.6rem;
  flex-wrap:wrap;
}

.bullets li{
  position:relative;
  padding-left:18px;
  font-weight:600;
}

.bullets li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--gold);
}

/* ===============================
   VMV BASE
================================ */
.vmv-standalone{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
/* ===============================
   VMV SECTION SPACING
================================ */
.vmv-standalone {
  margin: 8rem 0;     /* space above & below each section */ 
 padding: 0;   /* let VMV control spacing */
}

/* ===============================
   BACKGROUND IMAGES (ROTATING)
================================ */
.vmv-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.2);
  opacity:0;
  animation: fadeSlide 18s infinite;
  z-index:0; /* 🔴 BACK */
}

/* 3 IMAGE STAGGER */
.vmv-bg:nth-child(1){ animation-delay:0s; }
.vmv-bg:nth-child(2){ animation-delay:6s; }
.vmv-bg:nth-child(3){ animation-delay:12s; }

/* ===============================
   OVERLAY (DARK TINT)
================================ */
.vmv-standalone::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(11,60,111,.55);
  z-index:1;
}

/* OPTIONAL GOLD PATTERN */
.vmv-standalone::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(212,175,55,0.06),
      rgba(212,175,55,0.06) 1px,
      transparent 1px,
      transparent 16px
    );
  z-index:2;
}

/* ===============================
   TEXT CONTENT
================================ */
.vmv-content{
  position:relative;
  z-index:3; /* 🔴 FRONT */
  max-width:900px;
  margin:auto;
  text-align:center;
  color:#fff;
}

.vmv-standalone .sec-title{
  color:#fff;
}

.vmv-text{
  font-size:1.7rem;
  line-height:1.8;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeSlide{
  0%{ opacity:0; }
  10%{ opacity:1; }
  30%{ opacity:1; }
  40%{ opacity:0; }
  100%{ opacity:0; }
}

/* LEFT → RIGHT */
.slide-ltr .vmv-bg{
  animation-name: fadeSlideLTR;
}
@keyframes fadeSlideLTR{
  0%{ opacity:0; transform:scale(1.2) translateX(-6%); }
  10%{ opacity:1; }
  30%{ opacity:1; }
  40%{ opacity:0; }
  100%{ opacity:0; transform:scale(1.2) translateX(6%); }
}

/* RIGHT → LEFT */
.slide-rtl .vmv-bg{
  animation-name: fadeSlideRTL;
}
@keyframes fadeSlideRTL{
  0%{ opacity:0; transform:scale(1.2) translateX(6%); }
  10%{ opacity:1; }
  30%{ opacity:1; }
  40%{ opacity:0; }
  100%{ opacity:0; transform:scale(1.2) translateX(-6%); }
}

/* BOTTOM → TOP */
.slide-btt .vmv-bg{
  animation-name: fadeSlideBTT;
}
@keyframes fadeSlideBTT{
  0%{ opacity:0; transform:scale(1.25) translateY(6%); }
  10%{ opacity:1; }
  30%{ opacity:1; }
  40%{ opacity:0; }
  100%{ opacity:0; transform:scale(1.25) translateY(-6%); }
}

/* VALUES LIST FIX */
#values ul {
  list-style-position: inside;   /* brings bullets closer */
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 600px;
}

#values li {
  margin: 0.6rem 0;              /* space between points */
  padding-left: 0.2rem;          /* slight text offset */
  line-height: 1.6;
  font-size: 1.05rem;
}
#values ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

#values li {
  position: relative;
  padding-left: 1.2rem;
  margin: 0.7rem 0;
  line-height: 1.6;
}

#values li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
}
/* ===============================
   SERVICES & WHY CHOOSE US
================================ */
.dark-section{
  background:#f4f6f9;
}

.services-grid,
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:2.2rem;
}

/* ===============================
   GLASS CARDS
================================ */
.service-card,
.why-card{
  height:270px;
  padding:2.2rem;
  border-radius:18px;
  background:
  linear-gradient(rgba(20,40,70,.55), rgba(11,60,111,.55)),
  var(--img);
  background-size:cover;
  background-position:center;
  backdrop-filter:blur(10px);
  box-shadow:0 22px 45px rgba(0,0,0,.25);
  color:#fff;
  transition:.6s;
}

.service-card h3,
.why-card h3{
  color:var(--gold);
}

.service-card p,
.why-card p{
  color:#fff;
}

.service-card:hover,
.why-card:hover{
  transform:translateY(-14px);
}

/* =============================== FORM ================================ */ 
.quote-form{ max-width:500px;
margin:auto; 
display:grid; 
gap:1rem; } 
input, textarea, button{ padding:.8rem; width:100%; } 
button{ background:var(--gold); 
border:none; font-weight:bold; 
cursor:pointer; }


/* =============================== FOOTER ================================ */

/* ================= FOOTER ================= */
.site-footer {
  background: linear-gradient(180deg, #0b3c6f, #072a4f);
  padding: 50px 6% 25px;
  color: #fff;
}

.footer-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* BLOCKS */
.footer-block {
  max-width: 240px;
}

/* HEADINGS */
.footer-block h4 {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 14px;
  position: relative;
}

.footer-block h4::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-top: 6px;
}

/* BRAND */
.footer-logo {
  height: 48px;
  margin-bottom: 10px;
}

.company-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.tagline {
  font-style: italic;
  opacity: 0.85;
}

/* TEXT */
.footer-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* CLIENT LIST */
.footer-client-list span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 4px;
}

.footer-client-list span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.7;
}

/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* HOVER ANIMATION */
.footer-socials a:hover {
  background: var(--gold);
  color: #0b3c6f;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.45);
}

.footer-bottom {
  width: 100%;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
  font-size: .85rem;
  opacity: .85;
}


/* ===============================
   SCROLL REVEAL ANIMATIONS
================================ */

/* Base hidden state */
.reveal{
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

/* When visible */
.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left{
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.active{
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right{
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.active{
  opacity: 1;
  transform: translateX(0);
}
.site-footer{
  background:#0b3c6f;
  color:#fff;
  padding:4rem 1.5rem;
  text-align:center;
}

.footer-inner{
  max-width:900px;
  margin:auto;
}

.footer-title{
  font-size:1.8rem;
  margin-bottom:.6rem;
}

.footer-description{
  opacity:.9;
  margin-bottom:1.5rem;
}
.footer-block h4 {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 14px;
  position: relative;
  text-align: center; /* 👈 ensures text is centered */
}

.footer-block h4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%); /* 👈 centers the line */
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.footer-cta{
  display:inline-block;
  background:var(--gold);
  color:#000;
  padding:.9rem 1.6rem;
  border-radius:40px;
  font-weight:600;
  margin-bottom:1.2rem;
}

.builder-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: inherit;
}

/* Toggle button */
.builder-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #000;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

/* Hidden box */
.builder-box {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 240px;
  background: #fff;
  color: #222;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .3s ease;
}

/* Visible */
.builder-contact.active .builder-box {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.builder-box h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--blue);
}

.builder-box p {
  font-size: .85rem;
  margin-bottom: 6px;
}
/* MOBILE */
@media (max-width:768px){
  .footer-expanded h3{ font-size:1.4rem; }
}

.whatsapp-cta {
  display: block;
  width: fit-content;
  margin: 3rem auto;
  background: var(--gold);
  color: #0b3c6f;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: all .3s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(212,175,55,.45);
}

.footer-block h4::after {
  transition: width 0.3s ease;
}

.footer-block h4:hover::after {
  width: 60px;
}

/* ===============================
   PREMIUM SUBMIT BUTTON
================================ */

.quote-form button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* THIS centers horizontally */
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #c9a227, #e6c65c);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
.quote-form button.success {
  background: linear-gradient(135deg, #1e8e3e, #34c759);
  border-radius: 30px;
  width: 60px;
  height: 60px;
  padding: 0;
}
/* Loading state */
.button-loading {
  background: #c9a227 !important;
  pointer-events: none;
  color: transparent !important;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success morph */
.button-success {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #d4af37, #f0c94d) !important;
  box-shadow: 0 8px 25px rgba(212,175,55,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent !important;
}

/* Animated SVG check */
.button-success svg {
  width: 28px;
  height: 28px;
  stroke: #0b3c6f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.5s ease forwards;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
/* Full screen overlay */
#loading-screen {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Center wrapper */
.loader-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
.loader-logo {
  width: 70px;
  height: auto;
  z-index: 2;
}

/* Golden rotating ring */
.gold-ring {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid #d4af37;   /* Gold */
  border-right: 3px solid #d4af37;
  animation: rotateRing 1.2s linear infinite;
}

/* Smooth rotation */
@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ===============================
   MOBILE RESPONSIVENESS
================================ */
@media (max-width: 768px) {

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b3c6f;
    flex-direction: column;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    gap: 24px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cta {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}
 @media (max-width: 768px) {
  .vmv-standalone {
    margin: 5rem 0;
    min-height: 85vh;
  }
}

