/* CSS Variables - Luxury Color Palette */
:root {
  --black: #000000;
  --red: #d30000;
  --yellow: #ffd500;
  --white: #ffffff;
  --dark-bg: #0a0a0a;
  --light-bg: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.1);

  /* Fonts */
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--white);
  background-color: var(--dark-bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-subtitle {
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Header - Fixed Always */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

/* Mobile Header Icons */
.mobile-header-icons {
  display: flex;
  gap: 15px;
}

.mobile-icon {
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}

.mobile-icon:hover,
.mobile-icon.active {
  color: var(--red);
  background: rgba(211, 0, 0, 0.1);
}

/* Logo */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-border {
  position: relative;
  padding: 10px 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  text-shadow: 2px 2px 0 var(--yellow), 4px 4px 0 rgba(255, 213, 0, 0.3);
  margin: 0;
  position: relative;
  z-index: 1;
}

.logo-tagline {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-top: 4px;
  font-style: italic;
}

/* Search Icon */
.search-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-icon {
  color: var(--yellow);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 213, 0, 0.1);
}

.search-icon:hover {
  color: var(--red);
  transform: rotate(90deg);
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.desktop-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  padding: 8px 0;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transition: var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--yellow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: rgba(211, 0, 0, 0.2);
  color: var(--red);
}

/* Mobile Navigation */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--dark-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  display: none;
  animation: slideDown 0.3s ease;
  z-index: 1001;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav li {
  margin-bottom: 10px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(211, 0, 0, 0.1);
  color: var(--red);
}
/* Add this to your existing CSS in the mobile menu section */

/* Mobile Navigation - Updated for better visibility */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--dark-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  display: none;
  animation: slideDown 0.3s ease;
  z-index: 1001;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav li {
  margin-bottom: 10px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-size: 1rem;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(211, 0, 0, 0.1);
  color: var(--red);
}

/* Mobile Menu Toggle Button - More visible */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  z-index: 1002;
}

.mobile-menu-toggle:hover {
  background: rgba(211, 0, 0, 0.2);
  color: var(--red);
}

/* Ensure mobile menu is visible on all mobile devices */
@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-nav {
    display: none;
  }

  .mobile-nav.active {
    display: block !important;
  }
}
/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--black), var(--light-bg));
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./images/back.jpg") center/cover no-repeat;
  opacity: 0.2;
  z-index: -1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      45deg,
      transparent 49%,
      rgba(211, 0, 0, 0.05) 50%,
      transparent 51%
    ),
    linear-gradient(
      -45deg,
      transparent 49%,
      rgba(255, 213, 0, 0.05) 50%,
      transparent 51%
    );
  background-size: 40px 40px;
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.hero-text {
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  max-width: 500px;
  margin: 0 auto;
}

.image-frame {
  position: relative;
  border: 8px solid var(--yellow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

.image-frame:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

.image-frame:hover img {
  transform: scale(1.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--yellow);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(45deg, var(--red), #ff3366);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

.btn-tiktok {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}

.btn-tiktok:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (for products/gallery) */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.page-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--black), var(--light-bg));
  z-index: -2;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(211, 0, 0, 0.1),
    rgba(255, 213, 0, 0.05)
  );
  z-index: -1;
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: var(--yellow);
  letter-spacing: 2px;
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* About Section */
.about-section {
  background: var(--light-bg);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.stat-card:hover {
  border-color: var(--red);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 1.125rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--red), var(--yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.service-btn {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.service-btn:hover {
  background: var(--yellow);
  color: var(--black);
}

/* Gallery Preview */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.gallery-preview-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-preview-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-preview-item:hover .gallery-overlay {
  transform: translateY(0);
}

.text-center {
  text-align: center;
}

/* TikTok Section */
.tiktok-section {
  background: linear-gradient(45deg, var(--black), #121212);
}

.tiktok-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.tiktok-video {
  width: 100%;
  max-width: 500px;
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-placeholder {
  position: relative;
  height: 350px;
  background: linear-gradient(45deg, #000000, #121212);
  cursor: pointer;
  overflow: hidden;
  background-image: url("./images/tiktk.jpg");
  background-size: cover;
  background-position: center;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.8),
    rgba(37, 244, 238, 0.2)
  );
  z-index: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #25f4ee, #fe2c55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  z-index: 2;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 1;
  padding: 20px;
  text-align: center;
}

.video-overlay i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #25f4ee;
  text-shadow: 0 0 20px rgba(37, 244, 238, 0.5);
}

.tiktok-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  display: flex;
  justify-content: space-around;
  z-index: 2;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.75rem;
}

.stat-item i {
  color: #25f4ee;
}

.tiktok-info {
  max-width: 600px;
}

.tiktok-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat i {
  font-size: 2rem;
  color: #25f4ee;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tiktok-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.product-card:hover {
  border-color: var(--red);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.product-content {
  padding: 30px;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--white);
}

.product-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.product-actions {
  display: flex;
  gap: 15px;
}

/* Process Section */
.process-section {
  background: var(--light-bg);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(211, 0, 0, 0.1);
  transform: translateX(10px);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  min-width: 60px;
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--white);
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 30px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--white);
}

.gallery-item-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  background: var(--light-bg);
}

.branch-selector {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.branch-tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: 50px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.branch-tab:hover,
.branch-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map {
  width: 100%;
  height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.info-card:hover {
  background: rgba(211, 0, 0, 0.1);
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2rem;
  color: var(--yellow);
}

.info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--white);
}

.info-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: linear-gradient(45deg, var(--red), #ff3366);
  color: var(--white);
}

.modal-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.close-modal {
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.branch-options {
  padding: 30px;
}

.branch-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.branch-btn:hover {
  background: rgba(211, 0, 0, 0.1);
  border-color: var(--red);
  transform: translateX(10px);
}

.branch-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--red), var(--yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.branch-info h3 {
  font-size: 1.125rem;
  margin-bottom: 5px;
  color: var(--white);
}

.branch-info p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  padding: 0 30px 30px;
}

/* Floating Action Buttons - UPDATED for visibility */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.floating-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: currentColor;
  opacity: 0.1;
}

.floating-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: var(--shadow-xl);
}

.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
}

.whatsapp-btn i {
  color: #ffffff;
}

.phone-btn {
  background: var(--red);
  color: #ffffff;
}

.phone-btn i {
  color: #ffffff;
}

/* Footer */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section {
  max-width: 300px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 10px;
}

.footer-logo p {
  color: var(--yellow);
  font-style: italic;
  font-size: 0.875rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.125rem;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.social-icon:hover {
  transform: translateY(-5px);
}

.social-icon.whatsapp:hover {
  background: #25d366;
}

.social-icon.tiktok:hover {
  background: var(--black);
}

.social-icon.instagram:hover {
  background: #e1306c;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.powered-by {
  color: var(--yellow);
  font-weight: 600;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-whatsapp {
  color: #25d366;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-whatsapp:hover {
  transform: scale(1.2);
}

/* Responsive Design */
@media (min-width: 768px) {
  .mobile-header-icons {
    display: flex;
  }

  .desktop-nav {
    display: block;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .logo {
    font-size: 2rem;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

  .hero-title {
    font-size: 4rem;
  }

  .tiktok-content {
    flex-direction: row;
  }

  .contact-content {
    flex-direction: row;
  }

  .map-container {
    flex: 2;
  }

  .contact-info {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-header-icons {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tiktok-stats {
    grid-template-columns: 1fr;
  }
}

/* Gallery Filter Section - Absolutely Fixed (Doesn't Move) */
.gallery-filter-section {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 213, 0, 0.3);
  position: fixed;
  top: 80px; /* Directly below header */
  left: 0;
  right: 0;
  z-index: 999;
  padding: 15px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  transition: none !important; /* Remove all transitions */
}

/* Remove the hidden class functionality since it shouldn't hide */
.gallery-filter-section.hidden {
  transform: translateY(0) !important; /* Always visible */
  opacity: 1 !important;
}

.gallery-filter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.filter-title {
  font-size: 1rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  position: relative;
  padding-bottom: 5px;
}

.filter-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 2px;
}

.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid transparent;
  border-radius: 50px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(211, 0, 0, 0.1),
    rgba(255, 213, 0, 0.05)
  );
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filter-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.2), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.filter-btn:hover {
  background: rgba(211, 0, 0, 0.15);
  border-color: rgba(211, 0, 0, 0.3);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(211, 0, 0, 0.2);
}

.filter-btn:hover::after {
  width: 150%;
  height: 150%;
}

.filter-btn:hover::before {
  opacity: 1;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--red), #ff3366);
  color: var(--white);
  border-color: var(--yellow);
  box-shadow: 0 5px 20px rgba(211, 0, 0, 0.4);
  transform: translateY(-2px);
  animation: pulse 2s infinite;
}

.filter-btn.active::before {
  opacity: 1;
}

.filter-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.filter-btn:hover i {
  transform: scale(1.2) rotate(5deg);
}

.filter-btn.active i {
  animation: bounce 1s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 5px 20px rgba(211, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 5px 30px rgba(211, 0, 0, 0.6);
  }
  100% {
    box-shadow: 0 5px 20px rgba(211, 0, 0, 0.4);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.1);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile specific styles for filter section */
@media (max-width: 767px) {
  .gallery-filter-section {
    position: fixed;
    top: 80px; /* Directly below fixed header */
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom: 2px solid rgba(255, 213, 0, 0.2);
  }

  .gallery-filter-wrapper {
    gap: 12px;
  }

  .filter-title {
    font-size: 0.875rem;
    text-align: center;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 10px 18px;
    font-size: 0.75rem;
    min-width: 120px;
    justify-content: center;
  }

  .filter-btn i {
    font-size: 0.9rem;
  }

  /* Increase margin-top for gallery section to account for fixed filter */
  .gallery-section {
    margin-top: 140px !important;
    padding-top: 20px !important;
  }
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .gallery-filter-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .filter-title {
    font-size: 1.125rem;
    white-space: nowrap;
  }

  .filter-buttons {
    gap: 15px;
  }

  .filter-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .gallery-section {
    margin-top: 140px !important;
    padding-top: 40px !important;
  }
}

/* VERY IMPORTANT: Add margin to gallery section to prevent overlap */
.gallery-section {
  margin-top: 140px !important; /* Header (80px) + Filter section (60px) */
  padding-top: 20px !important;
}

/* Update body padding for mobile */
@media (max-width: 767px) {
  body {
    padding-top: 80px; /* Only header height */
  }

  /* Gallery page specific body padding */
  body.gallery-page {
    padding-top: 80px;
  }
}

/* Gallery Item Category Styling */
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: var(--transition);
  opacity: 1;
  transform: scale(1);
  animation: galleryItemAppear 0.6s ease forwards;
}

@keyframes galleryItemAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 30px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--white);
}

.gallery-item-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Hide/Show logic for filtered items */
.gallery-item.hidden {
  display: none !important;
  animation: none;
}

.gallery-item.visible {
  display: block;
  animation: galleryItemAppear 0.6s ease forwards;
}

/* Category badges for gallery items */
.gallery-item::after {
  content: attr(data-category-display);
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--red), #ff3366);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
  z-index: 2;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 0, 0, 0.3);
}

/* Update existing header for better mobile experience */
@media (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  body {
    padding-top: 80px; /* Prevent content from hiding behind fixed header */
  }
}

/* Add this to ensure filter section is always on top */
.gallery-filter-section {
  z-index: 999 !important;
}

/* Remove any scroll behavior styles */
.gallery-filter-section {
  transition: none !important;
  will-change: transform !important;
}
@media (min-width: 992px) {
  .section-title {
    font-size: 3.5rem;
  }

  .hero-title {
    font-size: 5rem;
  }

  .page-hero-title {
    font-size: 5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
