/* Base Styles */
:root {
  --primary: #b45309; /* amber-700 */
  --primary-hover: #d97706; /* amber-600 */
  --dark: #1c1917; /* stone-900 */
  --light: #fafaf9; /* stone-50 */
  --text: #44403c; /* stone-600 */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-subtitle {
  color: var(--primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

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

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  border: 1px solid var(--dark);
  color: var(--dark);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: var(--dark);
  color: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1000;
  border-bottom: 1px solid #f5f5f4;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.logo span {
  color: var(--primary);
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Dropdown / Megamenu */
.dropdown {
  position: static;
  height: 80px;
  display: flex;
  align-items: center;
}

.dropbtn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}

.dropdown:hover .dropbtn {
  color: var(--primary);
}

.dropdown-content {
  position: absolute;
  top: 79px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.mega-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mega-column h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--primary);
  font-family: var(--font-sans);
  font-weight: 700;
}

.mega-column h3 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}

.mega-column h3 a:hover {
  color: var(--primary);
}

.mega-column h3 span {
  color: var(--primary);
  margin-right: 8px;
}

.mega-column ul li {
  margin-bottom: 0.75rem;
}

.mega-column ul li a {
  font-size: 0.875rem;
  transition: color 0.3s;
}

.mega-column ul li a:hover {
  color: var(--primary);
}

/* Brand Title */
.mobile-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.mobile-brand-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.15em;
}

.mobile-brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

.mobile-menu {
  display: none;
  background: #fff;
  padding: 1rem 20px;
  border-top: 1px solid #f5f5f4;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f4;
}

.mobile-dropdown-title {
  padding: 10px 0;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f5f5f4;
  user-select: none;
}

.mobile-dropdown-title .mobile-dropdown-chevron {
  transition: transform 0.3s ease;
  width: 18px;
  height: 18px;
}

.mobile-dropdown-title.active .mobile-dropdown-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  padding-left: 1rem;
  border-left: 2px solid var(--primary);
  margin-bottom: 10px;
  max-height: 60vh;
  overflow-y: auto;
}

.mobile-dropdown-content.active {
  display: block;
}

.mobile-dropdown-content h4 {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  margin: 10px 0 5px;
  font-family: var(--font-sans);
}

.mobile-dropdown-content h4 a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.mobile-dropdown-content h4 a:hover {
  text-decoration: underline;
}

.mobile-btn {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

/* Hero Section */


/* About Section */
.about {
  padding: 6rem 0;
  background-color: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.experience-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  text-align: center;
}

.experience-badge .years {
  display: block;
  font-size: 3rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #a8a29e;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--light);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #f5f5f4;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.service-img {
  position: relative;
  height: 250px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-wrapper {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  padding: 0.75rem;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  color: var(--primary);
}

.service-info {
  padding: 2rem;
}

.service-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-info p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-info ul li {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.service-info ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 10px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.25rem;
  background-color: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.service-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.service-btn svg {
  width: 14px;
  height: 14px;
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  background-color: var(--dark);
  color: #fff;
}

.gallery .section-header h2 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Gallery Tabs */
.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 2rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary);
  color: #fff;
}

.gallery-sub-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.sub-tab-group {
  display: none;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.sub-tab-group.active {
  display: flex;
}

.sub-tab-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: var(--text);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all 0.3s ease;
}

.sub-tab-btn:hover, .sub-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  font-family: var(--font-serif);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

.gallery-item.hide {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: #fff;
  margin-top: 1rem;
  font-size: 1.25rem;
  font-family: var(--font-serif);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-content .btn-primary {
  background-color: #fff;
  color: var(--primary);
  font-weight: 600;
}

.cta-content .btn-primary:hover {
  background-color: var(--dark);
  color: #fff;
}

/* Subcategory Pages */
.service-details {
  padding: 4rem 0;
}

.service-details h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.service-details p {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tip-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
}

.tip-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tip-card h4 i {
  color: var(--primary);
}

.measure-guide {
  background: #fff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  border: 1px solid #f5f5f4;
  margin: 4rem 0;
}

.measure-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

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

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.mini-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s;
}

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

@media (max-width: 768px) {
  .mini-gallery {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background-color: #0c0a09;
  color: #a8a29e;
  padding: 4rem 0 2rem;
}

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

.footer-brand h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand h2 span {
  color: var(--primary);
}

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

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: background 0.3s, color 0.3s;
}

.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
}

.footer h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}

.footer ul li {
  margin-bottom: 0.75rem;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

/* Inner Page Headers */


/* Inner Page Content */
.page-content {
  padding: 6rem 0;
}

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  border: 1px solid #f5f5f4;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-img {
  height: 280px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

/* Quote Form */
.quote-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border: 1px solid #f5f5f4;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: var(--light);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text);
  margin: 0;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e7e5e4;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1.125rem;
}

/* Mission, Vision & Core Values */
.mission-vision-section {
  padding: 6rem 0;
  background-color: var(--light);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.mv-card {
  background: #fff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  border: 1px solid #f5f5f4;
  text-align: center;
  transition: transform 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-icon {
  width: 64px;
  height: 64px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mv-icon i {
  width: 32px;
  height: 32px;
}

.mv-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.mv-card p {
  font-size: 1.125rem;
  color: var(--text);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-item {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid #f5f5f4;
  text-align: center;
  transition: all 0.3s;
}

.value-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.value-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.value-icon i {
  width: 28px;
  height: 28px;
}

.value-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--text);
}

/* Clients Marquee */
.clients-section {
  padding: 4rem 0;
  background: #fff;
  border-top: 1px solid #f5f5f4;
  border-bottom: 1px solid #f5f5f4;
  overflow: hidden;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.client-logo {
  padding: 0 3rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #a8a29e;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reviews Section */
.reviews-section {
  padding: 6rem 0;
  background-color: var(--light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.review-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}
.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}
.stars i {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.review-card p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviewer .avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
}
.reviewer h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.125rem;
}
.reviewer span {
  font-size: 0.875rem;
  color: #78716c;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: #fff;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e7e5e4;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
}
.faq-question i {
  transition: transform 0.3s;
  color: var(--primary);
}
.faq-question.active i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text);
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .desktop-menu, .nav-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .mobile-brand {
    display: flex;
  }
  .hero-slider {
    height: 40vh;
    min-height: 260px;
  }
  .hero-content {
    padding: 0 24px;
  }
  .hero-content h1 {
    font-size: 1.0rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }
  .hero-content .subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
    margin-top:50px;
  }
  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large, .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 45vh;
    min-height: 280px;
  }
  .hero-content {
    padding: 0 16px;
  }
  .hero-content h1 {
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 0.4rem;
  }
  .hero-content h1 br {
    display: none;
  }
  .hero-content .subtitle {
    font-size: 0.55rem;
    margin-bottom: 0.3rem;
  }
  .hero-content p {
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }
  .hero-buttons {
    gap: 0.4rem;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    gap: 4px;
  }
  .hero-buttons .btn-primary i,
  .hero-buttons .btn-secondary i {
    width: 14px;
    height: 14px;
  }
  .slider-btn {
    width: 32px;
    height: 32px;
  }
  .slider-dots {
    bottom: 16px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
}


/* Hero Slider */
.hero-slider {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
  background-color: var(--dark);
}

@media (min-width: 769px) {
  .hero-slider {
    height: 85vh;
    min-height: 600px;
  }
}

.hero-slider.inner-page {
  height: 50vh;
  min-height: 400px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content .subtitle {
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-slider.inner-page .hero-content h1 {
  font-size: 3.5rem;
}

.hero-content h1 span {
  font-style: italic;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #e7e5e4;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
}
