/* 
   Vardhini Bridal Makeup - Premium Design System & Stylesheet
   Theme: Luxury Dark-Rose-Gold & Holographic Gold Shimmer
   Version: 3.0 (Futuristic Redesign)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-darker: #08080a;
  --bg-dark: #0f0f13;
  --bg-card: #15151c;
  --bg-card-hover: rgba(30, 30, 40, 0.85);
  
  --primary-gold: #e6c575;
  --primary-rose: #d48c8c;
  
  --gold-glow: rgba(230, 197, 117, 0.4);
  --rose-glow: rgba(212, 140, 140, 0.4);
  
  --gradient-gold: linear-gradient(135deg, #f5d796 0%, #e6c575 50%, #b8923a 100%);
  --gradient-rose-gold: linear-gradient(135deg, #f2c9c9 0%, #d48c8c 50%, #9e5b5b 100%);
  --gradient-dark: linear-gradient(180deg, #08080a 0%, #0f0f13 100%);
  --gradient-card: linear-gradient(145deg, #181822 0%, #0e0e14 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #c5c5cd;
  --text-muted: #888894;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* System */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-width: 1200px;
}

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

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

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

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(212, 140, 140, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(230, 197, 117, 0.05) 0%, transparent 40%);
  z-index: -2;
  pointer-events: none;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-gold);
  width: 0%;
  z-index: 1100;
  transition: width 0.1s ease-out;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(to right, #ffffff 20%, var(--primary-gold) 60%, var(--primary-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

h2.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gradient-rose-gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 300;
}

p strong {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

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

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 197, 117, 0.05) 0%, transparent 100%);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(230, 197, 117, 0.2);
  box-shadow: 0 30px 60px rgba(230, 197, 117, 0.1);
  background: var(--bg-card-hover);
}

/* 3D Tilt Container */
.tilt-wrapper {
  perspective: 1000px;
}

.tilt-element {
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #000000;
  box-shadow: 0 10px 20px var(--gold-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-rose-gold);
  z-index: -1;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--rose-glow);
  color: #ffffff;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: 0 5px 15px rgba(230, 197, 117, 0.05);
}

.btn-secondary:hover {
  background: var(--gradient-gold);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--gold-glow);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 8, 10, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.sticky {
  padding: 5px 0;
  background: rgba(8, 8, 10, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(230, 197, 117, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span {
  font-weight: 300;
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
  transition: var(--transition-fast);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition-fast);
}

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

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-gold);
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.05);
  filter: brightness(0.35);
  transition: transform 10s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(transparent, var(--bg-darker));
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 40px;
  color: var(--text-secondary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

/* Scroll Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
}

.scroll-down i {
  animation: bounce 2s infinite;
  color: var(--primary-gold);
}

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

/* Image 3D Frame */
.image-3d-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  transition: var(--transition-smooth);
}

.image-3d-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
  z-index: 2;
}

.image-3d-frame:hover::before {
  left: 150%;
}

.image-3d-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.image-3d-frame:hover img {
  transform: scale(1.05);
}

.image-3d-frame .glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(230, 197, 117, 0.15) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.image-3d-frame:hover .glow {
  opacity: 1;
}

/* Services Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 25px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(230, 197, 117, 0.3);
  z-index: 2;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: linear-gradient(to right, #fff, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features List */
.features-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-top: 5px;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Testimonials / Glowing Carousel */
.testimonials-section {
  background: relative;
  overflow: hidden;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.testimonial-slide {
  text-align: center;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeInUp 0.8s ease forwards;
}

.testimonial-quote {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-author {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

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

.testimonial-stars {
  color: var(--primary-gold);
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

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

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* Portfolio Page elements */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-gold);
  color: #000;
  border-color: transparent;
  box-shadow: 0 5px 15px var(--gold-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transition: var(--transition-smooth);
  display: block;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.95) 0%, rgba(8, 8, 10, 0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  background: linear-gradient(to right, #fff, var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-overlay p {
  font-size: 0.9rem;
  color: var(--primary-rose);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pricing / Packages Table */
.pricing-section {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.price-card.featured {
  border-color: rgba(230, 197, 117, 0.3);
  box-shadow: 0 20px 40px rgba(230, 197, 117, 0.05);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-rose-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.price-tag {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-tag span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 5px;
}

.price-features {
  list-style: none;
  width: 100%;
  margin-bottom: 35px;
  text-align: left;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.price-features li i {
  color: var(--primary-gold);
}

.price-features li.disabled {
  color: var(--text-muted);
}

.price-features li.disabled i {
  color: var(--text-muted);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

/* FAQ Accordion */
.faq-section {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(230, 197, 117, 0.2);
  box-shadow: 0 10px 20px rgba(230, 197, 117, 0.05);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-gold);
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Map Container */
.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  height: 450px;
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(120%);
}

/* Forms & Controls */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(230, 197, 117, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e6c575'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 24px;
}

select.form-control option {
  background: var(--bg-card);
  color: var(--text-primary);
}

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

/* Contact Page Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(230, 197, 117, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-gold);
  border: 1px solid rgba(230, 197, 117, 0.2);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

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

/* Floating WhatsApp with pulse notification */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
  text-decoration: none;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.8;
  z-index: -1;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #20ba5a;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* Floating notification badge */
.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff3333;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: scaleUpDown 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes scaleUpDown {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Entrance Animations */
.scroll-reveal {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(60px);
}

.reveal-down {
  transform: translateY(-60px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

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

/* Footer Section */
footer {
  background-color: #050507;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
  color: var(--text-secondary);
}

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

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-col p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-list li {
  display: flex;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-list i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--gradient-gold);
  color: #000;
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px var(--gold-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .image-3d-frame {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: var(--transition-smooth);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }
  
  .navbar {
    padding: 15px 0;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
  
  .map-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .glass-card {
    padding: 25px 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}
