/* ============================================
   NOIDA CALL GIRL - COMPLETELY NEW DESIGN
   Modern, Clean, SEO-Optimized, Fully Responsive
   ============================================ */

/* === CSS Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #d4145a;
  --primary-dark: #a8003f;
  --accent: #fbb03b;
  --dark: #1a1a2e;
  --dark-light: #16213e;
  --text: #2d2d2d;
  --text-light: #555555;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray: #e9ecef;
  --gray-dark: #6c757d;
  --gradient-primary: linear-gradient(135deg, #d4145a 0%, #fbb03b 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.20);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 0.8rem;
}

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

a:hover {
  color: var(--primary-dark);
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

strong, b {
  color: var(--dark);
  font-weight: 700;
}

/* === Utility Classes === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-white {
  color: var(--white) !important;
}

.bg-dark {
  background: var(--dark);
}

.bg-off-white {
  background: var(--off-white);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-xl);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212,20,90,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,20,90,0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(251,176,59,0.3);
}

.btn-accent:hover {
  background: #e5a035;
  transform: translateY(-2px);
}

/* === Preloader === */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* === Top Bar === */
.top-bar {
  background: var(--dark);
  padding: 10px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-right a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* === Header / Navigation === */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu a {
  padding: 8px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: rgba(212,20,90,0.06);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* === Hero Banner Carousel === */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 600px;
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  animation: zoomSlow 20s ease-in-out infinite alternate;
}

@keyframes zoomSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(22,33,62,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-tagline {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent);
  width: 36px;
  border-radius: 6px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
  font-size: 1.2rem;
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* === Why Choose Us Section === */
.why-choose {
  background: var(--off-white);
}

.section-badge {
  display: inline-block;
  background: rgba(212,20,90,0.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212,20,90,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

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

.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === About Section === */
.about-section {
  background: var(--white);
}

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

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

.about-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.8s ease;
}

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

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.about-content .section-badge {
  margin-bottom: 8px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-content p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 25px 0;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
}

.about-point i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* === Profile Gallery === */
.gallery-section {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.gallery-card-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

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

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26,26,46,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-card-overlay a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.gallery-card-overlay a:hover {
  background: var(--primary);
  color: var(--white);
}

.gallery-card-info {
  padding: 18px 20px;
  text-align: center;
}

.gallery-card-info h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.gallery-card-info span {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* === Service Tabs Section === */
.service-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.service-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  color: var(--text);
}

.service-tab:hover {
  border-color: var(--primary);
}

.service-tab.active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
}

.service-tab i {
  font-size: 1.4rem;
}

.service-tab-content {
  display: none;
}

.service-tab-content.active {
  display: block;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.service-content-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 350px;
}

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

.service-content-img:hover img {
  transform: scale(1.05);
}

.service-content-text p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.service-check-list {
  margin-top: 15px;
}

.service-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-weight: 500;
  color: var(--text);
}

.service-check-list li i {
  color: #28a745;
  font-size: 1rem;
}

/* === CTA Banner === */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212,20,90,0.9) 0%, rgba(251,176,59,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.cta-banner-content h3 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-banner-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
  margin: 0 auto 25px;
}

.cta-banner-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Content Section === */
.content-section {
  background: var(--off-white);
}

.content-section .container {
  max-width: 1100px;
}

.content-section h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark);
  text-align: center;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  margin-top: 30px;
  color: var(--dark);
  text-align: center;
}

.content-section h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  margin-top: 25px;
  color: var(--dark);
  text-align: center;
}

.content-section p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.content-section p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(212,20,90,0.3);
  text-underline-offset: 3px;
}

.content-section p a:hover {
  text-decoration-color: var(--primary);
}

.content-section p strong {
  color: var(--dark);
  font-weight: 700;
}

/* === Content Image Blocks (images between text) === */
.content-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.content-img-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
}

.content-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.content-img-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.content-img-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(26,26,46,0.7), transparent);
  pointer-events: none;
}

.content-img-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Full-width image between content */
.content-img-full {
  margin: 25px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.content-img-full img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.content-img-full:hover img {
  transform: scale(1.03);
}

.content-img-full::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212,20,90,0.15), rgba(251,176,59,0.1));
  pointer-events: none;
}

/* Two-column image layout */
.content-img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.content-img-duo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.content-img-duo-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.content-img-duo-item:hover img {
  transform: scale(1.05);
}

.content-img-duo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.content-img-duo-item:hover::after {
  border-color: var(--primary);
}

/* Image with text overlay */
.content-img-text {
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-img-text .img-side {
  position: relative;
  overflow: hidden;
}

.content-img-text .img-side img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.content-img-text:hover .img-side img {
  transform: scale(1.05);
}

.content-img-text .text-side {
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-img-text .text-side h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.content-img-text .text-side p,
.content-img-text .text-side span {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.7;
  display: block;
}

.content-img-text .text-side .btn {
  align-self: flex-start;
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* === Scroll Animations === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Gallery card animation enhancement */
.gallery-card {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Feature card animation */
.feature-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image hover glow */
.glow-hover {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.glow-hover:hover {
  box-shadow: 0 0 25px rgba(212,20,90,0.25), var(--shadow-lg);
  transform: translateY(-4px);
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Pulse border */
@keyframes pulseBorder {
  0%, 100% { border-color: rgba(212,20,90,0.2); }
  50% { border-color: rgba(212,20,90,0.6); }
}

.pulse-border {
  border: 2px solid rgba(212,20,90,0.2);
  animation: pulseBorder 2s ease-in-out infinite;
}

/* Shimmer animation for images */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.content-img-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

/* Image entrance animation styles */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll.visible .content-img-item img {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-on-scroll.visible .content-img-duo-item:first-child img {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-on-scroll.visible .content-img-duo-item:last-child img {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-on-scroll.visible .content-img-full img {
  animation: fadeIn 0.8s ease-out forwards;
}

/* === FAQ Section === */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(212,20,90,0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: var(--off-white);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
  gap: 15px;
}

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

.faq-question i {
  transition: var(--transition);
  font-size: 0.9rem;
  flex-shrink: 0;
}

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

.faq-item.open .faq-question {
  background: var(--primary);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 20px 24px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* === Locations Section === */
.locations-section {
  background: var(--off-white);
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.location-tags a {
  display: inline-block;
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.location-tags a:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* === Footer === */
.main-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding-top: 50px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-column a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-column .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-column .contact-item i {
  color: var(--primary);
  width: 18px;
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* === Floating CTA === */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
}

.floating-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.floating-cta-call {
  background: #e53935;
}

.floating-cta-whatsapp {
  background: #25D366;
  color: var(--white) !important;
}

.floating-cta a:hover {
  filter: brightness(1.1);
}

/* === Back to Top === */
.back-to-top {
  position: fixed;
  bottom: 65px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Screens (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .hero-slide img,
  .hero-slide {
    min-height: 700px;
  }
  .hero-slide img {
    height: 700px;
  }
}

/* Desktop (1024px - 1399px) */
@media (max-width: 1399px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

/* Tablets / Small Laptops (768px - 1023px) */
@media (max-width: 1023px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-img-wrapper img {
    height: 350px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .service-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .service-tab {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    text-align: center;
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  
  .service-content-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 5px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu a {
    padding: 12px 16px;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  
  .mobile-toggle {
    display: block;
    z-index: 1002;
  }
  
  .nav-cta .btn {
    display: none;
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }
  
  .nav-overlay.open {
    display: block;
  }
  
  .hero-slide img,
  .hero-slide {
    min-height: 450px;
  }
  
  .hero-slide img {
    height: 450px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .about-points {
    grid-template-columns: 1fr;
  }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) {
  .section-padding {
    padding: 35px 0;
  }
  
  .top-bar {
    display: none;
  }
  
  .hero-slide img,
  .hero-slide {
    min-height: 380px;
  }
  
  .hero-slide img {
    height: 380px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
  }
  
  .hero-tagline {
    font-size: 0.75rem;
    padding: 6px 16px;
  }
  
  .hero-arrows {
    display: none;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 24px 18px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  
  .feature-card h4 {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .gallery-card-img {
    height: 200px;
  }
  
  .gallery-card-info {
    padding: 12px 14px;
  }
  
  .service-tab {
    font-size: 0.82rem;
    padding: 10px 12px;
  }
  
  .service-tab i {
    font-size: 1.1rem;
  }
  
  .cta-banner img {
    height: 280px;
  }
  
  .cta-banner-content h3 {
    font-size: 1.6rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .floating-cta a {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
  
  .about-points {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .content-img-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .content-img-duo {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .content-img-duo-item img {
    height: 220px;
  }
  
  .content-img-full img {
    height: 220px;
  }
  
  .content-img-text {
    grid-template-columns: 1fr;
  }
  
  .content-img-text .img-side img {
    min-height: 220px;
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 479px) {
  .hero-slide img,
  .hero-slide {
    min-height: 320px;
  }
  
  .hero-slide img {
    height: 320px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .gallery-card-img {
    height: 170px;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-banner-content h3 {
    font-size: 1.3rem;
  }
  
  .location-tags a {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}

/* Smart TV / Very Large Screens */
@media (min-width: 1920px) {
  .container {
    max-width: 1500px;
  }
  .hero-slide img,
  .hero-slide {
    min-height: 800px;
  }
  .hero-slide img {
    height: 800px;
  }
  .hero-title {
    font-size: 3.8rem;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-slide,
  .hero-slide img {
    min-height: 280px;
    height: 280px;
  }
  .section-padding {
    padding: 25px 0;
  }
}

/* Print Styles */
@media print {
  .main-header,
  .floating-cta,
  .back-to-top,
  .hero-arrows,
  .hero-dots,
  .top-bar {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
  }
}
