/**
 * Premium Home Page Redesign Stylesheet
 * Cineworld Weddings Noida
 */

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

/* Color Variables & Root Tokens */
:root {
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  --primary-color: #0f172a;      /* Sleek dark slate */
  --secondary-color: #1e293b;    /* Mid slate */
  --accent-color: #d4af37;       /* Luxury Gold */
  --accent-blue: #38bdf8;        /* Vivid light blue */
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography & Base Resets */
body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: #334155;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 16px;
  text-transform: capitalize;
}

/* Section Spacing & Containers */
.light-wrapper, .dark-wrapper {
  padding: 50px 0 !important;
}

.light-wrapper {
  background-color: var(--bg-light) !important;
}

.dark-wrapper {
  background: linear-gradient(185deg, #0f172a 0%, #1e293b 100%) !important;
  color: var(--text-light);
}

.dark-wrapper .section-title {
  color: #fff;
}

/* Modernized Specialty Cards */
.specialty-card-wrapper {
  perspective: 1000px;
}

.specialty-card {
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.specialty-card figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.specialty-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.specialty-card-body {
  padding: 24px;
}

.specialty-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.specialty-card-body h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.specialty-card-body h3 a:hover {
  color: var(--accent-blue);
}

.specialty-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Portfolio Gallery Overlay Modernization */
.cbp-item {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.cbp-caption-activeWrap {
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth) !important;
}

.cbp-l-caption-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

/* Glassmorphic Contact & Inquiry Form */
.glass-form-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.glass-form-card h4 {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.glass-form-card .form-control {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  height: auto;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.glass-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.glass-form-card .form-control:focus {
  border-color: var(--accent-blue) !important;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25) !important;
}

.glass-form-card select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
  appearance: none;
}

/* Premium Buttons & Hover Animations */
.btn-premium-blue {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: var(--transition-smooth);
}

.btn-premium-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-premium-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  border: none;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}

.btn-premium-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

/* Progress List Redesign */
.progress-list li {
  margin-bottom: 24px;
}

.progress-list p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.progress-list p em {
  float: right;
  font-style: normal;
  color: var(--accent-blue);
  font-weight: 700;
}

.progress.plain {
  background-color: #e2e8f0 !important;
  height: 8px !important;
  border-radius: 4px !important;
  overflow: hidden;
  box-shadow: none !important;
}

.progress.plain .bar {
  background: linear-gradient(90deg, #38bdf8 0%, #2563eb 100%) !important;
  height: 100% !important;
  border-radius: 4px !important;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Grid Adjustments for Tablet / Mobile */
@media (max-width: 767px) {
  .light-wrapper, .dark-wrapper {
    padding: 60px 0 !important;
  }
  .section-title {
    font-size: 28px;
  }
  .specialty-card img {
    height: 220px;
  }
  .glass-form-card {
    padding: 24px;
  }
  .post-parallax.header-wrapper,
  .header-wrapper.bg-image {
    padding-top: 130px !important;
    padding-bottom: 60px !important;
  }
}

/* Fix Page Title Bar Spacing Under Fixed Navbar */
.post-parallax.header-wrapper,
.header-wrapper.bg-image,
.page-title-bar {
  padding-top: 170px !important;
  padding-bottom: 90px !important;
  margin-top: 0 !important;
}

/* Gallery Filter Pills & Layout Fix */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 45px !important;
}

.filter-pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.filter-pill:hover,
.filter-pill.active {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
  transform: translateY(-2px);
}

/* Gallery Item Styling */
.gallery-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.gallery-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.gallery-card figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover figure img {
  transform: scale(1.06);
}

.gallery-card .gallery-card-body {
  padding: 18px 22px;
}

/* Premium Footer Styling */
.main-footer {
  background: #0f172a !important;
  color: #94a3b8;
  border-top: 3px solid #0284c7;
  padding: 70px 0 0 0;
  font-size: 14px;
}

.footer-widget h3.widget-title {
  color: #ffffff !important;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h3.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #38bdf8;
  border-radius: 2px;
}

.footer-widget p {
  color: #94a3b8;
  line-height: 1.7;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links-list li a {
  color: #94a3b8;
  text-decoration: none !important;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: #38bdf8;
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: #38bdf8;
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none !important;
}

.footer-contact-item a:hover {
  color: #38bdf8;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 132, 199, 0.4);
}

.sub-footer-bar {
  background: #090d16;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  margin-top: 60px;
  color: #64748b;
  font-size: 13px;
}

.sub-footer-bar a {
  color: #94a3b8;
  text-decoration: none !important;
}

.sub-footer-bar a:hover {
  color: #38bdf8;
}

/* Creative Parallax & Glassmorphic Styling System */
.parallax-banner {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
}

.parallax-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.88) 100%);
  z-index: 1;
}

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

.section-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-pill-gold {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.glowing-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glowing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(2, 132, 199, 0.15);
  border-color: rgba(2, 132, 199, 0.3);
}

.badge-creative {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Floating Ring Glow on Action CTAs */
.whatsapp-float {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-ring 2s infinite;
}

.call-now-float {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  animation: pulse-ring-blue 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-ring-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

/* Universal Vector WhatsApp Icon Fix for All Pages */
.icon-s-whatsapp,
.icon-whatsapp {
  display: inline-block !important;
  width: 1em !important;
  height: 1em !important;
  vertical-align: -0.15em !important;
  background-color: currentColor !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='currentColor' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3 18.6-68.1-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") no-repeat center center !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='currentColor' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3 18.6-68.1-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") no-repeat center center !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
}

.icon-s-whatsapp:before,
.icon-whatsapp:before {
  content: "" !important;
}
