/* ===== BUGATTI GLOBAL — Premium Styles ===== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --navy: #0B1F3A;
  --navy-dark: #071529;
  --navy-light: #132d52;
  --gold: #C8A45D;
  --gold-light: #d4b876;
  --gold-dark: #b08d3e;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray-light: #E8E8E8;
  --gray: #888888;
  --text-dark: #1a1a1a;
  --text-light: #cccccc;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(200,164,93,0.25);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* --- Fade-in animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 164, 93, 0.15);
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(11, 31, 58, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0;
}

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

.navbar.scrolled .container {
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 42px;
  height: 42px;
}

.nav-logo-img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-logo-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

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

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(200,164,93,0.3);
  border-radius: 6px;
  overflow: hidden;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}

.lang-btn:hover:not(.active) {
  background: rgba(200,164,93,0.2);
}

/* Phone icon */
.nav-phone {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}

.nav-phone:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 31, 58, 0.92) 0%,
    rgba(11, 31, 58, 0.78) 50%,
    rgba(11, 31, 58, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 164, 93, 0.15);
  border: 1px solid rgba(200, 164, 93, 0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(200,164,93,0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

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

/* Decorative particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: sparkle 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 70%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 75%; animation-delay: 2s; }
.particle:nth-child(4) { top: 30%; left: 90%; animation-delay: 0.5s; }
.particle:nth-child(5) { top: 70%; left: 85%; animation-delay: 1.5s; }
.particle:nth-child(6) { top: 50%; left: 65%; animation-delay: 3s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.6) 0%, transparent 60%);
}

.service-card-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card-body p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold);
  gap: 10px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ===== BUSINESS SECTION ===== */
.business {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.business::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,164,93,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.business .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.business-content {
  position: relative;
  z-index: 1;
}

.business-content .section-title {
  color: var(--white);
  text-align: left;
}

.business-content .section-title::after {
  margin: 16px 0 0;
}

.business-text {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.business-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.business-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.business-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200,164,93,0.15);
  border: 1px solid rgba(200,164,93,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.business-feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.business-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.business-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.business-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(200,164,93,0.3);
  border-radius: 16px;
  pointer-events: none;
}

/* ===== WHY US SECTION ===== */
.why-us {
  padding: 100px 0;
  background: var(--off-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(200,164,93,0.1), rgba(200,164,93,0.05));
  border: 2px solid rgba(200,164,93,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.why-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .why-card-icon svg {
  color: var(--navy);
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CONTACT / SHORT FORM SECTION ===== */
.contact {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,164,93,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact .section-title {
  color: var(--white);
}

.contact .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.contact-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,164,93,0.25);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(200,164,93,0.1);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A45D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  width: 100%;
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(200,164,93,0.4);
}

.form-trust {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: 16px;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(200,164,93,0.15);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-logo-icon svg {
  width: 36px;
  height: 36px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-contact-item:hover {
  color: var(--gold);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

.footer-credit {
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer-credit a {
  color: var(--gold);
  opacity: 0.6;
  transition: var(--transition);
}

.footer-credit a:hover {
  opacity: 1;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ===== ASSESSMENT FLOATING BUTTON ===== */
.assessment-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(200,164,93,0.45);
  transition: var(--transition);
  text-transform: uppercase;
}

.assessment-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 28px rgba(200,164,93,0.55);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.assessment-float svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .assessment-float {
    font-size: 0.72rem;
    padding: 12px 16px;
    bottom: 20px;
    left: 16px;
    gap: 6px;
    letter-spacing: 0;
  }

  .assessment-float svg {
    width: 16px;
    height: 16px;
  }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ===== ASSESSMENT PAGE ===== */
.assessment-page {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  min-height: 100vh;
}

.assessment-header {
  text-align: center;
  margin-bottom: 48px;
}

.assessment-header h1 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.assessment-header p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.assessment-form-container {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,164,93,0.2);
  border-radius: 16px;
  padding: 48px 40px;
  backdrop-filter: blur(8px);
}

.assessment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 48px;
  overflow: hidden;
}

.page-hero-short {
  min-height: 280px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.9) 0%, rgba(11,31,58,0.7) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.page-hero-breadcrumb a {
  color: var(--gold);
}

.page-hero-breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero-breadcrumb svg {
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.page-hero-breadcrumb .current {
  color: rgba(255,255,255,0.8);
}

.page-hero h1 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
  padding: 80px 0;
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.service-detail-main h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-main > p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-detail-programs h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* Program Cards */
.program-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--off-white);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.program-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.program-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  stroke: var(--gold);
}

.program-content h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.program-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Sidebar */
.service-detail-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.sidebar-cta h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

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

.sidebar-cta-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 24px;
  border-radius: 6px;
  transition: var(--transition);
  text-align: center;
}

.sidebar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.sidebar-services {
  background: var(--off-white);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-light);
}

.sidebar-services h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}

.sidebar-service-link:last-child {
  border-bottom: none;
}

.sidebar-service-link:hover {
  color: var(--gold-dark);
  padding-left: 6px;
}

.sidebar-service-link svg {
  color: var(--gold);
  flex-shrink: 0;
}

.sidebar-contact {
  background: var(--off-white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--gray-light);
}

.sidebar-contact h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
}

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--gray);
  font-size: 0.88rem;
}

.sidebar-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 64px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,164,93,0.08) 0%, transparent 70%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 28px;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 80px 0;
  background: var(--navy);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info-intro {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,164,93,0.15);
  border-radius: 10px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.contact-info-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: rgba(200,164,93,0.12);
  border: 1px solid rgba(200,164,93,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.contact-info-card-icon.whatsapp-icon svg {
  fill: var(--gold);
  width: 22px;
  height: 22px;
}

.contact-info-card h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-card span {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

.contact-form-full h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

/* ===== SERVICES PAGE ===== */
.svc-section {
  padding: 100px 0;
  background: var(--white);
}

.svc-section-dark {
  background: var(--navy);
}

.svc-section-dark .section-title {
  color: var(--white);
}

.svc-section-dark .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.svc-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.svc-card-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(200,164,93,0.15);
}

.svc-card-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,164,93,0.15);
}

.svc-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card-dark .svc-card-icon {
  background: rgba(200,164,93,0.12);
  border: 1px solid rgba(200,164,93,0.25);
}

.svc-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke: var(--gold);
}

.svc-card-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.svc-card-dark .svc-card-content h3 {
  color: var(--white);
}

.svc-card-content p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.65;
}

.svc-card-dark .svc-card-content p {
  color: rgba(255,255,255,0.6);
}

/* Full-width card for odd last item */
.svc-grid .svc-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-page-hero {
  min-height: 380px;
  padding: 120px 0 56px;
  background: var(--navy);
}

.about-page-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 164, 93, 0.15);
  border: 1px solid rgba(200, 164, 93, 0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* About Story */
.about-story {
  padding: 100px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story-content .section-title::after {
  margin: 16px 0 0;
}

.about-story-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(200,164,93,0.3);
  border-radius: 16px;
  pointer-events: none;
}

.about-year-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-year-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-year-text {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* About Expertise */
.about-expertise {
  padding: 100px 0;
  background: var(--off-white);
}

.about-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.about-expertise-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-expertise-card:hover::before {
  transform: scaleX(1);
}

.about-expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.about-expertise-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(200,164,93,0.1), rgba(200,164,93,0.05));
  border: 2px solid rgba(200,164,93,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.about-expertise-card:hover .about-expertise-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.about-expertise-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: var(--transition);
}

.about-expertise-card:hover .about-expertise-icon svg {
  color: var(--navy);
}

.about-expertise-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.about-expertise-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* About Values */
.about-values {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about-values::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,164,93,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.about-values::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,164,93,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-values-content .section-title::after {
  margin: 16px 0 0;
}

.about-values-text {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-values-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-values-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(200,164,93,0.15);
  border: 1px solid rgba(200,164,93,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-values-feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* About Stats */
.about-values-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,164,93,0.2);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.about-stat-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .business .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .business-content .section-title {
    text-align: center;
  }

  .business-content .section-title::after {
    margin: 16px auto 0;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-sidebar {
    position: static;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-values-content .section-title {
    text-align: center !important;
  }

  .about-values-content .section-title::after {
    margin: 16px auto 0;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-grid .svc-card:last-child:nth-child(odd) {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 31, 58, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .business-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .assessment-form-container {
    padding: 32px 20px;
  }

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

  .footer-contacts {
    flex-direction: column;
    gap: 16px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

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

  .program-card {
    flex-direction: column;
    gap: 12px;
  }

  .about-story-grid {
    text-align: center;
  }

  .about-story-content .section-title {
    text-align: center !important;
  }

  .about-story-content .section-title::after {
    margin: 16px auto 0;
  }

  .about-expertise-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-values-features {
    grid-template-columns: 1fr;
  }

  .about-story {
    padding: 64px 0;
  }

  .about-expertise {
    padding: 64px 0;
  }

  .about-values {
    padding: 64px 0;
  }

  .svc-section {
    padding: 64px 0;
  }

  .svc-card {
    flex-direction: column;
    gap: 16px;
  }

  .page-hero {
    min-height: 260px;
    padding: 90px 0 32px;
  }

  .service-detail {
    padding: 48px 0;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .contact-page {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .business-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .assessment-form-container {
    padding: 32px 20px;
  }

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

  .footer-contacts {
    flex-direction: column;
    gap: 16px;
  }

  .scroll-indicator {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 16px;
  }

  .services,
  .why-us,
  .contact,
  .business {
    padding: 64px 0;
  }
}


/* ===== TESTIMONIALS PAGE ===== */
.testimonials-page {
  padding: 80px 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.quote-icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 15px;
}

.author-info h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
}


/* ===== BLOG & ARTICLE PAGES ===== */
.blog-page {
  padding: 80px 0;
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-light);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

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

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

.blog-read-more {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.blog-card:hover .blog-read-more {
  color: var(--gold);
}

/* Single Article */
.blog-post-page {
  padding: 80px 0;
  background: var(--white);
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article h3, .blog-article h4 {
  color: var(--navy);
  margin: 30px 0 15px;
}

.blog-article p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-article ul, .blog-article ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.blog-article li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.blog-post-cta {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(11,31,58,0.05), rgba(11,31,58,0.01));
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(200,164,93,0.3);
}

.blog-post-cta h4 {
  font-size: 1.5rem;
  margin-top: 0;
}

.blog-post-cta p {
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-dark);
}
