@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f7f3ec;
  --bg-alt: #efe7db;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #fffaf4;
  --surface-strong: #f4ede2;
  --text: #2d231e;
  --muted: #6e6257;
  --border: rgba(73, 52, 37, 0.12);
  --shadow-sm: 0 10px 24px rgba(57, 35, 20, 0.08);
  --shadow-md: 0 18px 40px rgba(57, 35, 20, 0.12);
  --accent: #8f4bb8;
  --accent-strong: #6d2f8f;
  --accent-soft: rgba(143, 75, 184, 0.12);
  --accent-gold: #c89d58;
  --hero-overlay: linear-gradient(180deg, rgba(27, 19, 15, 0.34), rgba(27, 19, 15, 0.68));
  --header-bg: rgba(33, 20, 15, 0.72);
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(143, 75, 184, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(200, 157, 88, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, #f3ede3 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.65;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(143, 75, 184, 0.2);
  color: var(--text);
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid rgba(143, 75, 184, 0.35);
  outline-offset: 3px;
}

.container {
  position: relative;
}

/* Header */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 0.85rem 0;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(24, 14, 10, 0.12);
}

.navbar.scrolled {
  background: rgba(26, 15, 12, 0.84) !important;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand {
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.navbar-logo {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.25));
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-link,
.nav-link {
  position: relative;
  margin: 0 0.15rem;
  padding: 0.6rem 0.95rem;
  color: rgba(255, 250, 244, 0.92) !important;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.navbar-nav .nav-link::after,
.nav-link::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 244, 0.75), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover,
.nav-link:hover {
  color: #fff !important;
}

.navbar-nav .nav-link:hover::after,
.nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  color: rgba(255, 250, 244, 0.94);
  font-size: 1.05rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-icons a:hover {
  color: #fff;
  background: rgba(143, 75, 184, 0.22);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.dropdown-menu {
  display: none;
  min-width: 220px;
  padding: 0.55rem 0.35rem;
  margin-top: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(22, 13, 10, 0.92);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.dropdown-item {
  padding: 0.7rem 1rem;
  border-radius: 12px;
  color: rgba(255, 250, 244, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(143, 75, 184, 0.22);
  color: #fff;
  transform: translateX(2px);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu.show {
  display: block;
}

.navbar .dropdown-toggle::after {
  content: '\25BE';
  border: 0;
  margin-left: 0.35rem;
  vertical-align: middle;
  font-size: 0.9em;
  color: rgba(255, 250, 244, 0.78);
}

.navbar-toggler {
  border: 0;
  padding: 0.35rem;
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  padding: clamp(5rem, 12vw, 8rem) 0;
  display: flex;
  align-items: center;
  color: #fff7ef;
  background: url('my-harp-background.jpg') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero > .container {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.hero h1 {
  margin: 0 0 1.2rem;
  color: #fff8f1;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.hero p,
.hero .subtitle {
  margin: 0 auto 1.85rem;
  max-width: 760px;
  color: rgba(255, 248, 241, 0.88);
  font-size: clamp(1.02rem, 1.9vw, 1.35rem);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hero-actions,
.hero .d-flex.gap-3 {
  flex-wrap: wrap;
  gap: 0.85rem !important;
}

/* Sections */
.section {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section.bg-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(248, 242, 234, 0.74));
}

.section-title {
  display: block;
  width: fit-content;
  margin: 0 auto 2.4rem;
  text-align: center;
  font-size: clamp(2.15rem, 3.7vw, 3.2rem);
  line-height: 1.05;
  color: var(--text);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent));
}

.section-heading {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
}

.section-intro {
  max-width: 720px;
  margin: -1.2rem auto 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(143, 75, 184, 0.1);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-surface,
.card,
.blog-card,
.gallery-card,
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.section-surface {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.blog-card:hover,
.gallery-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(143, 75, 184, 0.2);
}

.card-body {
  padding: 1.6rem;
}

.card-title {
  color: var(--text);
}

.card-img-top,
.about-img,
.gallery-img,
.blog-img,
.blog-cover,
.service-img,
.fancy-img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  background: #efe8de;
}

.about-img {
  box-shadow: var(--shadow-md);
}

.fancy-img {
  aspect-ratio: 4 / 5;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.fancy-img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
  filter: saturate(1.02);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-copy .lead {
  color: var(--text);
  font-size: 1.14rem;
}

.hero-cta,
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

/* Buttons */
.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(143, 75, 184, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--accent-strong) 0%, #51205f 100%);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(143, 75, 184, 0.28);
}

.btn-outline-light {
  border-color: rgba(255, 248, 241, 0.55);
  color: #fff8f1;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: rgba(255, 248, 241, 0.12);
  border-color: rgba(255, 248, 241, 0.78);
  color: #fff;
}

.btn-outline-primary {
  color: var(--accent-strong);
  border-color: rgba(143, 75, 184, 0.34);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Forms */
.form-label {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.form-control,
.form-select {
  border-radius: 16px;
  border: 1px solid rgba(73, 52, 37, 0.14);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(143, 75, 184, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(143, 75, 184, 0.12);
}

.alert {
  border: 0;
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.contact-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.contact-info i {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 75, 184, 0.1);
  color: var(--accent-strong);
  font-size: 1.1rem;
}

.contact-info h5 {
  margin-bottom: 0.15rem;
  font-size: 1.25rem;
}

.contact-info p {
  margin-bottom: 0;
}

/* Gallery and media */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery-card {
  padding: 0.9rem;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gallery-img {
  aspect-ratio: 4 / 5;
  box-shadow: 0 8px 20px rgba(36, 23, 18, 0.08);
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
  filter: saturate(1.04);
  box-shadow: 0 12px 26px rgba(36, 23, 18, 0.12);
}

.gallery-caption {
  margin-top: 0.7rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
}

.yt-video,
.yt-video-responsive {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #090705;
  box-shadow: var(--shadow-sm);
}

.yt-video iframe,
.yt-video-responsive iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-video-responsive {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.yt-video-responsive iframe {
  position: absolute;
  inset: 0;
}

/* Blog */
.blog-card {
  height: 100%;
  padding: 1rem;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-img {
  height: 220px;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.55rem;
  line-height: 1.08;
  margin-bottom: 0.45rem;
  color: var(--text);
}

.blog-summary {
  color: var(--muted);
  margin-bottom: 1rem;
}

.blog-btn {
  align-self: flex-start;
}

.blog-meta {
  color: var(--muted);
  font-size: 0.98rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.read-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(143, 75, 184, 0.1);
  color: var(--accent-strong);
}

#zoom-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 1.25rem;
  align-items: center;
  justify-content: center;
  background: rgba(20, 13, 10, 0.94);
}

#zoom-modal img {
  max-width: min(94vw, 1200px);
  max-height: 88vh;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

#zoom-modal .close-btn {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
}

/* Services */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  height: 100%;
  padding: 1.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--accent-strong);
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 18px;
  background: rgba(143, 75, 184, 0.1);
}

.service-title {
  font-size: 1.6rem;
  line-height: 1.08;
  margin: 0.25rem 0 0.75rem;
  color: var(--text);
}

.service-desc {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-more {
  margin-top: auto;
}

.service-img {
  max-height: 240px;
  margin: 0.85rem 0 0.95rem;
}

/* Legacy animation hooks */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
  margin-top: auto;
  padding: 3.25rem 0 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(143, 75, 184, 0.16), transparent 26%),
    linear-gradient(180deg, #231713 0%, #160f0d 100%);
  color: rgba(255, 248, 241, 0.86);
}

footer h3,
footer h4,
footer p,
footer li,
footer a {
  color: rgba(255, 248, 241, 0.9);
}

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

.footer-links li {
  margin-bottom: 0.65rem;
  color: rgba(255, 248, 241, 0.82);
}

.footer-links a {
  color: rgba(255, 248, 241, 0.82);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

footer .social-icons a {
  width: 2.7rem;
  height: 2.7rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(143, 75, 184, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: #fff;
}

/* Cookie banner */
.cookie-consent {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(92vw, 460px);
}

.cookie-consent__panel {
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(143, 75, 184, 0.22);
  background: rgba(255, 250, 244, 0.98);
  box-shadow: var(--shadow-md);
}

.cookie-consent__title {
  margin-bottom: 0.45rem;
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 1.02rem;
}

.cookie-consent__text {
  color: var(--muted);
  font-size: 0.96rem;
}

.cookie-consent .btn {
  width: 100%;
}

/* Responsive */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .navbar.navbar-expand-lg .container {
    position: relative;
  }

  .navbar.navbar-expand-lg .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .navbar.navbar-expand-lg .navbar-nav {
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 0 0.7rem;
  }

  .navbar .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .navbar-brand {
    position: static;
    transform: none;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 6;
    order: 1;
    margin: 0.1rem 0 0.12rem;
  }

  .navbar-logo {
    width: min(100%, 540px);
    height: auto;
    max-width: none;
    transform: scale(1.5);
    transform-origin: center center;
  }

  .mobile-nav-tools {
    order: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 5;
    padding-right: 0;
  }

  .social-icons.mobile-social {
    width: 100%;
    flex: 1 1 auto;
    justify-content: center;
    gap: 0.55rem;
    position: relative;
    z-index: 4;
    padding: 0.05rem 0 0.2rem;
  }

  .social-icons.mobile-social a {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1.03rem;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 250, 244, 0.94);
  }

  .navbar-toggler {
    flex: 0 0 auto;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 7;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: rgba(255, 250, 244, 0.94);
    transform: translateY(-50%);
  }

  .navbar-toggler[aria-expanded="true"] {
    color: #fff;
    transform: translateY(-50%);
    background: transparent;
  }

  .collapse.navbar-collapse.mobile-menu-panel {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    margin-top: 0.1rem;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(38, 28, 25, 0.84), rgba(23, 16, 14, 0.92));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px) saturate(130%);
    overflow: hidden;
    position: relative;
    z-index: 3;
    display: block;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.32s;
  }

  .collapse.navbar-collapse.mobile-menu-panel.show {
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: max-height 0.34s ease, opacity 0.24s ease, transform 0.24s ease;
  }

  .navbar-collapse .navbar-nav {
    align-items: stretch;
    padding: 0.7rem 0.7rem 0.85rem;
    gap: 0.12rem;
  }

  .navbar-nav .nav-link,
  .nav-link {
    padding: 0.92rem 0.45rem;
    width: 100%;
    text-align: left;
    border-radius: 14px;
    background: transparent;
    border: 0;
    color: rgba(255, 250, 244, 0.92) !important;
    letter-spacing: 0.02em;
    font-weight: 500;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus-visible,
  .nav-link:hover,
  .nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.05);
  }

  .navbar-nav .nav-link::after,
  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.2s ease, transform 0.2s ease;
    transform: translateY(-4px);
  }

  .dropdown-menu.show {
    max-height: 160px;
    opacity: 1;
    padding: 0.1rem 0 0.05rem;
    margin-top: 0.05rem;
    transform: translateY(0);
  }

  .dropdown-item {
    text-align: left;
    padding: 0.54rem 0.45rem 0.54rem 1.1rem;
    border: 0;
    border-radius: 14px;
    color: rgba(255, 250, 244, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.015em;
    text-transform: none;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: translateX(2px);
  }

  .nav-item.dropdown > .nav-link {
    position: relative;
    padding-right: 2rem;
  }

  .nav-item.dropdown > .nav-link::after {
    content: '\25BE';
    display: block;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 250, 244, 0.7);
    font-size: 0.92rem;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .nav-item.dropdown.is-open > .nav-link::after {
    transform: translateY(-50%) rotate(180deg);
    color: #fff;
  }

  .hero {
    min-height: 68vh;
    padding: 5rem 0 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .services-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 3.2rem 0;
  }

  .section-title {
    margin-bottom: 1.75rem;
  }

  .hero {
    min-height: 62vh;
  }

  .hero p,
  .hero .subtitle {
    font-size: 1.02rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.9rem;
  }

  .gallery-card,
  .blog-card,
  .service-card {
    border-radius: 22px;
  }

  .blog-img {
    height: 180px;
  }

  .navbar-logo {
    height: 84px;
  }
}

@media (max-width: 575.98px) {
  .hero-actions,
  .intro-actions,
  .hero .d-flex.gap-3 {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .intro-actions .btn,
  .hero .d-flex.gap-3 .btn {
    width: 100%;
  }

  .section-surface {
    padding: 1.15rem;
  }

  .contact-info {
    padding: 0.85rem 0.9rem;
  }
}
