/* LANDING COMMON BRAND STYLESHEET */

:root {
  --primary-navy: #0f172a;      /* Slate 900 for dark text */
  --brand-navy: #0b1a30;        /* Deep navy for headers and dark sections */
  --brand-navy-light: #162a45;  /* Accent blue/navy */
  --accent-gold: #caa567;       /* Primary gold color */
  --accent-gold-dark: #b59053;  /* Darker gold for hover states */
  --accent-gold-light: #fdfaf4; /* Soft gold background tint */
  --text-dark: #334155;         /* Slate 700 for body text */
  --text-light: #64748b;        /* Slate 500 for descriptions */
  --bg-light: #fafbfe;          /* Clean light blue-grey background */
  --border-color: #e2e8f0;      /* Slate 200 for borders */
  --shadow-sm: 0 4px 20px rgba(11, 26, 48, 0.02);
  --shadow-md: 0 10px 30px rgba(11, 26, 48, 0.05);
  --shadow-lg: 0 20px 40px rgba(11, 26, 48, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

/* HEADER */
header {
  background: #ffffff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 26, 48, 0.08);
  box-shadow: 0 4px 20px rgba(11, 26, 48, 0.05);
  transition: transform 0.3s ease-in-out;
}

header.nav-hidden {
  transform: translateY(-100%);
}

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

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 10px;
  font-weight: 600;
  color: rgba(11, 26, 48, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: rgba(11, 26, 48, 0.75);
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  padding: 8px 0;
}

.nav-item > a:hover {
  color: var(--accent-gold-dark);
}

.nav-item > a.active {
  color: var(--brand-navy);
  font-weight: 750;
}

.nav-item > a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.chevron {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.95);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 230px;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 15px 40px rgba(11, 26, 48, 0.1);
  border: 1px solid rgba(11, 26, 48, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.25s;
  z-index: 100;
}

.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(11, 26, 48, 0.08);
  border-top: 1px solid rgba(11, 26, 48, 0.08);
  z-index: -1;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px) scale(1);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(11, 26, 48, 0.8);
  font-weight: 500;
  font-size: 13.5px;
  border-radius: 8px;
  transition: var(--transition);
  margin-bottom: 2px;
}

.dropdown-menu a:hover {
  background: rgba(11, 26, 48, 0.05);
  color: var(--accent-gold-dark);
}

.dropdown-icon {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
  color: rgba(11, 26, 48, 0.45);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(11, 26, 48, 0.25);
  color: var(--brand-navy);
}

.btn-outline:hover {
  border-color: var(--brand-navy);
  background: rgba(11, 26, 48, 0.05);
  color: var(--brand-navy);
}

header .btn-dark {
  background: var(--accent-gold);
  color: var(--brand-navy);
}

header .btn-dark:hover {
  background: var(--accent-gold-dark);
  color: var(--brand-navy);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--brand-navy);
  color: white;
}

.btn-dark:hover {
  background: var(--brand-navy-light);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: var(--brand-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
}

footer * {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-inner {
  width: 100%;
  padding: 0 5% 30px;
}

.footer-newsletter-wrap {
  width: 100%;
  padding: 40px 5% 0;
}

.footer-main-content {
  padding-top: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1.1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icon {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.social-icon svg, .social-icon i {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.footer-column h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 14px;
  font-weight: 800;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--accent-gold);
  padding-left: 2px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-item svg, .contact-item i {
  color: var(--accent-gold);
  margin-top: 3px;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* PREMIUM HORIZONTAL NEWSLETTER BAR */
.newsletter-premium-bar {
  margin-top: 30px;
  background: linear-gradient(135deg, #091426 0%, #11223b 100%);
  border-radius: 16px;
  padding: 18px 30px;
  border: 1px solid rgba(202, 165, 103, 0.2);
  box-shadow: var(--shadow-lg);
}

.newsletter-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 280px;
}

.newsletter-bar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(202, 165, 103, 0.15);
  border: 1px solid rgba(202, 165, 103, 0.3);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-bar-icon-wrap svg, .newsletter-bar-icon-wrap i {
  width: 24px;
  height: 24px;
}

.newsletter-bar-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
  font-family: 'Outfit', sans-serif;
}

.newsletter-bar-text p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-bar-form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px;
  width: 100%;
  max-width: 480px;
  align-items: center;
  transition: var(--transition);
}

.newsletter-bar-form:focus-within {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(202, 165, 103, 0.15);
}

.newsletter-bar-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 16px;
  color: white;
  font-size: 14px;
  flex: 1;
  width: 100%;
}

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

.newsletter-bar-btn {
  background: var(--accent-gold);
  color: var(--brand-navy);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 750;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13.5px;
  white-space: nowrap;
}

.newsletter-bar-btn:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-1px);
}

/* RESPONSIVE BREAKPOINTS FOR FOOTER/NEWSLETTER */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-logo-area {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-buttons {
    display: none;
  }
  .newsletter-bar-content {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-bar-form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter-premium-bar {
    padding: 25px 20px;
  }
  .newsletter-bar-left {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
