:root {
  --primary: #d4af37; /* Gold */
  --primary-light: #e8c96a;
  --primary-dark: #b8951c;
  --secondary: #1a1a1a; /* Dark background */
  --secondary-light: #2a2a2a;
  --accent: #5d3a1e; /* Brown accent */
  --accent-light: #7a4f2a;
  --text: #e6e6e6; /* Light text */
  --text-light: #ffffff;
  --text-dark: #333333; /* Dark text */
  --text-gray: #aaaaaa;
}

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

body {
  background-color: var(--secondary);
  color: var(--text);
  overflow-x: hidden;
  font-family: "Lora", serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease-out;
}

.loading-screen h1 {
  color: var(--primary);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  margin-bottom: 1.5vh;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 5vw;
  line-height: 1.3;
}

.loading-bar {
  width: min(80vw, 200px);
  height: 3px;
  background-color: rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.loading-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary);
  animation: loading 2s infinite ease-in-out;
  border-radius: 3px;
}

@keyframes loading {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header.scrolled {
  padding: 15px 5%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(26, 26, 26, 0.95);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;
  margin-right: 10px;
}

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

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

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

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-links a.active::after,
.mobile-links a.active::after {
  width: 100% !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger div {
  width: 25px;
  height: 2px;
  background-color: var(--text);
  margin: 5px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
    url("/assets/img/hero-bg.jpg") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

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

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: 5px;
  color: var(--primary);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards 0.5s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards 0.8s;
  color: var(--text-light);
}

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

.hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards 1.1s;
  font-weight: 500;
  text-transform: uppercase;
}

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

.hero-btn:hover {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

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

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.4s, bounce 2s infinite 2s;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

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

/* Section Styling */
.section {
  padding: 100px 10%;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary);
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--primary);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-gray);
  font-size: 1.1rem;
}

/* Disclaimer Note */
.disclaimer-note {
  text-align: center;
  margin-top: 30px;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.8;
}

/* About Section */
.about {
  background-color: var(--secondary);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img {
  flex: 1;
  min-width: 300px;
  position: relative;
  margin-right: 50px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.about-img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  z-index: -1;
  border-radius: 5px;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.signature {
  margin-top: 30px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--primary);
  font-size: 1.2rem;
}

/* Craftsmanship Section */
.craftsmanship {
  background-color: var(--secondary-light);
  text-align: center;
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.craftsmanship-item {
  padding: 30px;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.craftsmanship-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

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

.craftsmanship-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Collections Section - Modified */
.collections {
  background-color: var(--secondary);
  text-align: center;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.collection-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.collection-label {
  padding: 15px;
  background-color: var(--secondary-light);
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.collection-item:hover .collection-label {
  background-color: var(--primary);
  color: var(--secondary);
}

/* Materials Section */
.materials {
  background-color: var(--secondary-light);
  text-align: center;
}

.materials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.material-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: var(--secondary);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.material-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
}

.material-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.material-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.material-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.03) 0%,
    rgba(212, 175, 55, 0.01) 100%
  );
  z-index: 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  padding: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.testimonial-cards::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
  min-width: 350px;
  background-color: var(--secondary-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: left;
  scroll-snap-align: start;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-rating {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  border: 2px solid var(--primary);
}

.author-info h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.author-info p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Gallery Section - Modified */
.gallery {
  background-color: var(--secondary-light);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.gallery-label {
  padding: 15px;
  background-color: var(--secondary-light);
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.gallery-item:hover .gallery-label {
  background-color: var(--primary);
  color: var(--secondary);
}

/* Contact Section */
.contact {
  background-color: var(--secondary-light);
  text-align: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 40px 30px;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-card p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--text-gray);
}

.contact-card a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--primary);
}

.store-map {
  width: 100%;
  height: 400px;
  margin-top: 60px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Footer */
footer {
  background-color: #0a0a0a;
  padding: 80px 10% 30px;
  text-align: center;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  margin-bottom: 40px;
  text-align: left;
  padding: 0 20px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--primary);
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  align-items: center;
}

.footer-links a i {
  margin-right: 10px;
  color: var(--primary);
  font-size: 0.8rem;
}

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

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #222;
  color: var(--text);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.payment-methods {
  margin-top: 20px;
}

.payment-methods img {
  height: 100%;
  margin-right: 10px;
  transition: filter 0.3s ease;
}

.copyright {
  padding-top: 30px;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #555;
}

.copyright-links {
  color: var(--primary);
  text-decoration: none;
}

.copyright-links:hover {
  color: var(--text);
  text-decoration: none;
}

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

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

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Mobile Call Button - Right side */
.mobile-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  z-index: 998;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
}

.mobile-call-btn.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-call-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px) scale(1.1);
}

/* Mobile WhatsApp Button - Left side */
.mobile-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  z-index: 998;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  font-size: 2rem;
}

.mobile-whatsapp-btn.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-whatsapp-btn:hover {
  background-color: #128c7e;
  transform: translateY(-5px) scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--secondary);
  z-index: 1001;
  padding: 100px 30px 30px;
  transition: right 0.5s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

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

.mobile-links li {
  margin-bottom: 25px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.mobile-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.mobile-links a i {
  margin-right: 15px;
  color: var(--primary);
  font-size: 1.1rem;
}

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

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1002;
}

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

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .section {
    padding: 80px 5%;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .about-img {
    margin-right: 0;
    margin-bottom: 50px;
  }

  .about-container {
    flex-direction: column;
  }

  .footer-col {
    min-width: 50%;
  }

  .testimonial-card {
    min-width: 300px;
  }
}

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

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-col {
    min-width: 100%;
    text-align: left;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links li {
    margin: 0 15px 15px;
  }

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

  .testimonial-card {
    min-width: 280px;
    padding: 30px;
  }

  /* Hide back to top button on mobile */
  .back-to-top {
    display: none;
  }

  /* Show mobile call button */
  .mobile-call-btn {
    display: flex;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .hero-btn {
    padding: 12px 30px;
  }

  .section {
    padding: 60px 5%;
  }

  .mobile-menu {
    width: 90%;
  }

  .testimonial-card {
    min-width: 260px;
    padding: 25px;
  }

  .mobile-call-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
