/* ============================================================
   MNayakArts — Premium UI Upgrade
   Luxury gold & dark aesthetic with micro-animations
   ============================================================ */

/* ── 1. GOOGLE FONTS ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── 2. GLOBAL TOKENS ─────────────────────────────────────── */
:root {
  --gold-light: #f0c060;
  --gold-mid: #c9942a;
  --gold-dark: #8c6414;
  --gold-glow: rgba(201, 148, 42, 0.35);
  --charcoal: #0f0f0f;
  --charcoal-2: #1a1a1a;
  --charcoal-3: #242424;
  --cream: #fdf6e3;
  --transition: 0.38s cubic-bezier(.4, 0, .2, 1);
}

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
.display2,
.title,
.sub-title,
.heading-font-family {
  font-family: 'Cormorant Garamond', serif !important;
  letter-spacing: 0.02em;
}

.sub-title {
  font-size: 0.8rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--gold-mid) !important;
  font-weight: 500 !important;
  font-family: 'Inter', sans-serif !important;
}

.gradient-text {
  background: linear-gradient(90deg, var(--gold-light) 0%, #fff3c0 50%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 4. CUSTOM SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-mid);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ── 5. HEADER ────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}

.header-top {
  background: var(--charcoal) !important;
  border-bottom: 1px solid rgba(201, 148, 42, 0.2);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
}

.header-main {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 148, 42, 0.15);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

/* Gold underline on nav links */
.nav-menu-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #e8e0d0 !important;
  position: relative;
  padding-bottom: 4px !important;
  transition: color var(--transition) !important;
}

.nav-menu-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-mid));
  transition: width var(--transition);
}

.nav-menu-link:hover {
  color: var(--gold-light) !important;
}

.nav-menu-link:hover::after {
  width: 100%;
}

/* Phone call section in header */
.header-main .h5.lh-1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.15rem !important;
  color: var(--gold-light) !important;
}

/* Mobile Menu Button Visibility */
.header-main .button[data-bs-toggle="offcanvas"],
.header-main .button {
  color: var(--gold-light) !important;
}

/* ── 6. HERO SECTION ──────────────────────────────────────── */
.section-hero {
  position: relative;
  /* min-height: 100vh; */
  /* Removed to ensure the gap is gone */
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(20, 12, 0, 0.55) 60%,
      rgba(201, 148, 42, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

.section-hero .swiper-slide {
  position: relative;
}

.section-hero .container {
  position: relative;
  z-index: 2;
}

.section-hero .hero-content {
  position: relative;
}

/* Decorative gold side bar */
.section-hero .hero-content::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
}

@media (max-width: 991px) {
  .section-hero .hero-content::before {
    display: none;
  }
}

/* Hero headline */
.section-hero .display2 {
  font-size: clamp(2.4rem, 6vw, 4.8rem) !important;
  line-height: 1.05 !important;
  font-weight: 300 !important;
  color: #fdf8f0 !important;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.section-hero .display2 .text-primary,
.section-hero .display2 span {
  color: var(--gold-light) !important;
  font-style: italic;
  -webkit-text-fill-color: var(--gold-light);
}

.section-hero p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  font-weight: 300;
  max-width: 440px;
}

/* ── 7. HERO CTA BUTTON ───────────────────────────────────── */
.btn-94 {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 36px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--charcoal) !important;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 100%) !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  transition: all var(--transition) !important;
  text-decoration: none !important;
  box-shadow: 0 8px 32px rgba(201, 148, 42, 0.4) !important;
}

.btn-94::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-94:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 44px rgba(201, 148, 42, 0.55) !important;
  color: var(--charcoal) !important;
}

.btn-94:hover::after {
  opacity: 1;
}

/* ── 8. GOLD BUTTON ───────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 100%) !important;
  color: var(--charcoal) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  border: none !important;
  padding: 10px 28px !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 20px rgba(201, 148, 42, 0.3) !important;
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(201, 148, 42, 0.5) !important;
  color: var(--charcoal) !important;
  filter: brightness(1.08);
}

/* Primary buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid)) !important;
  border: none !important;
  color: var(--charcoal) !important;
  font-weight: 600 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 18px rgba(201, 148, 42, 0.35) !important;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(201, 148, 42, 0.5) !important;
  filter: brightness(1.1) !important;
  color: var(--charcoal) !important;
}

/* ── 9. FEATURES SECTION ──────────────────────────────────── */
.features-section {
  background: var(--charcoal) !important;
  border-top: 1px solid rgba(201, 148, 42, 0.2);
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}

.feature-item {
  background: rgba(26, 26, 26, 0.95) !important;
  border: 1px solid rgba(201, 148, 42, 0.15) !important;
  border-left: 3px solid var(--gold-mid) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55) !important;
  transition: all var(--transition) !important;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(201, 148, 42, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.feature-item:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(201, 148, 42, 0.45) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 148, 42, 0.2) !important;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item-icon {
  background: rgba(201, 148, 42, 0.1) !important;
  color: var(--gold-light) !important;
  border: 1px solid rgba(201, 148, 42, 0.3) !important;
}

.feature-item h3 {
  color: var(--gold-light) !important;
  font-size: 1.15rem !important;
}

.feature-item p,
.feature-item a {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* ── 10. ABOUT SECTION ────────────────────────────────────── */
.section-about {
  background: var(--cream) !important;
  position: relative;
}

.section-about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-mid), transparent);
}

.section-about .title {
  font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
  line-height: 1.15 !important;
  font-weight: 300 !important;
  color: var(--charcoal) !important;
}

.text-focused {
  color: var(--gold-mid) !important;
  font-style: italic;
}

.section-about .description {
  color: #5c5040 !important;
  line-height: 1.8 !important;
  font-size: 0.98rem !important;
}

/* About bullets list */
.section-about ul.bg-light {
  background: rgba(201, 148, 42, 0.06) !important;
  border: 1px solid rgba(201, 148, 42, 0.18) !important;
  border-radius: 2px !important;
}

.section-about ul li .text-primary i {
  color: var(--gold-mid) !important;
}

.section-about ul li .text-dark {
  color: var(--charcoal) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
}

/* Gold border images */
.gold-border {
  border: 2px solid rgba(201, 148, 42, 0.35) !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18), inset 0 0 0 4px rgba(201, 148, 42, 0.08) !important;
  transition: box-shadow var(--transition) !important;
}

.gold-border:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28), 0 0 0 2px var(--gold-mid) !important;
}

/* Director signature */
.section-about .h4.fs-20px {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.2rem !important;
  color: var(--charcoal) !important;
}

.section-about .text-sm.text-secondary {
  color: var(--gold-dark) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  font-family: 'Inter', sans-serif !important;
}

/* ── 11. SERVICES SECTION ─────────────────────────────────── */
.section-services {
  background: var(--charcoal) !important;
  position: relative;
}

.section-services .sub-title {
  color: var(--gold-light) !important;
}

.service-item {
  background: var(--charcoal-2) !important;
  border: 1px solid rgba(201, 148, 42, 0.12) !important;
  transition: all var(--transition) !important;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
}

.service-item:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(201, 148, 42, 0.4) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 148, 42, 0.2) !important;
}

.service-item-icon {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark)) !important;
  box-shadow: 0 4px 18px rgba(201, 148, 42, 0.4) !important;
}

.service-item h3 a {
  color: #f0e8d8 !important;
  transition: color var(--transition) !important;
  font-size: 1.15rem !important;
}

.service-item h3 a:hover {
  color: var(--gold-light) !important;
}

.service-item p {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.88rem !important;
}

/* Service image hover scale */
.hover-scale {
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1) !important;
}

.hover-scale:hover img,
.hover-scale:hover .cover-img {
  transform: scale(1.06) !important;
}

/* ── 12. CONTACT INFO SECTION ─────────────────────────────── */
.section-contacts {
  background: var(--charcoal) !important;
  border-top: 1px solid rgba(201, 148, 42, 0.15);
  border-bottom: 1px solid rgba(201, 148, 42, 0.15);
  position: relative;
}

.section-contacts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 148, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-item-wrapper {
  border-right: 1px solid rgba(201, 148, 42, 0.12);
}

.contact-item-wrapper:last-child {
  border-right: none;
}

.contact-item h3.text-white {
  color: var(--gold-light) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

.contact-item p a.text-white,
.contact-item p a {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.92rem !important;
  transition: color var(--transition) !important;
}

.contact-item p a:hover {
  color: var(--gold-light) !important;
}

/* Highlighted middle contact card */
.col-xl-4.contact-item-wrapper.bg-primary {
  background: linear-gradient(135deg, rgba(201, 148, 42, 0.25) 0%, rgba(140, 100, 20, 0.3) 100%) !important;
  border-left: 1px solid rgba(201, 148, 42, 0.3) !important;
  border-right: 1px solid rgba(201, 148, 42, 0.3) !important;
}

.contact-item i {
  color: var(--gold-light) !important;
}

/* ── 13. STEPS SECTION ────────────────────────────────────── */
.section-steps {
  background: var(--cream) !important;
  position: relative;
}

.section-steps .title {
  color: var(--charcoal) !important;
}

.section-steps .description {
  color: #5c5040 !important;
}

.step-list-number {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid)) !important;
  color: var(--charcoal) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(201, 148, 42, 0.4) !important;
}

.step-list-item h5 {
  color: var(--charcoal) !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
}

.step-list-item p {
  color: #6b5e4e !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
}

.step-list-item {
  position: relative;
  padding-left: 8px;
  transition: transform var(--transition);
}

.step-list-item:hover {
  transform: translateX(4px);
}

/* Years of experience badge */
.img-wrapper .position-absolute.bg-white {
  background: var(--charcoal) !important;
  border-left: 3px solid var(--gold-mid) !important;
}

.img-wrapper .text-primary.mb-0 {
  color: var(--gold-light) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2.8rem !important;
}

/* ── 14. PROJECTS GALLERY SECTION ─────────────────────────── */
.section-projects {
  background: var(--charcoal-2) !important;
}

.section-projects .sub-title {
  color: var(--gold-light) !important;
}

.gallery-item-thumb {
  overflow: hidden;
  position: relative;
}

.gallery-item-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-thumb::before {
  opacity: 1;
}

.gallery-item-description {
  background: rgba(15, 12, 8, 0.95) !important;
  border-top: 2px solid var(--gold-mid) !important;
  backdrop-filter: blur(10px) !important;
  transition: all var(--transition) !important;
}

.gallery-item:hover .gallery-item-description {
  background: rgba(30, 22, 8, 0.98) !important;
  border-color: var(--gold-light) !important;
}

.gallery-item-description span.text-uppercase {
  color: var(--gold-mid) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.22em !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}

.gallery-item-description h3 a {
  color: #f0e8d8 !important;
  font-size: 1.05rem !important;
  transition: color var(--transition) !important;
}

.gallery-item-description h3 a:hover {
  color: var(--gold-light) !important;
}

/* Zoom trigger */
.gallery-image-zoom-trigger {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid)) !important;
  color: var(--charcoal) !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 18px rgba(201, 148, 42, 0.45) !important;
}

.gallery-image-zoom-trigger:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 28px rgba(201, 148, 42, 0.65) !important;
}

/* ── 15. FAQ SECTION ──────────────────────────────────────── */
.faq-section {
  background: #fff !important;
}

.faq-section .title {
  color: var(--charcoal) !important;
}

.faq-section .description {
  color: #5c5040 !important;
}

.accordion-item {
  border: none !important;
  border-bottom: 1px solid rgba(201, 148, 42, 0.18) !important;
  background: transparent !important;
}

.accordion-button {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--charcoal) !important;
  background: transparent !important;
  padding: 20px 0 !important;
  box-shadow: none !important;
  transition: color var(--transition) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--gold-mid) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: sepia(1) saturate(5) hue-rotate(-10deg) !important;
}

.accordion-body {
  color: #6b5e4e !important;
  font-size: 0.93rem !important;
  line-height: 1.8 !important;
  padding: 0 0 20px 0 !important;
}

/* FAQ image */
.faq-section .w-100.h-580px {
  filter: brightness(0.92) saturate(0.95) !important;
  transition: filter var(--transition) !important;
}

.faq-section .w-100.h-580px:hover {
  filter: brightness(1) saturate(1) !important;
}

/* FAQ CTA badge */
.faq-section .bg-primary {
  background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-dark) 100%) !important;
}

.faq-section .bg-primary a {
  color: #fff !important;
}

/* ── 16. FOOTER ───────────────────────────────────────────── */
.footer {
  background: #080808 !important;
  border-top: 1px solid rgba(201, 148, 42, 0.2) !important;
}

/* Appointment section in footer */
.section-appointment {
  padding-top: 0 !important;
}

.section-appointment .bg-white {
  background: var(--charcoal-2) !important;
  border: 1px solid rgba(201, 148, 42, 0.15) !important;
}

.section-appointment .bg-primary {
  background: linear-gradient(135deg, rgba(201, 148, 42, 0.22) 0%, rgba(140, 100, 20, 0.28) 100%) !important;
  border-right: 1px solid rgba(201, 148, 42, 0.2) !important;
}

.section-appointment h5.text-white,
.section-appointment .text-white.h3 {
  color: var(--gold-light) !important;
}

.section-appointment h4 {
  color: #e8e0d0 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.3rem !important;
}

.section-appointment .form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(201, 148, 42, 0.25) !important;
  color: #e8e0d0 !important;
  border-radius: 0 !important;
}

.section-appointment .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.section-appointment .form-control:focus {
  box-shadow: 0 0 0 2px rgba(201, 148, 42, 0.35) !important;
  border-color: var(--gold-mid) !important;
}

/* Footer main */
.main-footer {
  background: transparent !important;
}

.footer-item-title {
  color: var(--gold-light) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(201, 148, 42, 0.2) !important;
}

.footer-menu-item a,
.contact-list a {
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 0.88rem !important;
  transition: color var(--transition), padding-left var(--transition) !important;
  text-decoration: none !important;
}

.footer-menu-item a:hover,
.contact-list a:hover {
  color: var(--gold-light) !important;
  padding-left: 4px !important;
}

.footer p.text-white {
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 0.88rem !important;
  line-height: 1.8 !important;
}

/* Social icons */
.social-link-facebook,
.social-link-x,
.social-link-instagram,
.social-link-linkedin,
.social-link-messenger {
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(201, 148, 42, 0.3) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all var(--transition) !important;
}

.social-link-facebook:hover,
.social-link-x:hover,
.social-link-instagram:hover,
.social-link-linkedin:hover,
.social-link-messenger:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid)) !important;
  border-color: var(--gold-mid) !important;
  color: var(--charcoal) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(201, 148, 42, 0.4) !important;
}

/* Bottom footer */
.bottom-footer {
  border-top-color: rgba(201, 148, 42, 0.15) !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 0.08em !important;
}

.bottom-footer strong {
  color: var(--gold-light) !important;
}

/* ── 17. SCROLL TO TOP BUTTON ─────────────────────────────── */
.btn-scroll-top {
  background: var(--charcoal) !important;
  border: 1px solid rgba(201, 148, 42, 0.4) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  transition: all var(--transition) !important;
}

.btn-scroll-top:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid)) !important;
  border-color: transparent !important;
  box-shadow: 0 8px 30px rgba(201, 148, 42, 0.45) !important;
}

.btn-scroll-top .arrow {
  color: var(--gold-light) !important;
  transition: color var(--transition) !important;
}

.btn-scroll-top:hover .arrow {
  color: var(--charcoal) !important;
}

.progress-ring-circle {
  stroke: var(--gold-mid) !important;
}

.progress-ring-bg {
  stroke: rgba(201, 148, 42, 0.15) !important;
}

/* ── 18. OFFCANVAS (MOBILE MENU) ──────────────────────────── */
.offcanvas {
  background: var(--charcoal) !important;
  border-left: 1px solid rgba(201, 148, 42, 0.2) !important;
}

.offcanvas-header {
  background: var(--charcoal-2) !important;
  border-bottom: 1px solid rgba(201, 148, 42, 0.15) !important;
}

.offcanvas-header button {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color var(--transition) !important;
}

.offcanvas-header button:hover {
  color: var(--gold-light) !important;
}

.nav-menu-mobile .nav-menu-link {
  color: rgba(255, 255, 255, 0.8) !important;
  border-bottom: 1px solid rgba(201, 148, 42, 0.08) !important;
  padding: 14px 0 !important;
  width: 100% !important;
  font-size: 1rem !important;
  letter-spacing: 0.1em !important;
}

.nav-menu-mobile .nav-menu-link:hover {
  color: var(--gold-light) !important;
  padding-left: 10px !important;
}

/* ── 19. AOS ANIMATION TIGHTENING ─────────────────────────── */
[data-aos] {
  transition-timing-function: cubic-bezier(.4, 0, .2, 1) !important;
}

/* ── 20. COVER IMAGES ─────────────────────────────────────── */
.cover-img {
  transition: transform 0.7s cubic-bezier(.4, 0, .2, 1) !important;
}

/* ── 21. SECTION TITLE CENTERED ───────────────────────────── */
.section-title-centered .sub-title {
  display: block;
  margin-bottom: 8px;
}

/* ── 22. PREMIUM PRELOADER SHIMMER ────────────────────────── */
@keyframes gold-shimmer {
  0% {
    background-position: -600px 0;
  }

  100% {
    background-position: 600px 0;
  }
}

.gold-shimmer {
  background: linear-gradient(90deg,
      rgba(201, 148, 42, 0.0) 0%,
      rgba(240, 192, 96, 0.35) 50%,
      rgba(201, 148, 42, 0.0) 100%);
  background-size: 600px 100%;
  animation: gold-shimmer 2s infinite linear;
}

/* ── 23. SECTION DIVIDER GOLD LINE ────────────────────────── */
.section::after {
  content: none;
}

hr {
  border-color: rgba(201, 148, 42, 0.2) !important;
}

/* ── 24. HEADER PHONE ICON BG ─────────────────────────────── */
.header-main .bg-primary {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark)) !important;
}

/* ── 25. TEXT LINK COLORS ─────────────────────────────────── */
.hover-text-primary:hover {
  color: var(--gold-light) !important;
}

.text-primary {
  color: var(--gold-mid) !important;
}

/* ── 26. BACKGROUND IMAGE SECTIONS ───────────────────────────*/
.bg-img-sliced-bottom-lg::after,
.bg-img-sliced-bottom::after {
  background-color: var(--charcoal) !important;
}

/* ── 27. SECTION SPACING ─────────────────────────────────────*/
.section-projects.section-top-lg {
  padding-top: 5rem;
}

/* ── 28. FLOATING GOLD PARTICLES (hero aesthetic) ────────── */
@keyframes float-up {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-80px) scale(0);
    opacity: 0;
  }
}

/* ── 29. LINK TREATMENTS ──────────────────────────────────── */
a {
  transition: color var(--transition) !important;
}

/* ════════════════════════════════════════════════════════════
   30. MOBILE RESPONSIVE FIXES  (max-width: 991px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {

  /* ── Hero: kill excessive padding that creates empty gap ── */
  .section-hero {
    min-height: unset !important;
  }

  .section-hero .swiper-slide.section-top-xxl {
    padding-top: 5rem !important;
    /* room for sticky header */
  }

  .section-hero .swiper-slide.section-bottom-xl {
    padding-bottom: 3.5rem !important;
  }

  /* Kill the push-down margin on hero-content that causes blank space */
  .section-hero .hero-content {
    margin-top: 0 !important;
  }

  /* Remove the gold decorative line on mobile (it pushed content down) */
  .section-hero .hero-content::before {
    display: none !important;
  }

  /* Hero headline — scale down on mobile */
  .section-hero .display2 {
    font-size: clamp(2rem, 8vw, 3.2rem) !important;
    line-height: 1.1 !important;
  }

  /* Hero description text */
  .section-hero p {
    font-size: 0.95rem !important;
    max-width: 100% !important;
  }

  /* Hero CTA button */
  .btn-94 {
    padding: 12px 28px !important;
    font-size: 0.72rem !important;
  }

  /* Ensure features section sits flush below hero */
  .section-hero+.features-section {
    margin-top: 0 !important;
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  /* Feature cards — full width stack */
  .feature-item {
    flex-direction: row !important;
    align-items: center !important;
    padding: 18px 20px !important;
  }

  .feature-item-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    font-size: 1.6rem !important;
  }

  .feature-item h3 {
    font-size: 1rem !important;
    margin-bottom: 2px !important;
  }

  .feature-item p {
    font-size: 0.82rem !important;
  }

  /* About section */
  .section-about::before {
    display: none !important;
  }

  .section-about .title {
    font-size: clamp(1.6rem, 6vw, 2.4rem) !important;
  }

  /* Steps — number badge */
  .step-list-number {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    font-size: 1.1rem !important;
  }

  /* Footer — reduce col spacing */
  .footer-item-title {
    font-size: 0.74rem !important;
    margin-bottom: 16px !important;
  }
}

/* ── Tablet-specific fixes (768px – 991px) ────────────────── */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-hero .display2 {
    font-size: clamp(2.4rem, 5vw, 3.4rem) !important;
  }
}

/* ── Small phone fixes (max-width: 479px) ─────────────────── */
@media (max-width: 479px) {
  .section-hero .swiper-slide.section-top-xxl {
    padding-top: 4.5rem !important;
  }

  .section-hero .swiper-slide.section-bottom-xl {
    padding-bottom: 2.5rem !important;
  }

  .section-hero .display2 {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem) !important;
  }

  /* Contact section — stack vertically */
  .contact-item-wrapper {
    border-right: none !important;
    border-bottom: 1px solid rgba(201, 148, 42, 0.12) !important;
  }

  /* Gallery description on very small phones */
  .gallery-item-description {
    padding: 14px 18px !important;
  }

  /* footer social icons spacing */
  .social {
    gap: 10px !important;
  }
}