/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --blue-deep: #060F1E;
  --blue-dark: #0B1E36;
  --blue-primary: #1E3A8A;
  --blue-bright: #3B82F6;
  --gold-metallic: #D4AF37;
  --gold-bright: #F5C518;
  --gold-light: #F3E5AB;
  --gold-dark: #B38F4D;
  --white: #FFFFFF;
  --gray-light: #F8FAFC;
  --gray-medium: #E2E8F0;
  --gray-dark: #1E293B;
  --glass-bg: rgba(11, 30, 54, 0.7);
  --glass-border: rgba(212, 175, 55, 0.25);
  --glass-shadow: rgba(0, 0, 0, 0.3);

  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease-in-out;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--blue-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

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

button, .btn {
  font-family: var(--font-title);
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 8rem 0;
}

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

.bg-light-section {
  background-color: var(--gray-light);
  color: var(--gray-dark);
}
.bg-light-section h2, .bg-light-section h3, .bg-light-section h4 {
  color: var(--blue-deep);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-metallic), var(--gold-dark));
  color: var(--blue-deep);
  padding: 0.8rem 2rem;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-metallic));
  color: #000;
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-metallic);
  color: var(--gold-metallic);
  transform: translateY(-3px);
}

/* Corporate Top Bar — Gold */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(135deg, var(--gold-metallic) 0%, var(--gold-dark) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.45rem 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.top-bar-item:hover {
  color: var(--white);
}

.top-bar-item svg {
  opacity: 0.7;
  flex-shrink: 0;
  stroke: var(--blue-deep);
}

.top-bar-item:hover svg {
  opacity: 1;
  stroke: var(--white);
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(6, 15, 30, 0.2);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(6, 15, 30, 0.1);
  border: 1px solid rgba(6, 15, 30, 0.15);
  color: var(--blue-deep);
  transition: var(--transition-fast);
}

.top-bar-socials a:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--gold-bright);
}

.top-bar-socials a svg {
  fill: currentColor;
}

.top-bar-cta {
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-bright);
  background: var(--blue-deep);
  padding: 0.35rem 1rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.top-bar-cta:hover {
  background: var(--blue-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

/* Header & Solid Blue Navbar */
header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--blue-deep);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.4s ease,
              padding 0.4s ease;
}

header.scrolled {
  top: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  padding: 0.4rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.15));
}

header.scrolled .logo img {
  height: 52px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.3rem;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  position: relative;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-metallic), var(--gold-bright));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover {
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.06);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: var(--white);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  background: #25D366;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  animation: floatAnim 3s ease-in-out infinite;
}

.whatsapp-widget:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.whatsapp-text {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  white-space: nowrap;
}

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

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

.zoom-in-scroll {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.zoom-in-scroll.active {
  opacity: 1;
  transform: scale(1);
}

/* Premium Footer */
footer {
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem 0;
  color: var(--gray-medium);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--gold-metallic);
  border-color: var(--gold-metallic);
  transform: translateY(-3px);
}

.social-icon:hover svg {
  fill: var(--blue-deep);
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold-metallic);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link-item a {
  font-size: 0.95rem;
  color: #94A3B8;
}

.footer-link-item a:hover {
  color: var(--gold-metallic);
  padding-left: 5px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-metallic);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-text {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #64748B;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

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

/* Responsive CSS */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .top-bar-location {
    display: none;
  }
  .top-bar-location + .top-bar-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }

  .top-bar {
    display: none;
  }

  header {
    top: 0;
  }

  .nav-right {
    display: contents;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 340px;
    background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
    flex-direction: column;
    padding: 7rem 2.5rem 3rem;
    gap: 0.3rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu .nav-link {
    font-size: 1.1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    width: 100%;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: rgba(212, 175, 55, 0.08);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .logo img {
    height: 54px;
  }

  header.scrolled .logo img {
    height: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-widget {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1rem;
  }
}

/* Quote Modal Overlay and Card Styles */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 33, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.quote-modal-card {
  background: linear-gradient(185deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  width: 90%;
  max-width: 520px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.05);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  max-height: 90vh;
}

.quote-modal-overlay.open .quote-modal-card {
  transform: translateY(0);
}

.quote-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, color 0.3s;
}

.quote-modal-close:hover {
  background: var(--gold-metallic);
  color: var(--blue-dark);
}

.quote-modal-title {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.quote-modal-subtitle {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.modal-form-group label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-form-group input,
.modal-form-group select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.modal-form-group input:focus,
.modal-form-group select:focus {
  outline: none;
  border-color: var(--gold-metallic);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 576px) {
  .modal-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .quote-modal-card {
    padding: 1.8rem;
  }
}

/* Infinite Scrolling Ticker (Marquee) for Landings in Footer */
.footer-ticker-container {
  width: 100%;
  overflow: hidden;
  background: rgba(6, 15, 30, 0.7);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 10px 0;
  box-sizing: border-box;
  margin-bottom: 2rem;
}

.footer-ticker-wrapper {
  display: flex;
  width: max-content;
}

.footer-ticker-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: ticker-slide 40s linear infinite;
}

.footer-ticker-list li {
  margin: 0 20px;
  white-space: nowrap;
}

.footer-ticker-list a {
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--font-title);
  letter-spacing: 0.5px;
}

.footer-ticker-list a:hover {
  color: var(--white);
  text-decoration: underline;
}

@keyframes ticker-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}


