@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  /* Color System */
  --primary: #0B3B2C;
  --primary-light: #165642;
  --primary-dark: #07251C;
  --accent: #C5A059;
  --accent-light: #D5B473;
  --accent-dark: #9F7E41;
  --bg-light: #F9F9F6;
  --bg-dark: #121A16;
  --bg-glass: rgba(11, 59, 44, 0.04);
  --border-glass: rgba(197, 160, 89, 0.15);

  /* Text Colors */
  --text-dark: #1C2722;
  --text-light: #F9F9F6;
  --text-muted: #6B7C75;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(11, 59, 44, 0.05), 0 2px 4px -1px rgba(11, 59, 44, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 59, 44, 0.08), 0 4px 6px -2px rgba(11, 59, 44, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 59, 44, 0.12), 0 10px 10px -5px rgba(11, 59, 44, 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
}

body {
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
  border: 2px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Typography Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

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

/* Common Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px;
  z-index: 1000;
  background: rgba(7, 37, 28, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 85px;
  background: rgba(7, 37, 28, 0.95);
  border-bottom: 1px solid var(--border-glass);
}

.navbar.scrolled .nav-logo {
  color: var(--text-light);
}

.navbar.scrolled .nav-logo span {
  color: var(--accent);
}

.navbar.scrolled .nav-link {
  color: var(--text-light);
}

.navbar.scrolled .nav-link:hover {
  color: var(--accent);
}

.navbar.scrolled .nav-link.active {
  color: var(--accent);
}

.navbar.scrolled .btn-nav {
  background: var(--accent);
  color: var(--primary-dark);
}

.navbar.scrolled .btn-nav:hover {
  background: var(--text-light);
  color: var(--primary-dark);
}

.navbar.scrolled .mobile-toggle span {
  background-color: var(--text-light);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
}

.nav-logo {
  text-decoration: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo-img {
  height: 44px;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent-dark);
}

.nav-link.active {
  color: var(--accent);
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  border: 1px solid var(--primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  color: var(--primary-dark);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary-dark);
  border: 1px solid var(--accent);
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-accent:hover::before {
  left: 0;
}

.btn-accent:hover {
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(11, 59, 44, 0.2);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 10001;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

/* Footer Section */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(249, 249, 246, 0.7);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(249, 249, 246, 0.2);
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(249, 249, 246, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(249, 249, 246, 0.7);
  margin-bottom: 1.2rem;
}

.footer-contact svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(249, 249, 246, 0.1);
  color: rgba(249, 249, 246, 0.5);
  font-size: 0.9rem;
}

/* Page Headers */
.page-header {
  padding: 13rem 0 7rem;
  background: linear-gradient(180deg, var(--primary-dark), rgba(11, 59, 44, 0.85)), url('assets/pic3.webp') no-repeat center center/cover;
  background-attachment: fixed;
  text-align: center;
  color: var(--text-light);
  border-bottom: 3px solid var(--accent);
}

.page-header h1 {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
  color: var(--accent);
  font-size: 1.2rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-serif);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }

  .nav-logo-img {
    height: 42px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #07251C;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    color: var(--text-light);
    font-size: 1.2rem;
  }

  /* Hero Mobile */
  .hero-title, .hero-content h1.hero-title {
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 0.8rem !important;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  /* Founder Section Mobile */
  .founder-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center;
  }

  .founder-text {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .footer-brand p {
    max-width: 100% !important;
  }

  .page-header {
    padding: 8rem 1.5rem 3.5rem !important;
  }

  .page-header h1 {
    font-size: 2.2rem !important;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .categories-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Lightbox Styling */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 37, 28, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-out;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 4px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(249, 249, 246, 0.1);
  transition: opacity 0.2s ease;
}

.lightbox-caption {
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-top: 1rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: rgba(249, 249, 246, 0.6);
  font-size: 3rem;
  cursor: pointer;
  z-index: 2002;
  transition: var(--transition-smooth);
  user-select: none;
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--accent);
}

/* Category Filter Tabs (Services Page) */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1.8rem;
  background-color: transparent;
  color: var(--primary);
  border: 1px solid rgba(11, 59, 44, 0.15);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* Service Card Design */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.service-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(11, 59, 44, 0.03);
  opacity: 1;
}

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

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
}

.service-body {
  padding: 2.2rem;
}

.service-title {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.service-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.service-inclusions-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: var(--font-sans);
}

.service-inclusions {
  list-style: none;
  margin-bottom: 2rem;
}

.service-inclusions li {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-inclusions li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.service-card .btn {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.85rem;
}

/* Contact Page Styles */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 3.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
  text-align: left;
}

.contact-form-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.contact-form-wrapper>p {
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.form-control {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(11, 59, 44, 0.12);
  background-color: var(--bg-light);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

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

.btn-submit {
  width: 100%;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.info-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(11, 59, 44, 0.05);
  border-radius: 50%;
  color: var(--primary);
}

.info-card-header h3 {
  font-size: 1.4rem;
  color: var(--primary);
}

.info-card p {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-card a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.info-card a:hover {
  color: var(--accent-dark);
}

.contact-map-placeholder {
  height: 250px;
  border-radius: 8px;
  background-image: linear-gradient(rgba(11, 59, 44, 0.8), rgba(11, 59, 44, 0.9)), url('assets/pic1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.contact-map-placeholder svg {
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-map-placeholder h4 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-map-placeholder p {
  color: rgba(249, 249, 246, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1.5rem;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }
}

/* Hero Auto-Sliding Background */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  pointer-events: none;
}

.hero-title {
  color: #ffffff !important;
  font-size: 3.5rem;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-slide.active {
  opacity: 1;
}

/* Lightbox Slideshow Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 37, 28, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.lightbox-caption {
  margin-top: 1rem;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  text-align: center;
}

.lightbox-counter {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.3rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
  color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 37, 28, 0.6);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10000;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.hero-dots-container {
  position: absolute;
  bottom: 80px;
  right: 3rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(7, 37, 28, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(249, 249, 246, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-dot:hover {
  background: rgba(249, 249, 246, 0.8);
}

.hero-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero-dots-container {
    bottom: 75px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* Image Framing & Object-Fit Rules */
.gallery-item img,
.cat-img-wrapper img,
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: var(--transition-smooth);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ── FOOTER WHATSAPP BUTTON (large, styled) ── */
.footer-wa-icon-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem !important;
  background: linear-gradient(135deg, #25d366, #128c48) !important;
  color: #ffffff !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4) !important;
  transition: all 0.3s ease !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.footer-wa-icon-btn svg {
  width: 26px !important;
  height: 26px !important;
  fill: #ffffff !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.footer-wa-icon-btn .wa-btn-text {
  opacity: 1;
  color: #ffffff !important;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-wa-icon-btn:hover {
  background: linear-gradient(135deg, #1db954, #0f7a3c) !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6) !important;
  transform: translateY(-3px) scale(1.03);
}

/* ── FIXED FLOATING WHATSAPP BUBBLE (bottom-right) ── */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45); }
  50%      { box-shadow: 0 4px 22px rgba(37, 211, 102, 0.7); }
}

.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: #25d366;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  white-space: nowrap;
  animation: waPulse 2.5s ease-in-out infinite;
}

.floating-wa-btn svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  flex-shrink: 0;
}

.floating-wa-btn .wa-btn-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.35s ease, opacity 0.25s ease, margin 0.3s ease;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  white-space: nowrap;
}

.floating-wa-btn:hover {
  width: auto;
  padding: 0 1.4rem;
  background-color: #1ea952;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
  transform: translateY(-3px);
  animation: none;
}

.floating-wa-btn:hover .wa-btn-text {
  max-width: 200px;
  opacity: 1;
  margin-left: 0.55rem;
}