/* ============================================
   MAJESTIC PROFESSIONAL SERVICES - New Design
   Theme: Deep Charcoal + Gold Elegance
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --charcoal: #1A1A1A;
  --charcoal-mid: #2C2C2C;
  --charcoal-light: #3D3D3D;
  --off-white: #F5F2EC;
  --soft-white: #FDFBF7;
  --text-muted: #9A9A9A;
  --border: rgba(201,168,76,0.2);
  --section-bg: #F8F5EF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--soft-white);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3em;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  border: none; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ══════════════════════════════════
   HEADER / NAV
══════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
}

.nav-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  transition: all 0.4s ease;
}

header.scrolled .nav-wrapper {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

header.transparent .nav-wrapper { background: transparent; }

.nav-logo img { height: 55px; width: auto; }
.nav-logo a {
  display: inline-block;
  background: white;
  padding: 8px 14px;
  border-radius: 4px;
}

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-links .has-dropdown { position: relative; }
.dropdown-menu-custom {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal); border: 1px solid var(--border);
  min-width: 220px; padding: 12px 0;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.dropdown-menu-custom::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--charcoal); border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  rotate: 45deg;
}
.has-dropdown:hover .dropdown-menu-custom { opacity: 1; visibility: visible; top: calc(100% + 8px); }
.dropdown-menu-custom a {
  display: block; padding: 10px 24px;
  font-size: 0.82rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8); text-transform: uppercase;
  border-left: 2px solid transparent;
}
.dropdown-menu-custom a:hover {
  color: var(--gold); background: rgba(201,168,76,0.06);
  border-left-color: var(--gold);
}
.dropdown-menu-custom a::after { display: none; }

.btn-book-nav {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 11px 28px;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-book-nav:hover {
  background: transparent; color: var(--gold) !important;
}
.btn-book-nav::after { display: none !important; }

/* Mobile nav */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block; width: 26px; height: 1.5px;
  background: white; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 30px;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: rgba(255,255,255,0.85); letter-spacing: 0.05em;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-book-nav { font-size: 1rem; }

/* ══════════════════════════════════
   HERO BANNER
══════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.6) 60%, rgba(201,168,76,0.08) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: white; font-weight: 300;
  letter-spacing: 0.04em; margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 560px; margin: 0 auto 44px;
  font-weight: 300; line-height: 1.9;
}
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal);
  padding: 16px 40px; border: 1px solid var(--gold);
  transition: all 0.35s ease; cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-outline {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: transparent; color: white;
  padding: 16px 40px; border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.35s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); cursor: pointer;
}
.hero-scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0%,100%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1)} }

/* ══════════════════════════════════
   BREADCRUMB
══════════════════════════════════ */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover;
  opacity: 0.12;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.9), rgba(26,26,26,0.7));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: white; margin-bottom: 16px;
}
.breadcrumb-nav { display: flex; align-items: center; justify-content: center; gap: 12px; }
.breadcrumb-nav a { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }
.breadcrumb-nav span { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.breadcrumb-nav .current { font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); text-transform: uppercase; }

/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
.section { padding: 110px 0; }
.section-alt { background: var(--section-bg); }
.section-dark { background: var(--charcoal); }

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--charcoal);
  margin-bottom: 20px; letter-spacing: 0.02em;
}
.section-title.light { color: white; }

.section-subtitle {
  font-size: 1rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.9;
}

.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 24px 0;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════
   ABOUT SECTION (HOMEPAGE)
══════════════════════════════════ */
.about-section { padding: 110px 0; }
.about-img-wrap {
  position: relative; padding: 20px 20px 0 0;
}
.about-img-wrap img {
  width: 100%; height: 520px; object-fit: cover;
  position: relative; z-index: 2;
}
.about-img-wrap::before {
  content: ''; position: absolute;
  top: 0; right: 0; bottom: -20px; left: 20px;
  border: 1px solid var(--gold); z-index: 1;
  opacity: 0.4;
}
.about-img-badge {
  position: absolute; bottom: -20px; left: -20px; z-index: 3;
  background: var(--gold); color: var(--charcoal);
  padding: 24px 30px; text-align: center;
}
.about-img-badge .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; line-height: 1;
}
.about-img-badge .label {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; margin-top: 4px;
}
.about-text { padding-left: 60px; }
.about-text p { color: #555; line-height: 1.95; margin-bottom: 20px; font-size: 0.97rem; }

/* ══════════════════════════════════
   WHY CHOOSE / FEATURES
══════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; }
.feature-card {
  background: white;
  padding: 44px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--charcoal);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s ease; z-index: 0;
}
.feature-card:hover::before { transform: scaleY(1); }
.feature-card:hover { border-bottom-color: var(--gold); }
.feature-card > * { position: relative; z-index: 1; }
.feature-icon-wrap {
  width: 60px; height: 60px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}
.feature-card:hover .feature-icon-wrap { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.feature-icon-wrap i { font-size: 1.4rem; color: var(--gold); }
.feature-card h3 {
  font-size: 1.25rem; margin-bottom: 14px;
  color: var(--charcoal); transition: color 0.4s ease;
}
.feature-card:hover h3 { color: white; }
.feature-card p { font-size: 0.9rem; color: #777; line-height: 1.8; transition: color 0.4s ease; }
.feature-card:hover p { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════
   SERVICES SECTION
══════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 60px; }
.service-card {
  position: relative; overflow: hidden; cursor: pointer;
}
.service-card-img {
  width: 100%; height: 360px; object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.92) 30%, transparent 70%);
  transition: all 0.4s ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(26,26,26,0.97) 50%, rgba(26,26,26,0.3) 100%);
}
.service-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 36px;
}
.service-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; letter-spacing: 0.3em;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.service-card h3 { font-size: 1.5rem; color: white; margin-bottom: 12px; }
.service-card p {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.service-card:hover p { max-height: 80px; opacity: 1; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 16px;
  opacity: 0; transform: translateY(10px);
  transition: all 0.4s ease;
}
.service-card-link i { font-size: 0.7rem; }
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   CTA BANNER
══════════════════════════════════ */
.cta-section {
  position: relative; padding: 100px 0; overflow: hidden;
  background: var(--charcoal); text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&q=80') center/cover;
  opacity: 0.08;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem); color: white;
  max-width: 700px; margin: 0 auto 14px;
  font-style: italic;
}
.cta-section p { color: rgba(255,255,255,0.55); margin-bottom: 40px; font-size: 0.95rem; }

/* ══════════════════════════════════
   FOUNDER / TEAM
══════════════════════════════════ */
.founder-section { padding: 110px 0; background: var(--section-bg); }
.founder-img-wrap { position: relative; }
.founder-img-wrap img { width: 100%; height: 580px; object-fit: cover; object-position: top; }
.founder-img-wrap::after {
  content: ''; position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold); opacity: 0.3; z-index: -1;
}
.founder-text { padding-left: 70px; }
.founder-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 6px; }
.founder-text .role {
  font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; display: block;
}
.founder-text p { font-size: 0.96rem; color: #555; margin-bottom: 18px; line-height: 1.95; }

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery-section { padding: 110px 0; }
.gallery-intro { max-width: 560px; margin-bottom: 60px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 2rem; color: var(--gold); }

/* ══════════════════════════════════
   SERVICE DETAIL PAGE
══════════════════════════════════ */
.service-detail { padding: 110px 0; }
.service-detail-img { width: 100%; height: 520px; object-fit: cover; }
.service-detail-text { padding-left: 70px; }
.service-detail-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 24px; }
.service-detail-text p { color: #555; line-height: 1.95; margin-bottom: 20px; font-size: 0.97rem; }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-section { padding: 110px 0; }
.contact-form-wrap {
  background: white;
  padding: 60px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem; font-weight: 300;
  padding: 14px 18px;
  border: 1px solid #E5E5E5;
  background: var(--soft-white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: white;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

.btn-submit {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--charcoal); color: white;
  padding: 18px 50px; border: 1px solid var(--charcoal);
  cursor: pointer; transition: all 0.35s ease;
  display: inline-block;
}
.btn-submit:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

.contact-info-sidebar { padding-left: 60px; }
.contact-info-sidebar h2 { font-size: 2rem; margin-bottom: 40px; }
.contact-info-item {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 36px; padding-bottom: 36px;
  border-bottom: 1px solid #F0EDE8;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-item-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; margin-bottom: 6px;
}
.contact-item-text p, .contact-item-text a {
  font-size: 0.9rem; color: #666; line-height: 1.6;
}
.contact-item-text a:hover { color: var(--gold); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 50px; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 240px; }
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; font-weight: 500;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '—'; color: var(--gold); font-size: 0.7rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 18px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 0.9rem; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item p {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 28px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
  transition: all 0.3s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-bottom {
  padding: 22px 0; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }
.footer-bottom a { color: var(--gold); }

/* ══════════════════════════════════
   CREDENTIAL BADGES
══════════════════════════════════ */
.credentials-section {
  background: var(--charcoal);
  padding: 28px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.credential-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.credential-badge:last-child { border-right: none; }
.credential-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.credential-icon i { color: var(--gold); font-size: 0.9rem; }
.credential-badge span {
  font-size: 0.78rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75); line-height: 1.4;
  text-transform: uppercase; font-weight: 400;
}

/* ══════════════════════════════════
   CREDIBILITY SECTION
══════════════════════════════════ */
.credibility-section {
  background: var(--section-bg);
  padding: 50px 0;
}
.credibility-inner {
  max-width: 820px; margin: 0 auto;
  text-align: center; position: relative;
  padding: 40px 50px;
  border: 1px solid var(--border);
  background: white;
}
.credibility-quote-icon {
  font-size: 2rem; color: var(--gold);
  margin-bottom: 18px; display: block;
  opacity: 0.5;
}
.credibility-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: #444;
  line-height: 1.85; font-style: italic;
}
.credibility-inner strong { color: var(--charcoal); font-style: normal; font-weight: 600; }

/* ══════════════════════════════════
   CREDIBILITY STATEMENT (About page)
══════════════════════════════════ */
.credibility-statement {
  margin-top: 28px; padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--section-bg);
  display: flex; gap: 16px; align-items: flex-start;
}
.credibility-statement i {
  color: var(--gold); font-size: 1.2rem; margin-top: 3px; flex-shrink: 0;
}
.credibility-statement p {
  font-size: 0.93rem !important;
  color: #555 !important; margin-bottom: 0 !important;
  line-height: 1.8 !important; font-style: italic;
}
.credibility-statement strong { color: var(--charcoal); font-style: normal; }

@media (max-width: 768px) {
  .credentials-grid { grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05); }
  .credential-badge { border-right: none; background: var(--charcoal); }
  .credibility-inner { padding: 28px 24px; }
  .credibility-inner p { font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .credentials-grid { grid-template-columns: 1fr; }
}
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════
   CONTAINER
══════════════════════════════════ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
}
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { flex: 1; padding: 0 15px; }
.col-2 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-3 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.col-4 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
.col-5 { flex: 0 0 41.666%; max-width: 41.666%; padding: 0 15px; }
.col-7 { flex: 0 0 58.333%; max-width: 58.333%; padding: 0 15px; }
.align-center { align-items: center; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-wrapper { padding: 20px 30px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-text, .founder-text, .service-detail-text { padding-left: 30px; }
  .contact-info-sidebar { padding-left: 30px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-wrapper { padding: 18px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 24px; }
  .contact-info-sidebar { padding-left: 0; margin-top: 50px; }
  .about-text, .founder-text, .service-detail-text { padding-left: 0; margin-top: 40px; }
  .about-img-badge { left: 10px; }
  .row { flex-direction: column; }
  .col-2, .col-3, .col-4, .col-5, .col-7 { flex: 0 0 100%; max-width: 100%; }
  .founder-img-wrap img, .service-detail-img { height: 380px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}