/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --primary: hsl(31, 52%, 54%);       /* Warm wood tone / amber (#c68a4c) */
  --primary-hover: hsl(31, 52%, 46%); /* Darker warm wood (#b0753b) */
  --secondary: hsl(25, 50%, 33%);     /* Deep oak brown (#7e4e2a) */
  --bg-light: hsl(38, 33%, 97%);      /* Creamy off-white (#faf7f2) */
  --bg-white: hsl(0, 0%, 100%);
  --bg-dark: hsl(60, 2%, 17%);        /* Charcoal (#2c2c2a) */
  --bg-darker: hsl(0, 0%, 12%);       /* Dark slate/black (#1e1e1e) */
  
  /* Text Colors */
  --text-dark: hsl(0, 0%, 18%);       /* Charcoal text (#2e2e2e) */
  --text-dark-muted: hsl(0, 0%, 45%);
  --text-light: hsl(38, 20%, 94%);    /* Creamy white text */
  --text-light-muted: hsl(38, 10%, 75%);
  
  /* Borders and Shadows */
  --border-color: hsl(38, 20%, 88%);
  --border-dark: hsl(60, 2%, 25%);
  --shadow-sm: 0 2px 4px rgba(44, 44, 42, 0.05);
  --shadow-md: 0 8px 20px rgba(44, 44, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 44, 42, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Layout & Spacers */
  --container-width: 1200px;
  --header-height: 100px;
  --header-scroll-height: 80px;
  
  /* Transition Properties */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-padding {
  padding: 100px 0;
}

.bg-cream {
  background-color: var(--bg-light);
}

.bg-charcoal {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

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

.text-primary {
  color: var(--primary);
}

/* Section Header standard styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.section-header:hover h2::after {
  width: 120px;
}

.section-header p {
  color: var(--text-dark-muted);
  font-size: 1.1rem;
}

.bg-charcoal .section-header h2 {
  color: var(--text-light);
}

.bg-charcoal .section-header p {
  color: var(--text-light-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(198, 138, 76, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.top-bar {
  background-color: var(--bg-darker);
  color: var(--text-light-muted);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info i {
  color: var(--primary);
}

.top-socials {
  display: flex;
  gap: 15px;
}

.top-socials a:hover {
  color: var(--primary);
}

/* Main Navigation Bar */
.main-header {
  position: fixed;
  top: 41px; /* offset top-bar height */
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(44, 44, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: var(--header-height);
  transition: all var(--transition-normal);
}

body.scrolled .main-header {
  top: 0;
  height: var(--header-scroll-height);
  background-color: rgba(30, 30, 30, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 55px;
  width: auto;
  display: block;
  transition: all var(--transition-normal);
}

body.scrolled .logo-img {
  max-height: 42px;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Hamburger toggle menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  background-image: linear-gradient(rgba(30, 30, 30, 0.65), rgba(30, 30, 30, 0.85)), url('assets/hero_workshop.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 140px; /* spacing for header */
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(198, 138, 76, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-box {
  width: 65px;
  height: 65px;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all var(--transition-normal);
}

.service-icon {
  width: 32px;
  height: 32px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 1.5;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
}

.service-card:hover .service-icon {
  stroke: var(--bg-white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  padding: 20px 20px 20px 0;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 4px solid var(--primary);
  border-radius: var(--radius-md);
  z-index: 1;
}

.about-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform var(--transition-slow);
}

.about-visual:hover .about-img-wrapper img {
  transform: scale(1.03);
}

.about-content h2 {
  font-size: 2.25rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.about-content .subtitle {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.about-content p {
  color: var(--text-dark-muted);
  margin-bottom: 20px;
  text-align: justify;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.about-feature-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* ==========================================================================
   PARALLAX / QUOTE BLOCK
   ========================================================================== */
.parallax-banner {
  position: relative;
  background-image: linear-gradient(rgba(30, 30, 30, 0.75), rgba(30, 30, 30, 0.85)), url('assets/wood_texture.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
  color: var(--text-light);
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.8;
}

.parallax-banner blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.parallax-banner cite {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(198, 138, 76, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: opacity var(--transition-normal);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

/* Filter grid visibility controls */
.gallery-item.hidden {
  display: none;
}

.gallery-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 44, 42, 0.9) 0%, rgba(44, 44, 42, 0.4) 60%, rgba(44, 44, 42, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
  transform: translateY(15px);
  transition: transform var(--transition-normal);
}

.gallery-title {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 700;
  transform: translateY(15px);
  transition: transform var(--transition-normal) 0.05s;
}

.gallery-item:hover .gallery-category,
.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

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

.lightbox img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-caption {
  color: var(--text-light);
  margin-top: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-light-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary);
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.partners-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.partners-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logo {
  flex: 1;
  min-width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all var(--transition-normal);
}

.partner-logo img,
.partner-logo svg {
  height: 45px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all var(--transition-normal);
}

.partner-logo:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

.partner-logo:hover svg {
  fill: var(--primary);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 50px;
}

.contact-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(198, 138, 76, 0.15);
}

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

/* Form success notification alert */
.form-alert {
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: none;
  font-weight: 500;
  animation: fadeIn var(--transition-normal);
}

.form-alert.success {
  display: block;
  background-color: rgba(46, 117, 89, 0.1);
  border: 1px solid rgb(46, 117, 89);
  color: rgb(46, 117, 89);
}

.form-alert.error {
  display: block;
  background-color: rgba(166, 38, 38, 0.1);
  border: 1px solid rgb(166, 38, 38);
  color: rgb(166, 38, 38);
}

/* Contact info column */
.info-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
}

.info-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(198, 138, 76, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.info-text p, .info-text a {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

.info-text a:hover {
  color: var(--primary);
}

.map-container {
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: 15px;
  position: relative;
}

/* Modern styled map placeholder inside iframe or custom svg design */
.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: hsl(38, 20%, 90%);
  background-image: 
    radial-gradient(var(--border-color) 1px, transparent 1px),
    radial-gradient(var(--border-color) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.map-placeholder p {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  font-weight: 500;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-darker);
  color: var(--text-light-muted);
  padding: 60px 0 20px 0;
  font-size: 0.9rem;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-col p {
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--primary);
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a:hover::before {
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: var(--bg-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.scroll-top-btn.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    max-width: 450px;
    margin: 0 auto;
    padding-left: 20px;
  }
  .about-visual::before {
    left: 0;
  }
  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }
  
  .top-bar {
    display: none;
  }
  
  .main-header {
    top: 0;
    height: var(--header-height);
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    gap: 40px;
    transition: left var(--transition-normal);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.15rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 80%;
    max-width: 280px;
  }
  
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .section-header h2,
  .about-content h2 {
    font-size: 1.75rem;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   LIGHTBOX SLIDER CONTROLS & GALLERY BADGES
   ========================================================================== */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 30, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  font-size: 2.25rem;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2100;
  outline: none;
}

.lightbox-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-counter {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Override Close button to fit screen corners */
.lightbox .lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: var(--text-light-muted);
  font-size: 3rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  z-index: 2200;
}

.lightbox .lightbox-close:hover {
  color: var(--primary);
}

.gallery-count-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(44, 44, 42, 0.85);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 3;
  transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-count-badge {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .lightbox-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .lightbox-prev {
    left: 15px;
  }
  .lightbox-next {
    right: 15px;
  }
  .lightbox .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.25rem;
  }
}

