/* ============================================
   SMEODOO ACCOUNTING - GLOBAL STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

/* ─── CSS VARIABLES ─────────────────────────── */
:root {
  --navy: #0A1628;
  --navy-mid: #0D1F3C;
  --navy-light: #142240;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #A07C30;
  --white: #FFFFFF;
  --off-white: #F4F6F9;
  --text-light: #B8C4D6;
  --text-muted: #F4F6F9;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(10, 22, 40, 0.85);
  --border-glass: rgba(201, 168, 76, 0.2);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Sarabun', sans-serif;
}

/* ─── RESET & BASE ──────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
}

/* ─── SCROLLBAR ─────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ─── SELECTION ─────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--navy);
}

/* ─── UTILITIES ─────────────────────────────── */
.text-gold {
  color: var(--gold) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-gold-light {
  color: var(--gold-light) !important;
}

.bg-navy {
  background: var(--navy) !important;
}

.bg-navy-mid {
  background: var(--navy-mid) !important;
}

.font-heading {
  font-family: var(--font-heading);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

/* ─── BUTTONS ───────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
  color: var(--navy);
}

.btn-gold:hover::after {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ─── NAVBAR ────────────────────────────────── */
.navbar-custom {
  background: transparent;
  padding: 1.25rem 0;
  transition: var(--transition);
  z-index: 1000;
}

.navbar-custom.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-deep);
}

.navbar-brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 0.02em;
}

.navbar-brand-text span {
  color: var(--white);
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--gold) !important;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  left: 0.5rem;
  right: 0.5rem;
}

.navbar-toggler-custom {
  border: 1px solid var(--border-glass);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
}

.navbar-toggler-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,168,76,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── HERO SECTION ──────────────────────────── */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, #142240 0%, var(--navy) 60%),
    linear-gradient(135deg, #0A1628 0%, #0D1F3C 100%);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-visual {
  position: relative;
}

.hero-glow-card {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(13, 31, 60, 0.8));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-glow-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-10%, 10%);
  }
}

.mini-stat {
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.mini-stat:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.mini-stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mini-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mini-stat-value {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ─── STATS COUNTER ─────────────────────────── */
.stats-section {
  background: var(--navy-mid);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── CARDS ─────────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.glass-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.35), rgba(201, 168, 76, 0.1));
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

/* ─── WHY US ─────────────────────────────────── */
.feature-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(201, 168, 76, 0.05);
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  min-width: 50px;
}

/* ─── TESTIMONIALS ──────────────────────────── */
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 8rem;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* ─── TEAM CARD ─────────────────────────────── */
.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
}

.team-photo-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #142240, #0A1628);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.3);
}

.team-card-body {
  padding: 1.5rem;
}

.team-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  padding: 0.2rem 0.8rem;
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* ─── TIMELINE ─────────────────────────────── */
.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, 0.1));
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0.25rem);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3);
  z-index: 1;
}

.timeline-content {
  width: calc(50% - 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ─── PRICING TABLE ─────────────────────────── */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border-color: rgba(201, 168, 76, 0.5);
  transform: scale(1.02);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 2rem;
  transform: rotate(35deg);
  letter-spacing: 0.05em;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 1.5rem 0 0.5rem;
}

.pricing-price small {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-feature i {
  color: var(--gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ─── FAQ ACCORDION ─────────────────────────── */
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item .accordion-button {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--gold);
}

.faq-item .accordion-button::after {
  filter: invert(75%) sepia(40%) saturate(500%) hue-rotate(8deg);
}

.faq-item .accordion-body {
  background: transparent;
  color: var(--text-light);
  padding: 0 1.5rem 1.25rem;
  line-height: 1.8;
}

/* ─── CONTACT FORM ──────────────────────────── */
.contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-control-custom,
.form-select-custom {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control-custom:focus,
.form-select-custom:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  outline: none;
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

.form-select-custom option {
  background: var(--navy-mid);
  color: var(--white);
}

.form-label-custom {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.04);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ─── KNOWLEDGE / BLOG ──────────────────────── */
.article-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-gold);
}

.article-thumb {
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(201, 168, 76, 0.3);
}

.article-card-body {
  padding: 1.5rem;
}

.article-category {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.article-title {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

/* ─── TAX CALENDAR ──────────────────────────── */
.tax-row {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  gap: 1rem;
}

.tax-row:hover {
  background: rgba(201, 168, 76, 0.05);
}

.tax-month-badge {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}

/* ─── NEWSLETTER ────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(13, 31, 60, 1));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '✉';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.04;
  pointer-events: none;
}

/* ─── FOOTER ────────────────────────────────── */
.footer {
  background: #06101E;
  padding: 4rem 0 0;
  border-top: 1px solid var(--border-glass);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-link {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── FLOATING LINE BUTTON ───────────────────── */
.float-btn {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.float-line {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00B900, #00D900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 185, 0, 0.4);
  transition: var(--transition);
  cursor: pointer;
  animation: floatPop 2s ease-in-out infinite;
  text-decoration: none;
}

.float-line:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(0, 185, 0, 0.6);
  color: white;
}

@keyframes floatPop {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.float-label {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  pointer-events: none;
}

/* ─── PAGE HERO ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── CTA SECTION ───────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(10, 22, 40, 0) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── MAP IFRAME ─────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── SECTION PADDING ───────────────────────── */
.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

/* ─── TRUST BADGE ───────────────────────────── */
.trust-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0.3rem;
}

.trust-badge i {
  color: var(--gold);
}

/* ─── LOADING / FADE IN ─────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 991.98px) {
  .timeline::before {
    left: 24px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 3rem;
  }

  .timeline-dot {
    left: 24px;
  }

  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: 100%;
    margin: 0;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .float-btn {
    bottom: 1.25rem;
    right: 1rem;
  }

  .float-line {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .navbar-collapse {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 0.5rem;
    border: 1px solid var(--border-glass);
  }
}

/* ─── BACK TO TOP ───────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 6rem;
  right: 1.75rem;
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  pointer-events: all;
}

#backToTop:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ─── ANIMATIONS ────────────────────────────── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
  }
}

.pulse-anim {
  animation: pulse-gold 2.5s infinite;
}

/* ─── HERO IMAGE SLIDER ──────────────────────── */
.hero-slider-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  padding-bottom: 2.5rem;
}

.hero-slider-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.5), rgba(201, 168, 76, 0.1), rgba(10, 22, 40, 0));
  z-index: 0;
  pointer-events: none;
}

#heroCarousel {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.15);
}

.hero-slide-img {
  height: 420px;
  min-height: 380px;
  max-height: 460px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.75);
}

.hero-slide-caption {
  background: linear-gradient(0deg, rgba(6, 16, 30, 0.92) 0%, rgba(6, 16, 30, 0.5) 60%, transparent 100%);
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1.75rem 1.5rem;
  text-align: left;
  border-radius: 0 0 20px 20px;
}

.hero-slide-caption h5 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-slide-caption p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.5;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* Carousel indicators override */
.hero-slider-wrap .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.35);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

.hero-slider-wrap .carousel-indicators .active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Carousel controls override */
.hero-carousel-ctrl {
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 76, 0.18) !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-60%);
  opacity: 1 !important;
  transition: var(--transition);
}

.hero-carousel-ctrl:hover {
  background: var(--gold) !important;
}

.hero-carousel-ctrl .carousel-control-prev-icon,
.hero-carousel-ctrl .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 767.98px) {
  .hero-slide-img {
    height: 280px;
  }

  .hero-slide-caption h5 {
    font-size: 1.1rem;
  }
}