/* ============================================
   ELIAS HOME SOLUTIONS - CUSTOM STYLESHEET
   eliashomesolutions.com
   ============================================ */

/* --- VARIABLES & ROOT --- */
:root {
  --navy: #0a1628;
  --navy-mid: #132244;
  --navy-light: #1e3a6e;
  --slate: #4a5568;
  --slate-light: #718096;
  --gold: #c9973a;
  --gold-light: #e8b555;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #edf2f7;
  --border: #e2e8f0;
  --text-dark: #1a202c;
  --text-body: #4a5568;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 30px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
  --shadow-gold: 0 8px 30px rgba(201,151,58,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* --- GLOBAL RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }

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

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* --- UTILITY CLASSES --- */
.text-gold { color: var(--gold) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-mid { background-color: var(--navy-mid) !important; }
.bg-off-white { background-color: var(--off-white) !important; }

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,151,58,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.8;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-logo {
  text-align: center;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo span {
  display: block;
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
}

.preloader-logo small {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.96); }
}

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

#mainNav.scrolled {
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand-wrap { display: flex; flex-direction: column; }

.brand-main {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}

.navbar-nav .nav-link:hover { color: var(--white) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.5px;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.3rem;
}

/* --- HERO SECTION --- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #1a3a6e 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201,151,58,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,58,110,0.5) 0%, transparent 40%);
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stat-item { text-align: center; }

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-hero-primary:hover::before { transform: translateX(0); }
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,151,58,0.4);
  color: var(--navy);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,151,58,0.08);
}

.hero-image-frame {
  position: relative;
  z-index: 2;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1;
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.scroll-mouse {
  width: 22px;
  height: 35px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 5px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@keyframes scrollWheel { 0%,100%{opacity:1;transform:translateY(0)} 50%{opacity:0;transform:translateY(8px)} }

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--navy-mid);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}

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

/* --- ABOUT SECTION --- */
#about { background: var(--white); }

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

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 120px;
}

.about-experience-badge .exp-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .exp-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 4px;
}

.about-values { margin-top: 32px; }

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.value-item:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.value-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.value-text h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.value-text p {
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

/* --- SERVICES SECTION --- */
#services { background: var(--off-white); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-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;
}

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

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

.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(10,22,40,0.06), rgba(10,22,40,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  transform: rotate(-5deg) scale(1.1);
}

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

.service-card p {
  font-size: 0.87rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.65;
}

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

.service-card-link:hover { gap: 12px; color: var(--navy); }

/* --- PROCESS SECTION --- */
#process { background: var(--navy); }

#process .section-title { color: var(--white); }
#process .section-lead { color: rgba(255,255,255,0.65); }

.process-timeline {
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) { flex-direction: row-reverse; }

.process-step-content {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.process-step:nth-child(even) .process-step-content { text-align: right; }

.process-step-content:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,151,58,0.3);
  transform: scale(1.02);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-step-content h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-step-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.65;
}

.process-step-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 0 0 8px rgba(201,151,58,0.15);
  z-index: 1;
  position: relative;
}

/* --- PORTFOLIO SECTION --- */
#portfolio { background: var(--white); }

.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  background: var(--light-gray);
  border: 1px solid var(--border);
  color: var(--slate);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: linear-gradient(135deg, var(--light-gray), var(--border));
}

.portfolio-item:hover .portfolio-img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.portfolio-overlay span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.portfolio-overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}

.portfolio-placeholder {
  width: 100%;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--border) 100%);
  color: var(--slate-light);
  font-size: 0.82rem;
  gap: 10px;
}

.portfolio-placeholder i { font-size: 2rem; color: var(--border); }

/* --- REVIEWS SECTION --- */
#reviews { background: var(--off-white); }

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: rgba(201,151,58,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }

.review-text {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer-info { display: flex; align-items: center; gap: 14px; }

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

.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.reviewer-location { font-size: 0.78rem; color: var(--slate-light); }

/* --- BRANDS SECTION --- */
#brands { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.brands-title {
  font-size: 0.75rem;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 30px;
}

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  min-height: 70px;
  letter-spacing: -0.5px;
}

.brand-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* --- LOCATION SECTION --- */
#location { background: var(--off-white); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
  background: var(--light-gray);
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8edf5, var(--light-gray));
  color: var(--slate);
}

.map-placeholder i { font-size: 3rem; color: var(--navy-light); }

.service-areas { margin-top: 30px; }

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 4px;
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.area-tag i { color: var(--gold); font-size: 0.75rem; }

/* --- SOCIAL SECTION --- */
#social-section { background: var(--navy-mid); }

.social-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.social-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.social-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

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

.social-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin: 0;
}

/* --- CONTACT SECTION --- */
#contact { background: var(--white); }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}

.contact-info-card .section-title { color: var(--white); }
.contact-info-card .section-lead { color: rgba(255,255,255,0.65); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,151,58,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-text span,
.contact-info-text a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.contact-info-text a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,151,58,0.12);
  outline: none;
}

.btn-submit {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* --- BOOKING SECTION --- */
#booking { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); }

.booking-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(10px);
}

/* --- FOOTER --- */
footer {
  background: var(--navy);
  padding: 70px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}

.footer-brand-sub {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--gold); }

/* --- FLOATING ELEMENTS --- */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  color: var(--white);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* --- LIVE CHAT --- */
.chat-widget {
  position: fixed;
  bottom: 155px;
  right: 24px;
  z-index: 998;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
}

.chat-toggle:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  transform: scale(1.1);
}

.chat-box {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.chat-box.open { display: flex; flex-direction: column; animation: chatSlideIn 0.3s ease; }

@keyframes chatSlideIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }

.chat-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.chat-header-info strong { display: block; color: var(--white); font-size: 0.88rem; }
.chat-header-info span { color: rgba(255,255,255,0.65); font-size: 0.75rem; }

.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 5px;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

.chat-messages {
  padding: 20px;
  height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--off-white);
}

.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.chat-msg-bubble {
  background: var(--white);
  border-radius: 12px 12px 12px 0;
  padding: 10px 14px;
  font-size: 0.83rem;
  color: var(--text-dark);
  max-width: 80%;
  box-shadow: var(--shadow-sm);
  line-height: 1.5;
}

.chat-msg-bubble strong { display: block; font-size: 0.72rem; color: var(--gold); margin-bottom: 3px; }

.chat-input-wrap {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  background: var(--white);
}

.chat-input {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 0.83rem;
  outline: none;
  transition: var(--transition);
}

.chat-input:focus { border-color: var(--navy); }

.chat-send {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send:hover { background: var(--gold); color: var(--navy); }

/* --- NOTIFICATION TOAST --- */
.toast-container-custom {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9998;
}

.toast-custom {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  margin-bottom: 10px;
  animation: toastIn 0.4s ease;
  font-size: 0.87rem;
}

@keyframes toastIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

/* --- RIPPLE EFFECT --- */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  background-color: rgba(255, 255, 255, 0.3);
}

@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* --- RESPONSIVE --- */
@media (max-width: 991.98px) {
  .process-timeline::before { display: none; }
  .process-step, .process-step:nth-child(even) { flex-direction: column; gap: 20px; }
  .process-step:nth-child(even) .process-step-content { text-align: left; }
  .about-experience-badge { top: 10px; right: 10px; }
  .hero-badge { left: 10px; bottom: 10px; }
  .section-pad { padding: 70px 0; }
}

@media (max-width: 767.98px) {
  .hero-stats { gap: 24px; }
  .hero-title { font-size: 2.2rem; }
  .contact-form-card, .contact-info-card { padding: 28px; }
  .process-step-circle { width: 48px; height: 48px; font-size: 1rem; }
  .chat-box { width: 290px; }
}

@media (max-width: 575.98px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-hero-primary,
  .hero-buttons .btn-hero-secondary { width: 100%; justify-content: center; }
  .booking-card { padding: 28px 20px; }
}
