/* =============================================
   SALMON ARM ACCOUNTING CO - MAIN STYLESHEET
   ============================================= */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f2044;
  --navy-mid: #1a3360;
  --navy-light: #244080;
  --gold: #c8922a;
  --gold-light: #e0a83a;
  --gold-pale: #f5e8cc;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f1f4f9;
  --gray-100: #e0e6f0;
  --gray-400: #9aabcc;
  --gray-600: #5a6e8c;
  --gray-800: #243352;
  --text-main: #1a2540;
  --text-muted: #5a6e8c;
  --shadow-sm: 0 2px 8px rgba(15,32,68,0.08);
  --shadow-md: 0 8px 30px rgba(15,32,68,0.12);
  --shadow-lg: 0 20px 60px rgba(15,32,68,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }

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

.section { padding: 90px 0; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 14px;
  background: var(--gold-pale);
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

.inline-link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
  transition: var(--transition);
}
.inline-link:hover { color: var(--navy); border-color: var(--navy); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,146,42,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,146,42,0.5);
}

.full-width { width: 100%; text-align: center; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(15, 32, 68, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
  padding: 10px 0;
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  background: var(--white);
  border-radius: 8px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

#navbar.scrolled .nav-logo img { height: 36px; }

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

.nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.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
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #050d1f 0%, #0f2044 40%, #1a3360 70%, #0d1c3a 100%);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(200,146,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 30%, rgba(36,64,128,0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated dots */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1.5px 1.5px at var(--x,50%) var(--y,50%), rgba(255,255,255,0.3) 0%, transparent 100%);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-logo-wrap {
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
}

.hero-logo {
  height: 72px;
  width: auto;
  background: var(--white);
  border-radius: 10px;
  padding: 8px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  animation: fadeDown 0.8s ease both;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease infinite 1.5s;
}

.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 8px auto 0;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background: linear-gradient(160deg, #0f2044 0%, #1a3a6e 50%, #0d2a56 100%);
  position: relative;
  box-shadow: var(--shadow-lg);
}

/* City skyline illustration */
.city-graphic {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
}

.mountain-bg {
  position: absolute;
  bottom: 80px;
  left: 0; right: 0;
  height: 160px;
  background: linear-gradient(135deg, #1a4a2e 0%, #2d6e47 40%, #1a4a2e 100%);
  clip-path: polygon(0% 100%, 15% 30%, 30% 60%, 45% 10%, 60% 50%, 75% 20%, 85% 45%, 100% 0%, 100% 100%);
  opacity: 0.7;
}

.building {
  position: absolute;
  bottom: 80px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px 3px 0 0;
}
.building::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 14px,
    rgba(200,146,42,0.2) 14px,
    rgba(200,146,42,0.2) 16px
  );
}
.b1 { left: 5%; width: 14%; height: 200px; }
.b2 { left: 20%; width: 18%; height: 260px; background: rgba(255,255,255,0.08); }
.b3 { left: 39%; width: 12%; height: 180px; }
.b4 { left: 52%; width: 22%; height: 300px; background: rgba(200,146,42,0.15); }
.b5 { left: 75%; width: 16%; height: 220px; }

/* Reflection */
.about-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(10,30,70,0.8), transparent);
}

/* Stars */
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 25% 8%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 40% 20%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 60% 5%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 75% 12%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 88% 18%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 15% 35%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 55% 30%, rgba(255,255,255,0.6), transparent);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(200,146,42,0.4);
  text-align: center;
  z-index: 2;
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.badge-text {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-text-col { padding-top: 20px; }

.about-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
}

.about-qa { display: flex; flex-direction: column; gap: 24px; }

.qa-item {
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: var(--gray-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: var(--transition);
}
.qa-item:hover {
  border-color: var(--navy);
  background: var(--gray-100);
  transform: translateX(4px);
}

.qa-item h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.qa-item p { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   BANNER
   ============================================= */
.banner-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1828 0%, #0f2044 50%, #0a1828 100%);
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(200,146,42,0.08), transparent 70%);
  pointer-events: none;
}

/* Decorative lines */
.banner-section::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(200,146,42,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.banner-overlay { display: none; }

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

.banner-pre {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-bottom: 20px;
}

.banner-title span {
  color: var(--gold);
  font-style: italic;
}

.banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--off-white); }

.services-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}

.services-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
  cursor: default;
}
.service-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
  border-color: transparent;
}

.svc-icon {
  font-size: 1.6rem;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 10px;
}

.svc-text h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.svc-text p { font-size: 0.88rem; color: var(--text-muted); }

.cta-center { text-align: center; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-card:hover h3, .why-card:hover p { color: var(--white); }

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  transition: var(--transition);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: var(--transition);
}

/* =============================================
   CRA INFO STEPS
   ============================================= */
.info-section {
  background: linear-gradient(160deg, #0a1828 0%, #0f2044 60%, #0a1828 100%);
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,146,42,0.06), transparent 70%);
  pointer-events: none;
}

.info-section .section-tag { background: rgba(200,146,42,0.2); }
.info-section .section-title { color: var(--white); }

.info-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.info-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.info-step:hover {
  background: rgba(200,146,42,0.1);
  border-color: rgba(200,146,42,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(200,146,42,0.4);
}

.info-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
}

.info-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 24px;
}

.step-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  display: inline-block;
}
.step-link:hover { color: var(--gold-light); transform: translateX(4px); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--gray-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-pale);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 600;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--white); }

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

.contact-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  font-size: 1.3rem;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-details a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-details a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,32,68,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.form-success {
  text-align: center;
  padding: 16px;
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  color: #2e7d32;
  font-weight: 500;
  font-size: 0.9rem;
}

.hidden { display: none !important; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 10px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.footer-tagline {
  font-style: italic;
  color: var(--gold-light) !important;
  font-size: 0.9rem !important;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-col p {
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-contact-col a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* =============================================
   BACK TO TOP
   ============================================= */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,146,42,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(200,146,42,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(200,146,42,0.7); }
}

.about-badge { animation: pulse 3s ease infinite; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { gap: 50px; }
  .services-layout { grid-template-columns: 260px 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  /* Hamburger */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15,32,68,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 8px; }
  #navbar { position: fixed; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 10px; }
  .about-img-placeholder { height: 280px; }

  /* Services */
  .services-layout { grid-template-columns: 1fr; gap: 32px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Info steps */
  .info-steps { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-tagline { font-size: 1.8rem; }
}
