/* Google Fonts: Nunito Sans & Cormorant Garamond */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #000000;
  --light-text: #070707;
  --dark-text: #ccc;
  --white-color: #000000;
  --dark-bg: #f5f5f5;
  --accent-color: #000000;
}

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

body {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  color: var(--white-color);
  background-color: transparent;
  overflow-x: hidden;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

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

/* Fixed Image Background */
.image-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("/assets/img/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(245, 245, 245, 0.9),
    rgba(245, 245, 245, 0.6)
  );
  z-index: -1;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
  background-color: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
  transform: translateY(-10px);
  background-color: rgba(245, 245, 245, 0.6);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: "Cormorant Garamond", serif;
}

.stat-label {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(245, 245, 245, 0.95);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* UPDATED: Increased logo size to 130px */
.logo img {
  height: 130px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 40px;
}

.nav-links a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a.active,
.mobile-nav-links a.active {
  color: var(--primary-color);
}

.mobile-menu {
  display: none;
  color: var(--white-color);
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Menu Styles */
.mobile-menu-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(245, 245, 245, 0.98);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease;
  padding: 20px;
}

.mobile-menu-container.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--white-color);
  font-size: 34px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-menu:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  margin-bottom: 40px;
}

.mobile-nav-links li {
  margin: 20px 0;
}

.mobile-nav-links a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 300;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav-links a:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.mobile-book-btn {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  margin-top: 20px;
}

.mobile-book-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-5px);
}

/* Hero Section */
.hero {
  height: 110vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.hero-content {
  max-width: 60%;
  z-index: 1;
}

.hero-video {
  max-width: 40%;
  z-index: 1;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-content h1 {
  font-size: 84px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease;
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 22px;
  color: var(--light-text);
  margin-bottom: 35px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
  font-weight: 300;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-right: 20px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

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

.hero-social-links {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

.hero-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: var(--dark-bg);
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Team Section */
.team-section .section-header {
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  overflow: hidden;
  border-radius: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(245, 245, 245, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 220px;
  height: 220px;
  border-radius: 10%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  margin: 0 auto 20px;
  border: 1.5px solid var(--primary-color);
}

.team-member-name {
  padding: 12px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.team-member-role {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 300;
}

/* --- Team Member Social Icons --- */
.team-member-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.team-member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-member-social a:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.team-button-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  text-align: center;
}

/* Gallery Section */
.gallery-collage {
  display: flex;
  gap: 25px;
  margin-top: 60px;
}

.gallery-large {
  flex: 1.5;
  border-radius: 15px;
  overflow: hidden;
  height: 550px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.gallery-small-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.gallery-small {
  border-radius: 15px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

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

/* Section Styles - Transparent Backgrounds */
section {
  position: relative;
  padding: 130px 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 90px;
}

.section-header h2 {
  font-size: 56px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: var(--primary-color);
}

.section-header p {
  font-size: 20px;
  max-width: 750px;
  margin: 35px auto 0;
  color: var(--light-text);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.7;
}

.section-header.left-header {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

.section-header.left-header h2:after {
  left: 0;
  transform: none;
}

.section-header.left-header p {
  margin: 35px 0 0;
  max-width: 100%;
  text-align: left;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--light-text);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}

.about-feature {
  display: flex;
  align-items: center;
  background-color: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(5px);
  padding: 18px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-feature:hover {
  transform: translateY(-5px);
  background-color: rgba(245, 245, 245, 0.6);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.about-feature i {
  font-size: 28px;
  color: var(--primary-color);
  margin-right: 18px;
}

.about-feature span {
  font-weight: 300;
  color: var(--white-color);
  font-size: 17px;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.feature-item {
  background-color: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-10px);
  background-color: rgba(245, 245, 245, 0.6);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.feature-icon i {
  font-size: 40px;
  color: var(--dark-bg);
}

.feature-item h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.feature-item p {
  font-size: 18px;
  color: var(--light-text);
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.testimonial-card {
  background-color: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 45px;
  position: relative;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background-color: rgba(245, 245, 245, 0.6);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 25px;
  left: 35px;
  font-size: 130px;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 0.8;
}

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.author-info p {
  font-size: 16px;
  color: var(--light-text);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.testimonial-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
}

.testimonial-btn {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-view {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-view:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-write {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-write:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-5px);
}

/* Contact Section */
.contact-content {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.location-info,
.hours-info {
  flex: 1;
  background-color: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.location-info h3,
.hours-info h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.location-info h3 i,
.hours-info h3 i {
  font-size: 36px;
  color: var(--primary-color);
  margin-right: 18px;
}

.location-info p,
.hours-info p {
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.7;
}

.location-info i,
.hours-info i {
  color: var(--primary-color);
  margin-right: 18px;
  margin-top: 5px;
  font-size: 20px;
}

.map-container {
  margin-top: 35px;
  flex-grow: 1;
  border-radius: 10px;
  overflow: hidden;
  height: 350px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hours-table {
  margin-top: 25px;
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 18px 0;
  font-size: 18px;
  font-weight: 300;
}

.hours-table td:first-child {
  font-weight: 400;
  color: var(--white-color);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--light-text);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
  background-color: rgba(245, 245, 245, 0.8);
  backdrop-filter: blur(5px);
  padding: 90px 0 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 70px;
}

.footer-column h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 18px;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 90px;
  width: auto;
}

.footer-column p {
  font-size: 18px;
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 300;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 18px;
}

.footer-column ul li a {
  font-size: 18px;
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-weight: 300;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.footer-column ul li i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 20px;
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright p {
  font-size: 16px;
  color: var(--light-text);
  margin: 8px 0;
  font-weight: 300;
}

.copyright a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--light-text);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--dark-bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Book Appointment Button */
.review-btn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background-color: var(--primary-color);
  color: var(--dark-bg);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  height: 70px;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.review-btn i {
  font-size: 28px;
  margin-right: 12px;
}

.review-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Desktop Navigation Enhancement */
@media (min-width: 769px) {
  .nav-links {
    gap: 20px;
  }

  .nav-links li {
    margin-left: 0;
  }

  .nav-links a {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
  }

  .nav-links a.active {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
    color: var(--white-color);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-video {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 68px;
  }

  .section-header h2 {
    font-size: 48px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .team-member img {
    width: 180px;
    height: 180px;
  }

  .team-member-name {
    font-size: 24px;
  }

  .team-button-container {
    margin-top: 45px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-collage {
    flex-direction: column;
  }

  .gallery-large {
    height: 400px;
    margin-bottom: 25px;
  }

  .gallery-small-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-small {
    height: 190px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }

  .hero-buttons .btn {
    padding: 15px 25px;
    font-size: 16px;
    margin-right: 0;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }

  .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonial-buttons {
    flex-direction: column;
    align-items: center;
  }

  .back-to-top {
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .review-btn {
    bottom: 30px;
    left: 30px;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
  }

  .review-btn i {
    font-size: 24px;
    margin-right: 10px;
  }

  .team-button-container {
    margin-top: 40px;
  }

  .team-button-container .btn-primary {
    padding: 15px 35px;
    font-size: 16px;
  }

  .stat-number {
    font-size: 48px;
  }

  .gallery-large {
    height: 350px;
  }

  .gallery-small {
    height: 165px;
  }

  .section-header.left-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-header.left-header h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .section-header.left-header p {
    margin: 35px auto 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* MOBILE FIX: Add padding-top to hero to avoid overlap with 130px logo */
  .hero {
    padding-top: 160px;
    height: auto;
    min-height: 110vh;
    display: block;
  }

  .hero-wrapper {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .hero-social-links {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .hero-buttons .btn {
    flex: none;
    padding: 18px 40px;
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  .section-header p {
    font-size: 18px;
  }

  .feature-item h3 {
    font-size: 22px;
  }

  .feature-item p {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .location-info h3,
  .hours-info h3 {
    font-size: 26px;
  }

  .hours-table td {
    font-size: 16px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-member img {
    width: 140px;
    height: 140px;
  }

  .team-member-name {
    font-size: 22px;
    padding: 15px 12px;
  }

  .review-btn {
    height: 55px;
    padding: 0 18px;
    font-size: 16px;
  }

  .review-btn i {
    font-size: 22px;
    margin-right: 8px;
  }

  .team-button-container {
    margin-top: 35px;
  }

  .team-button-container .btn-primary {
    padding: 14px 30px;
    font-size: 15px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 42px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-large {
    height: 300px;
  }

  .gallery-small {
    height: 140px;
  }
}
