/* ==========================================================================
   Joy Guru Fashion - Luxury eCommerce CSS Design System
   Brand Palette:
   - Primary (Dark): #111111
   - Secondary (Gold Accent): #C8A14D
   - Light Accent: #F8F8F8
   - Text Dark: #1A1A1A
   - Text Muted: #666666
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #111111;
  --secondary-color: #C8A14D;
  --gold-light: #E6C675;
  --gold-dark: #A48033;
  --accent-color: #F8F8F8;
  --bg-color: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-dark-bg: rgba(17, 17, 17, 0.92);
  --glass-border: rgba(200, 161, 77, 0.25);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 10px 25px rgba(200, 161, 77, 0.3);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* Preloader Screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: pulseGold 2s infinite alternate;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(200, 161, 77, 0.2);
  border-radius: 50%;
  border-top-color: var(--secondary-color);
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulseGold {
  from { text-shadow: 0 0 10px rgba(200, 161, 77, 0.3); }
  to { text-shadow: 0 0 25px rgba(200, 161, 77, 0.8); }
}

/* Layout Container */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

/* Typography Utilities */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.section-description {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold {
  background: linear-gradient(135deg, #C8A14D 0%, #E6C675 50%, #B08836 100%);
  color: var(--primary-color);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(200, 161, 77, 0.45);
  background: linear-gradient(135deg, #E6C675 0%, #C8A14D 50%, #A48033 100%);
}

.btn-outline-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--text-light);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn-dark:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Sticky Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: var(--glass-dark-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(200, 161, 77, 0.2);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-right: 40px;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 0 12px rgba(200, 161, 77, 0.4);
  transition: transform 0.3s ease;
}

.nav-brand:hover .brand-logo-img {
  transform: scale(1.08) rotate(4deg);
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.brand-title span {
  color: var(--secondary-color);
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition-fast);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-icon-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.nav-icon-btn:hover {
  color: var(--secondary-color);
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(17, 17, 17, 0.65), rgba(17, 17, 17, 0.85)), url('assets/hero_bg.png') center/cover no-repeat;
  padding-top: 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(200, 161, 77, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 750px;
  color: var(--text-light);
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(200, 161, 77, 0.2);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: var(--secondary-color);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Hero Counter Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 70px;
  padding: 25px 35px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.about-badge-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-card h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.about-badge-card p {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.3;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

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

.feature-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

.feature-point i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Product Cards (Women, Girls, Boys Collections) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.product-thumb {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #f4f4f4;
}

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

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 2;
}

.product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transition: var(--transition-fast);
}

.product-card:hover .product-actions {
  bottom: 0;
}

.action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-color);
  color: var(--primary-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.action-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.product-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 8px 0;
}

.product-rating {
  color: #FFB800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.product-price-box {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.btn-whatsapp-sm {
  background: #25D366;
  color: #FFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-whatsapp-sm:hover {
  background: #1EBE5D;
  transform: scale(1.03);
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-color);
  border: 1px solid rgba(200, 161, 77, 0.2);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary-color);
  transition: var(--transition-fast);
  z-index: -1;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(200, 161, 77, 0.1);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary-color);
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: var(--transition-fast);
}

.feature-card:hover h3 {
  color: var(--text-light);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  transition: var(--transition-fast);
}

.feature-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* Customer Reviews / Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 3rem;
  color: rgba(200, 161, 77, 0.15);
  font-family: var(--font-heading);
}

.review-stars {
  color: #FFB800;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.7;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--primary-color);
}

.reviewer-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.9), transparent 70%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: var(--transition-fast);
  color: var(--text-light);
}

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

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

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--secondary-color);
}

.gallery-tag {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-box {
  background: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  border: 1px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(200, 161, 77, 0.15);
  border: 1px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.contact-detail p, .contact-detail a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: var(--bg-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #E5E5E5;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(200, 161, 77, 0.2);
}

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

.map-placeholder {
  width: 100%;
  height: 220px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--secondary-color);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 2px solid var(--secondary-color);
}

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

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-brand h3 span {
  color: var(--secondary-color);
}

.footer-brand p {
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-widget h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--secondary-color);
}

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

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* Floating Elements (WhatsApp & Scroll-To-Top) */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-fast);
  animation: pulseGreen 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
  position: fixed;
  bottom: 105px;
  right: 35px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 999;
}

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

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-5px);
}

/* Modal & Lightbox Component */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

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

.modal-body {
  background: var(--bg-color);
  width: 90%;
  max-width: 800px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
}

.modal-img-container {
  height: 100%;
  min-height: 380px;
  background: #f4f4f4;
}

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

.modal-content-details {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Drawer Navigation */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: var(--primary-color);
  z-index: 10001;
  padding: 40px 30px;
  transition: right 0.4s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

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

.drawer-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--secondary-color);
  font-size: 1.8rem;
  cursor: pointer;
  margin-bottom: 30px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

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

/* Responsive Media Queries */
@media (max-width: 1240px) {
  .nav-menu { gap: 16px; }
  .nav-link { font-size: 0.88rem; }
  .nav-brand { margin-right: 25px; }
  .brand-title { font-size: 1.3rem; }
}

@media (max-width: 1080px) {
  .nav-menu { display: none; }
  .hamburger-btn { display: block; }
}

@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .modal-body { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.3rem; }
  .section-title { font-size: 2rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features-list { grid-template-columns: 1fr; }
}
