/* 
   ESKAY ENTERPRISES - Premium Business Website Stylesheet
   Designed by Antigravity (Google DeepMind)
   Palette: Deep Royal Blue, Bright Red, White, Soft Cream, Silver
   Fonts: Poppins
*/

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

/* --- CUSTOM VARIABLES --- */
:root {
  --primary: #0F2C59;          /* Deep Royal Blue */
  --primary-light: #1E4D92;    /* Medium Blue */
  --primary-dark: #07162E;     /* Dark Navy */
  --primary-rgb: 15, 44, 89;
  
  --accent: #FF3F3F;           /* Bright Red */
  --accent-hover: #E52E2E;     /* Slightly darker Red */
  --accent-rgb: 255, 63, 63;
  
  --bg-cream: #FAF9F6;         /* Soft Cream */
  --bg-white: #FFFFFF;
  --silver: #E2E8F0;           /* Silver borders/dividers */
  --silver-accent: #CBD5E1;    /* Silver accents */
  
  --text-dark: #0F172A;        /* Dark Slate */
  --text-light: #F8FAFC;       /* Off-White */
  --text-muted: #475569;       /* Slate Grey */
  
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(15, 44, 89, 0.05);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(15, 44, 89, 0.06);
  --glass-shadow-hover: 0 20px 40px 0 rgba(15, 44, 89, 0.12);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --font-sans: 'Poppins', sans-serif;
  --max-width: 1280px;
  --header-height: 80px;
}

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

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

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--silver-accent);
  border-radius: 5px;
  border: 2px solid var(--bg-cream);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* --- UTILITY CLASSES --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

/* Section Header styling */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(15, 44, 89, 0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 15px;
  border: 1px solid rgba(15, 44, 89, 0.15);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  line-height: 1.2;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- PAPER TEXTURE BACKGROUND --- */
.paper-texture {
  background-image: 
    radial-gradient(rgba(15, 44, 89, 0.015) 1px, transparent 0), 
    radial-gradient(rgba(15, 44, 89, 0.015) 1px, transparent 0);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
  position: relative;
}
.paper-texture::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.02;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 10px;
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(255, 63, 63, 0.2);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 63, 63, 0.35);
}
.btn-secondary {
  background: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(15, 44, 89, 0.15);
}
.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 44, 89, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
  animation: pulse 2s infinite;
}

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

@keyframes callPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* --- GLASSMORPHISM CARD STYLING --- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: var(--transition-smooth);
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(15, 44, 89, 0.15);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(250, 249, 246, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 44, 89, 0.08);
  transition: var(--transition-smooth);
}
header.scrolled {
  height: 70px;
  background: rgba(15, 44, 89, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header.scrolled .logo h1,
header.scrolled .nav-links a,
header.scrolled .mobile-menu-btn i {
  color: var(--bg-white);
}
header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active {
  color: var(--accent);
}
header.scrolled .logo h1 span {
  color: var(--accent-light);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  margin-right: 12px;
  border: 1.5px solid var(--accent);
  background: var(--bg-white);
  box-shadow: 0 4px 15px rgba(15, 44, 89, 0.08);
  transition: var(--transition-smooth);
}
header.scrolled .logo-img {
  border-color: var(--bg-white);
}
.logo h1 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}
.logo h1 span {
  color: var(--accent);
  transition: var(--transition-smooth);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition-smooth);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(15, 44, 89, 0.05) 0%, rgba(250, 249, 246, 0.2) 90%);
  overflow: hidden;
}

/* Floating particle canvas */
#hero-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 15px rgba(15, 44, 89, 0.03);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 25px;
}
.hero-badge i {
  color: var(--accent);
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-content h2 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 600px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* Elegant floating layers stack */
.visual-stack {
  position: relative;
  width: 380px;
  height: 450px;
}
.stack-layer {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 44, 89, 0.15);
  transition: var(--transition-smooth);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--silver);
}
.layer-1 {
  width: 80%; height: 80%;
  top: 0; left: 0;
  transform: rotate(-6deg);
  z-index: 2;
  background: linear-gradient(135deg, #fff 0%, #FAF9F6 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.layer-1-design {
  border: 2px solid var(--primary-light);
  width: 100%; height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-radius: 4px;
}
.layer-1-design::before {
  content: 'Wedding Cards';
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.layer-1-design i {
  font-size: 3rem;
  color: var(--accent);
}
.layer-1-pattern {
  width: 50px; height: 2px;
  background: var(--primary-light);
}

.layer-2 {
  width: 80%; height: 80%;
  bottom: 0; right: 0;
  transform: rotate(6deg);
  z-index: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.layer-2-content {
  border: 1px solid rgba(255,255,255,0.2);
  width: 100%; height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
}
.layer-2-content span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
}
.layer-2-content h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.layer-3 {
  width: 45%; height: 35%;
  top: 30%; left: 30%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
}
.layer-3 i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 5px;
}
.layer-3 p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.visual-stack:hover .layer-1 {
  transform: rotate(-10deg) translate(-10px, -10px);
}
.visual-stack:hover .layer-2 {
  transform: rotate(10deg) translate(10px, 10px);
}
.visual-stack:hover .layer-3 {
  transform: scale(1.05) translate(-5px, -5px);
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-box {
  position: relative;
  background: var(--bg-white);
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 44, 89, 0.08);
  border: 1px solid var(--silver);
}
.about-svg-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(15, 44, 89, 0.03) 0%, rgba(255, 63, 63, 0.02) 100%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-badge {
  position: absolute;
  bottom: -25px; right: -25px;
  background: var(--primary);
  color: var(--bg-white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(15, 44, 89, 0.25);
  text-align: center;
  border: 2px solid var(--accent);
  z-index: 3;
}
.about-badge h4 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-badge p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.about-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat-item {
  background: var(--bg-white);
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid var(--silver);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}
.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(255, 63, 63, 0.08);
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* --- PRODUCTS & SERVICES SECTION --- */
.products {
  background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFFFF 50%, var(--bg-cream) 100%);
}

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

.product-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-icon {
  width: 60px;
  height: 60px;
  background: rgba(15, 44, 89, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}
.product-card:hover .product-icon {
  background: var(--accent);
  color: var(--bg-white);
  transform: rotateY(360deg);
}
.product-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}
.product-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}
.product-features-list {
  list-style: none;
  margin-bottom: 25px;
}
.product-features-list li {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-features-list li i {
  color: #22C55E;
}
.product-card .btn-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: var(--transition-fast);
}
.product-card .btn-link:hover {
  color: var(--accent);
}
.product-card .btn-link i {
  transition: var(--transition-fast);
}
.product-card .btn-link:hover i {
  transform: translateX(5px);
}

/* --- WHY CHOOSE US SECTION --- */
.why-choose-us {
  background: var(--primary);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 80% 80%, rgba(255, 63, 63, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.why-choose-us .section-title {
  color: var(--bg-white);
}
.why-choose-us .section-tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.15);
}
.why-choose-us .section-desc {
  color: rgba(255,255,255,0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-smooth);
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}
.why-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.why-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --- GALLERY SECTION --- */
.gallery-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background: var(--bg-white);
  border: 1px solid var(--silver);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(15, 44, 89, 0.15);
}

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  border: 1px solid var(--silver);
  background: var(--bg-white);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #FAF9F6 0%, #E2E8F0 100%);
  transition: var(--transition-smooth);
  padding: 20px;
  text-align: center;
}
.gallery-placeholder i {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 10px;
}
.gallery-placeholder span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}
.gallery-placeholder h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 5px;
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 44, 89, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 20px;
  text-align: center;
  color: var(--bg-white);
  z-index: 2;
}
.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 10px;
  transform: translateY(-20px);
  transition: var(--transition-smooth);
}
.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}
.gallery-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-placeholder {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(7, 22, 46, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.lightbox-content {
  background: var(--bg-white);
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--primary-light);
  text-align: center;
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-img-box {
  height: 250px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.lightbox-img-box i {
  font-size: 5rem;
  opacity: 0.15;
}
.lightbox-details {
  padding: 30px;
}
.lightbox-details h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.lightbox-details p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.close-lightbox {
  position: absolute;
  top: 15px; right: 15px;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.close-lightbox:hover {
  color: var(--accent);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
  background: radial-gradient(circle at 90% 10%, rgba(255, 63, 63, 0.03) 0%, rgba(250, 249, 246, 0.1) 80%);
  overflow: hidden;
}
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 350px;
}
.testimonial-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.testimonial-card {
  padding: 40px;
  text-align: center;
  border-radius: 20px;
}
.quote-icon {
  font-size: 3rem;
  color: rgba(255, 63, 63, 0.15);
  margin-bottom: 10px;
}
.stars {
  color: #FBBF24;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.testimonial-card p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.7;
}
.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.reviewer-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--accent);
}
.reviewer-details h5 {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  text-align: left;
}
.reviewer-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  text-align: left;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.slider-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--silver-accent);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.slider-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 10px;
}

/* --- FAQ SECTION --- */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--silver);
  background: var(--bg-white);
  transition: var(--transition-smooth);
}
.faq-item:hover {
  border-color: rgba(15, 44, 89, 0.2);
}
.faq-item.active {
  box-shadow: 0 10px 30px rgba(15, 44, 89, 0.05);
  border-color: var(--primary-light);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
  user-select: none;
}
.faq-toggle-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(15, 44, 89, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
  transition: var(--transition-smooth);
}
.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: var(--bg-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 30px 24px 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-card-box {
  padding: 40px;
}
.contact-card-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-detail-item {
  display: flex;
  gap: 20px;
}
.contact-detail-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: rgba(15, 44, 89, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}
.contact-detail-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact-detail-text strong {
  color: var(--text-dark);
}

.gstin-box {
  background: rgba(15, 44, 89, 0.03);
  border: 1px dashed var(--primary-light);
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.gstin-code {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.gstin-copy-btn {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: var(--transition-fast);
}
.gstin-copy-btn:hover {
  color: var(--accent-hover);
  transform: scale(1.05);
}

/* Map placeholder */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--silver);
  height: 250px;
  position: relative;
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
}

/* Contact Form styling */
.contact-form-panel {
  padding: 40px;
}
.contact-form-panel h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}
.form-input {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--silver);
  background: var(--bg-cream);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  outline: none;
}
.form-input:focus {
  border-color: var(--primary-light);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(15, 44, 89, 0.08);
}
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Validation styles */
.form-input.error {
  border-color: var(--accent);
  background: rgba(255, 63, 63, 0.02);
}
.form-error-msg {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

/* Toast Message */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--primary);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
  border-left: 5px solid var(--accent);
}
.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* --- FOOTER --- */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--accent);
  position: relative;
  z-index: 5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 10px;
}

.footer-about .logo-footer {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-about .logo-img-footer {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
  margin-right: 12px;
  border: 1.5px solid var(--accent);
  background: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.footer-about .logo-footer h1 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bg-white);
}
.footer-about .logo-footer h1 span {
  color: var(--accent);
}
.footer-about p {
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-links-list {
  list-style: none;
}
.footer-links-list li {
  margin-bottom: 12px;
}
.footer-links-list a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links-list a:hover {
  color: var(--accent-light);
  transform: translateX(5px);
}

.hours-list {
  list-style: none;
}
.hours-list li {
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.hours-list span {
  font-weight: 600;
  color: var(--bg-white);
}

.footer-contact-list {
  list-style: none;
}
.footer-contact-list li {
  margin-bottom: 15px;
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
}
.footer-contact-list i {
  color: var(--accent);
  margin-top: 3px;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer-contact-list a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  font-size: 0.85rem;
}
.footer-seo {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
}

/* --- ANIMATION CLASS FOR SCROLL TRIGGER --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 3rem;
  }
  .about-grid, .contact-grid {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section-padding {
    padding: 70px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-cream);
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition-smooth);
    z-index: 999;
    border-top: 1px solid rgba(15, 44, 89, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .nav-links.active {
    left: 0;
  }
  header.scrolled .nav-links {
    background: var(--primary-dark);
    top: 70px;
    height: calc(100vh - 70px);
  }
  header.scrolled .nav-links a {
    color: var(--bg-white);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-badge, .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .visual-stack {
    width: 290px;
    height: 340px;
    margin: 0 auto;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-badge {
    right: 10px;
  }
  
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about-badge {
    position: relative;
    bottom: auto; right: auto;
    margin-top: 20px;
    display: inline-block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .gallery-filter-buttons {
    gap: 10px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
