/* ============================================================
   Floral Print & Media — Main Stylesheet
   Aesthetic: Luxury Editorial | Dark Ink + Gold + Cream
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --ink:        #0d0d0d;
  --ink-soft:   #1a1a1a;
  --gold:       #c9a84c;
  --gold-light: #e0c875;
  --gold-dark:  #9e7a2a;
  --cream:      #f5f0e8;
  --cream-dark: #ede6d8;
  --white:      #ffffff;
  --gray-100:   #f8f7f5;
  --gray-200:   #eeebe5;
  --gray-400:   #b8b0a0;
  --gray-600:   #6b6357;
  --gray-800:   #2e2a24;
  --accent-red: #c0392b;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-title:   'Playfair Display', Georgia, serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);

  --radius:     4px;
  --radius-lg:  12px;
}

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

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

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

::selection { background: var(--gold); color: var(--ink); }

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

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

/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  animation: pulseGold 1.2s ease-in-out infinite;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loadFill 1.8s ease forwards;
}

@keyframes pulseGold {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}
@keyframes loadFill {
  to { width: 100%; }
}

/* ── WhatsApp Float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 24px;
  z-index: 999;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff !important; }

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--ink); color: var(--gold); }

/* ── Header & Topbar ───────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 900; }

.header-topbar {
  background: var(--ink);
  padding: 8px 0;
  font-size: 12px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 16px;
}
.topbar-left a, .topbar-left span,
.topbar-right a {
  color: var(--gray-400);
  font-size: 12px;
  transition: color var(--transition);
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--gold); }
.topbar-left i, .topbar-right i { color: var(--gold); margin-right: 4px; }

/* Main Nav */
.main-nav {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}
.main-nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-md);
}

/* Logo */
.site-logo { text-decoration: none; padding: 14px 0; }
.logo-text { line-height: 1; }
.logo-f {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 0.85;
  float: left;
  margin-right: 4px;
}
.logo-full {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.logo-sub span { color: var(--gold); }

.logo-text-light .logo-full { color: var(--cream); }
.logo-text-light .logo-sub { color: var(--gray-400); }

/* Nav Links */
.main-nav .navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-800);
  padding: 28px 16px;
  position: relative;
  transition: color var(--transition);
}
.main-nav .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link.active { color: var(--gold); }
.main-nav .navbar-nav .nav-link:hover::after,
.main-nav .navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 220px;
}
.dropdown-item {
  font-size: 13px;
  padding: 8px 20px;
  color: var(--gray-800);
  transition: all var(--transition);
}
.dropdown-item:hover { background: var(--cream); color: var(--gold); padding-left: 26px; }

/* Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  display: flex;
}
.toggler-line {
  width: 24px; height: 2px;
  background: var(--ink);
  display: block;
  transition: all var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  background: var(--ink-soft);
  width: 300px !important;
}
.mobile-menu .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-list { list-style: none; padding: 0; }
.mobile-nav-list li a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-nav-list li a i { color: var(--gold); font-size: 16px; width: 20px; }
.mobile-nav-list li a:hover, .mobile-nav-list li a.active { color: var(--gold); }
.mobile-contact { display: flex; flex-direction: column; gap: 10px; }
.mobile-contact a { color: var(--gray-400); font-size: 13px; }
.mobile-contact a i { color: var(--gold); margin-right: 8px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--ink) !important;
  border: 2px solid var(--gold);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  border: 2px solid var(--gold);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--ink) !important;
  transform: translateY(-2px);
}

.btn-ink {
  background: var(--ink);
  color: var(--cream) !important;
  border: 2px solid var(--ink);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ink:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink) !important;
}

/* ── Section Utilities ─────────────────────────────────────── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title.light { color: var(--cream); }

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.8;
}

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

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1541701494587-cb58502866ab?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content { position: relative; z-index: 2; padding: 140px 0 100px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.hero-image-side {
  position: relative; z-index: 2;
  padding: 100px 0;
}
.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-main img { width: 100%; height: 560px; object-fit: cover; }
.hero-img-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gold);
  color: var(--ink);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero-img-badge .badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.hero-img-badge .badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ── Services Section ──────────────────────────────────────── */
.services-section { background: var(--gray-100); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.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 var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--ink);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold-dark); }

/* ── Portfolio Grid ────────────────────────────────────────── */
.portfolio-section { background: var(--ink); }

.portfolio-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-content h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-overlay-content span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.portfolio-lightbox-btn {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-size: 16px;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}
.portfolio-item:hover .portfolio-lightbox-btn {
  opacity: 1;
  transform: scale(1);
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { background: var(--cream); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -10px; left: 24px;
  line-height: 1;
}

.testimonial-stars { margin-bottom: 16px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-avatar-placeholder {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--gray-600);
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 16px; }
.swiper-pagination-bullet-active { background: var(--gold); }

/* ── Why Us / Stats ────────────────────────────────────────── */
.why-section { background: var(--white); }

.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}
.why-item:hover { background: var(--cream); }
.why-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
}
.why-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.why-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* Stats banner */
.stats-banner { background: var(--ink); padding: 60px 0; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { font-size: 30px; color: var(--gold-light); }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-desc { font-size: 16px; color: rgba(13,13,13,0.65); margin-bottom: 32px; }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  overflow: hidden; aspect-ratio: 16/9;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 28px; }
.blog-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.blog-card-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: var(--gray-400);
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.blog-card-meta i { color: var(--gold); }

/* ── Team Cards ────────────────────────────────────────────── */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo-placeholder {
  width: 100%; aspect-ratio: 1;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
}
.team-info { padding: 24px 20px; }
.team-name { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-pos { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.team-socials { display: flex; justify-content: center; gap: 10px; }
.team-socials a {
  width: 32px; height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray-600);
  transition: all var(--transition);
}
.team-socials a:hover { background: var(--gold); color: var(--ink); }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); }
.breadcrumb { background: transparent; padding: 0; margin-top: 20px; }
.breadcrumb-item a { color: var(--gold); font-size: 13px; }
.breadcrumb-item.active { color: rgba(255,255,255,0.45); font-size: 13px; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* ── FAQ ──────────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  padding: 20px 24px;
}
.accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--gold);
  box-shadow: none;
}
.accordion-button::after { filter: brightness(0.6); }
.accordion-button:not(.collapsed)::after { filter: invert(70%) sepia(50%) saturate(800%) hue-rotate(5deg); }
.accordion-body {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  padding: 20px 24px;
  background: var(--white);
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  border: 1px solid var(--gray-200);
}
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold);
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 15px; color: var(--ink); font-weight: 500; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  outline: none;
}
.form-control::placeholder { color: var(--gray-400); }

textarea.form-control { resize: vertical; min-height: 130px; }

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter-section {
  background: var(--ink-soft);
  padding: 70px 0;
}
.newsletter-inner { }
.newsletter-title {
  font-family: var(--font-title);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
}
.newsletter-sub { font-size: 14px; color: var(--gray-400); }
.newsletter-form { }
.newsletter-input-group {
  display: flex; gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-input-group input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 14px 20px;
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.newsletter-input-group input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input-group button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.newsletter-input-group button:hover { background: var(--gold-dark); color: var(--white); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--ink); }
.footer-top { padding: 80px 0 60px; }
.footer-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
  margin: 20px 0 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-size: 15px;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--ink); }

.footer-widget-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--gray-400);
  font-size: 13px;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '→';
  font-size: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--gray-400);
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-list i { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: var(--gray-400); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--gray-600); margin: 0; }
.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a { font-size: 12px; color: var(--gray-600); }
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: rgba(255,255,255,0.1); }

/* ── Page Content Sections ─────────────────────────────────── */
.about-intro-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.8;
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}

.process-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}
.process-step:hover { background: var(--cream); }
.process-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  min-width: 60px;
}
.process-content h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.process-content p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ── Service Detail ────────────────────────────────────────── */
.service-feature-list { list-style: none; padding: 0; }
.service-feature-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}
.service-feature-list li::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

/* ── Utility ───────────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.bg-ink { background: var(--ink) !important; }
.bg-cream { background: var(--cream) !important; }

.divider-gold {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 60px 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .header-topbar .topbar-left a:nth-child(n+2) { display: none; }
  .collapse.navbar-collapse { display: none !important; }
  .section-pad { padding: 70px 0; }
  .hero-image-side { display: none; }
  .hero-content { padding: 120px 0 80px; }
}

@media (max-width: 767px) {
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 28px; }
  .stats-banner .col-6 { margin-bottom: 32px; }
  .footer-top { padding: 50px 0 40px; }
  .newsletter-input-group { flex-direction: column; }
  .newsletter-input-group button { width: 100%; justify-content: center; }
}

@media (max-width: 575px) {
  .section-pad { padding: 50px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
