/* 
  TIMELY ARCHITECTURE & ENGINEERING SURVEY — CUSTOM STYLE SHEET v1.0
  Brand Palette: #0d2b52 (Deep Navy) | #e0b353 (Gold)
  Fonts: 'Manrope' (Body) | 'Syne' (Headings) | 'Dancing Script' (Cursive Accent)
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Syne:wght@400;500;600;700;800&family=Dancing+Script:wght@400;500;600;700&display=swap');

:root {
  /* ── Brand Colors ── */
  --navy: #0d2b52;
  --navy-dark: #071a33;
  --navy-light: #1a4a7a;
  --gold: #e0b353;
  --gold-dark: #c49a3a;
  --gold-light: #f0cc6e;

  /* ── Neutrals ── */
  --bg-page: #f7f8fa;
  --bg-white: #ffffff;
  --bg-light: #eef1f5;
  --bg-dark: #0a1f3d;
  --bg-whitesmoke: #f5f5f5;
  --text-dark: #1a1f2e;
  --text-body: #374151; /* Darkened from #4a5568 for better legibility */
  --text-muted: #555e6d; /* Darkened from #6b7280 for higher contrast */
  --border: #d1d9e0;
  --border-light: #e8edf2;

  /* ── Typography ── */
  --font-primary: 'Manrope', sans-serif;
  --font-secondary: 'Syne', sans-serif;
  --font-accent: 'Dancing Script', cursive;

  /* ── Gradients ── */
  --grad-brand: linear-gradient(135deg, #0d2b52 0%, #1a4a7a 100%);
  --grad-gold: linear-gradient(135deg, #e0b353 0%, #f0cc6e 100%);
  --grad-hero: linear-gradient(135deg, rgba(13,43,82,0.92) 0%, rgba(13,43,82,0.75) 55%, rgba(224,179,83,0.20) 100%);
  --grad-dark: linear-gradient(135deg, #071a33 0%, #0d2b52 100%);
  --grad-gold-glow: radial-gradient(circle, rgba(224,179,83,0.15) 0%, rgba(224,179,83,0) 70%);

  /* ── Shadows ── */
  --shadow-sm: 0 4px 12px rgba(13,43,82,0.06);
  --shadow-md: 0 12px 36px rgba(13,43,82,0.1);
  --shadow-lg: 0 24px 64px rgba(13,43,82,0.15);
  --shadow-gold: 0 8px 30px rgba(224,179,83,0.25);
  --shadow-gold-hover: 0 12px 40px rgba(224,179,83,0.4);

  /* ── Transitions ── */
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --transition: all 0.35s var(--ease);
  --transition-slow: all 0.6s var(--ease);
}

/* ─── BASE RESET ───────────────────────────── */
body {
  font-family: var(--font-primary);
  background-color: var(--bg-page);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--text-dark);
}

a {
  transition: var(--transition);
}

.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.fw-600 { font-weight: 600; }

.container-extra {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.py-section {
  padding: 100px 0;
}

.text-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── BUTTONS ──────────────────────────────── */
.btn-timely-gold {
  background: var(--grad-gold);
  color: var(--navy-dark) !important;
  font-weight: 700;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  box-shadow: var(--shadow-gold);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
}

.btn-timely-gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--navy);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 50px;
}

.btn-timely-gold:hover {
  color: #fff !important;
  box-shadow: 0 12px 35px rgba(13,43,82,0.3);
}

.btn-timely-gold:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-timely-outline {
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  padding: 12px 32px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}

.btn-timely-outline:hover {
  background: #fff;
  color: var(--navy-dark) !important;
  border-color: #fff;
}

/* ─── SCROLL REVEAL ────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HEADER NAVBAR ────────────────────────── */
.navbar-custom {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 24px 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(0px);
  transition: var(--transition);
}

.navbar-custom.scrolled {
  padding: 14px 0;
  background: rgba(245, 245, 245, 0.96);
  border-bottom: 1px solid rgba(13, 43, 82, 0.12);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.navbar-inner {
  width: 100%;
}

.site-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 18px !important;
  border-radius: 30px;
  transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--gold) !important;
  background: rgba(255,255,255,0.06);
}

.navbar-custom.scrolled .nav-link {
  color: var(--navy-dark) !important;
}

.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
  color: var(--gold) !important;
  background: rgba(13, 43, 82, 0.05);
}

.navbar-custom .btn-link i {
  color: #fff;
  transition: var(--transition);
}

.navbar-custom .btn-link:hover i {
  color: var(--gold);
}

.navbar-custom.scrolled .btn-link i {
  color: var(--navy-dark) !important;
}

.navbar-custom.scrolled .btn-link:hover i {
  color: var(--gold) !important;
}

/* ─── HERO SECTION ─────────────────────────── */
.hero-v3 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 100px;
  background: var(--navy-dark);
}

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

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1) rotate(0.002deg);
  transition: opacity 1.8s ease-in-out, transform 8s linear;
}

.hero-slide.exit {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.8s ease-in-out, transform 1.8s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--grad-hero);
  z-index: 2;
}

.grid-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  z-index: 3;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 5;
  color: #fff;
}

.hero-text h1,
.hero-text h2,
.hero-text h3 {
  color: #fff !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  backdrop-filter: blur(10px);
}

.hero-display {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2px;
}

.accent-text {
  font-family: var(--font-accent);
  color: var(--gold);
}

.hero-logo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px;
  backdrop-filter: blur(15px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-float {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(224,179,83,0.3));
}

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

.float-anim {
  animation: float 6s ease-in-out infinite;
}

.hero-dots {
  position: absolute;
  bottom: -40px;
  left: 12px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--gold);
}

/* ─── 3D DESIGNS SECTION & CAROUSEL ───────── */
.designs-section {
  position: relative;
  background: var(--bg-whitesmoke);
  padding: 100px 0;
  overflow: hidden;
}

.designs-section .grid-bg {
  background-image: 
    linear-gradient(to right, rgba(13,43,82,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13,43,82,0.02) 1px, transparent 1px);
}

.section-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  position: relative;
}

.geo-line {
  display: inline-block;
  width: 60px; height: 2px;
  background: rgba(224,179,83,0.3);
}

.geo-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Continuous Horizontal Marquee Track */
.marquee-wrapper {
  display: flex;
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.design-carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.design-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.design-card {
  width: 320px;
  background: linear-gradient(145deg, var(--bg-white) 0%, #fafbfc 100%);
  border: 1px solid rgba(13, 43, 82, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: 24px;
  padding: 16px 12px 12px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(13, 43, 82, 0.04);
}

.design-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(13, 43, 82, 0.09);
}

.design-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  transition: var(--transition-slow);
}

.design-card:hover .design-card-img {
  transform: scale(1.06);
}

.design-card-overlay {
  position: absolute;
  top: 12px; left: 12px;
  width: calc(100% - 24px);
  height: 240px;
  background: rgba(7, 26, 51, 0.85);
  border-radius: 16px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.design-card:hover .design-card-overlay {
  opacity: 1;
}

.design-card-ref {
  color: var(--gold);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.design-card-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.design-card-btn {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.design-card-btn:hover {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.design-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding: 0 4px 6px;
}

.ref-tag {
  background: rgba(224, 179, 83, 0.12);
  color: var(--navy);
  border: 1px solid rgba(224, 179, 83, 0.35);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 30px;
}

.quote-btn-sm {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 14px;
  border-radius: 30px;
  transition: var(--transition);
}

.quote-btn-sm:hover {
  background: var(--gold);
  color: var(--navy-dark) !important;
}

/* ─── STATS BAR ────────────────────────────── */
.stats-bar {
  background: var(--bg-whitesmoke);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
}

.stat-number {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.stat-label {
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 5px;
}

.stat-divider {
  border-left: 1px solid rgba(13, 43, 82, 0.1);
}

@media (max-width: 991px) {
  .stat-divider {
    border-left: none;
    border-top: 1px solid rgba(13, 43, 82, 0.1);
  }
}

/* ─── SERVICES SECTION ──────────────────────── */
.service-card {
  background: linear-gradient(145deg, #ffffff 0%, #f1f5fa 100%);
  border: 1px solid rgba(13, 43, 82, 0.07);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(13, 43, 82, 0.04);
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 5px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(13, 43, 82, 0.1);
  border-color: rgba(224, 179, 83, 0.4);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: rgba(13,43,82,0.05);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: #fff;
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--navy-dark);
}

.service-card p {
  color: var(--text-body) !important;
  line-height: 1.6;
}

/* ─── ABOUT & MISSION ───────────────────────── */
.mission-card {
  background: #f7f8fa;
  border-left: 4px solid var(--navy);
  padding: 24px;
  border-radius: 0 16px 16px 0;
  height: 100%;
}

.mission-card.vision {
  border-left-color: var(--gold);
}

.typewriter-wrap {
  position: relative;
}

.typewriter-text {
  border-right: 2px solid var(--gold);
  animation: blink 0.75s step-end infinite;
  white-space: nowrap;
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--gold); }
}

/* ─── PARALLAX BANNER ──────────────────────── */
.parallax-banner {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

.parallax-banner .overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(7, 26, 51, 0.88);
  z-index: 1;
}

.parallax-banner .container {
  position: relative;
  z-index: 5;
}

/* ─── PROCESS / WORK STEPS ─────────────────── */
.step-number {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(224, 179, 83, 0.12);
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224,179,83,0.3);
}

/* ─── PORTFOLIO PROJECTS ────────────────────── */
.project-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.project-card-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(7,26,51,0.92) 0%, rgba(7,26,51,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.project-card:hover .project-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card-overlay h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.project-card-overlay p {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-family: var(--font-secondary);
  font-weight: 600;
}

/* ─── GALLERY MARQUEE ──────────────────────── */
.marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.marquee img {
  height: 280px;
  width: 400px;
  object-fit: cover;
  border-radius: 18px;
  transition: var(--transition);
}

.marquee img:hover {
  transform: scale(1.03);
}

/* ─── TESTIMONIALS & FAQS ───────────────────── */
.testimonial-card {
  background: linear-gradient(145deg, #ffffff 0%, #faf6ee 100%);
  border: 1px solid rgba(224, 179, 83, 0.12);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(224, 179, 83, 0.03);
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(224, 179, 83, 0.1);
  border-color: var(--gold);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(224, 179, 83, 0.08);
  color: var(--navy-dark);
}

.accordion-button:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.25rem rgba(224, 179, 83, 0.2);
}

/* ─── FORMS & INPUTS ───────────────────────── */
.form-control-timely {
  width: 100%;
  background: #f7f8fa;
  border: 1px solid var(--border);
  padding: 14px 20px;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control-timely:focus {
  background: #fff;
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(224,179,83,0.12);
}

.contact-icon-box {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(13,43,82,0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

/* ─── FLOATING WHATSAPP ───────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  background: #25d366;
  color: #fff !important;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 35px rgba(37,211,102,0.6);
}

/* ─── MODALS ───────────────────────────────── */
.modal-sidebar {
  background: linear-gradient(135deg, #071a33 0%, #0d2b52 100%);
  color: #fff;
  padding: 40px;
  text-align: center;
}

.logo-circle-frame {
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.logo-circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-circle-frame:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold-hover);
}

.design-quote-preview {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid var(--gold);
  margin-bottom: 20px;
}

.design-ref-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-gold);
}

/* ─── SITE FOOTER ──────────────────────────── */
.site-footer {
  background: var(--bg-whitesmoke);
  color: var(--text-body);
  padding: 90px 0 0;
  border-top: 3px solid var(--gold);
  position: relative;
  z-index: 10;
}

.site-footer strong {
  color: var(--navy) !important;
}

.site-footer h6 {
  color: var(--navy-dark);
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
}

.site-footer h6::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; width: 35px; height: 2px;
  background: var(--gold);
}

.footer-link {
  color: var(--text-body) !important;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--gold) !important;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-contact-item a {
  color: var(--text-body) !important;
  text-decoration: none;
}

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

.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(13, 43, 82, 0.05);
  color: var(--navy) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(13, 43, 82, 0.1);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--navy-dark) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(13, 43, 82, 0.08);
  font-size: 0.85rem;
  color: var(--text-muted);
}
