/* ============================================
   GOURI RO AQUAGUARD SERVICE - MAIN STYLESHEET
   ============================================ */

:root {
  --color-primary: #0088cc;
  --color-primary-dark: #006699;
  --color-secondary: #00bcd4;
  --color-teal: #00bcd4;
  --color-teal-dark: #0097a7;
  --color-teal-light: #e0f7fa;
  --color-dark: #0f172a;
  --color-slate: #1e293b;
  --color-gray: #475569;
  --color-light-gray: #64748b;
  --color-light-bg: #f8fafc;
  --color-card-bg: #ffffff;
  --color-border: #e2e8f0;
  --color-accent-green: #25d366;
  --color-accent-green-dark: #128c7e;
  --color-accent-purple: #8b5cf6;
  --color-accent-orange: #f59e0b;
  --color-accent-red: #ef4444;
  --color-white: #ffffff;
  
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 15px 35px rgba(0, 136, 204, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(0, 188, 212, 0.4);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-family);
  color: var(--color-slate);
  background-color: var(--color-light-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.25;
}

.highlight {
  color: var(--color-primary);
}

.highlight-teal {
  color: var(--color-secondary);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0, 136, 204, 0.35);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.45);
  color: var(--color-white);
}

.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

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

.btn--whatsapp {
  background: var(--color-accent-green);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: var(--color-accent-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

.btn--call {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0, 188, 212, 0.35);
}

.btn--call:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--small {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn--xs {
  padding: 6px 14px;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
}

.btn--large {
  padding: 14px 32px;
  font-size: 1.05rem;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: var(--color-dark);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar__info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.top-bar__info i {
  color: var(--color-secondary);
}

.top-bar__sep {
  opacity: 0.4;
}

.top-bar__cta {
  background: rgba(0, 188, 212, 0.2);
  color: var(--color-secondary);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.top-bar__cta:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* NAVBAR (HEADER) */
.navbar {
  background: var(--color-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 68px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.08));
  transition: transform 0.3s ease;
}

.navbar__logo:hover .navbar__logo-img {
  transform: scale(1.04);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar__menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-slate);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

.navbar__menu a:hover,
.navbar__menu a.active {
  color: var(--color-primary);
}

.navbar__menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.navbar__hamburger span {
  width: 24px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION (IMAGE 2 DESIGN MATCH + SLIDER)
   ============================================ */
.hero-box-section {
  padding: 35px 0 35px;
  background: #f8fafc;
}

.hero-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.hero-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* SLIDESHOW FOR HERO BANNER */
.hero-slider-wrap {
  width: 100%;
  height: 290px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card__body {
  padding: 30px 24px 35px;
}

.hero-card__title {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hero-card__subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #00bcd4;
  margin-bottom: 24px;
}

.hero-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 380px;
  margin: 0 auto;
}

.hero-card__btn-appointment {
  background: #000000;
  color: #ffffff;
  padding: 13px 24px;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
}

.hero-card__btn-appointment:hover {
  background: #1e293b;
  transform: translateY(-2px);
  color: #ffffff;
}

.hero-card__btn-phone {
  background: #00bcd4;
  color: #ffffff;
  padding: 13px 24px;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(0, 188, 212, 0.35);
  transition: var(--transition);
}

.hero-card__btn-phone:hover {
  background: #0097a7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
  color: #ffffff;
}

/* ============================================
   SECTION HEADINGS & DECORATION
   ============================================ */
.section {
  padding: 65px 0;
}

.section--alt {
  background: #ffffff;
}

.section__header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 45px;
}

.section__tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(0, 136, 204, 0.1);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.section__title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 12px;
  position: relative;
}

.section__title-bar {
  width: 60px;
  height: 4px;
  background: #00bcd4;
  margin: 12px auto 16px;
  border-radius: 2px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ============================================
   SERVICES SECTION (30-MIN SERVICE CARDS)
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #00bcd4);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #bae6fd;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  background: #e0f2fe;
  color: var(--color-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-card__badge {
  background: #fef3c7;
  color: #b45309;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.service-card__cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.service-card__cta:hover {
  color: var(--color-primary-dark);
  gap: 10px;
}

/* ============================================
   PRODUCTS SHOWCASE SECTION (PATNAROWALA IMAGES)
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card__img-wrap {
  width: 100%;
  height: 220px;
  background: #ffffff;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

.product-card__img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00bcd4;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.product-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.product-card__desc {
  font-size: 0.92rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card__btn {
  width: 100%;
}

/* ============================================
   FAST RESPONSE BANNER
   ============================================ */
.fast-banner {
  background: linear-gradient(135deg, #0088cc 0%, #00bcd4 100%);
  color: var(--color-white);
  padding: 25px 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.25);
}

.fast-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1.15rem;
  font-weight: 700;
}

.fast-banner__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fast-banner__sep {
  opacity: 0.6;
}

.fast-banner__phone {
  background: var(--color-white);
  color: var(--color-dark);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.fast-banner__phone:hover {
  transform: scale(1.05);
  background: #000000;
  color: #ffffff;
}

/* ============================================
   WORK & INSTALLATION GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #00bcd4;
}

.gallery-card__img-wrap {
  width: 100%;
  height: 250px;
  background: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f5f9;
}

.gallery-card__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.gallery-card__caption {
  padding: 16px 20px;
  text-align: center;
  background: #f8fafc;
}

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

.gallery-card__caption p {
  font-size: 0.85rem;
  color: #0088cc;
  font-weight: 600;
}

/* ============================================
   BRAND PARTNERS
   ============================================ */
.brands-section {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.brands__title {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.brands__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brands__item {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: var(--transition);
}

.brands__item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.brands__item img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-card {
  background: var(--color-white);
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #00bcd4;
}

.why-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: #e0f7fa;
  color: #0088cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card__desc {
  font-size: 0.92rem;
  color: var(--color-gray);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-card__info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
}

.testimonial-card__info p {
  font-size: 0.82rem;
  color: var(--color-light-gray);
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table th {
  background: #0088cc;
  color: var(--color-white);
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
}

.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table .highlight-row {
  background: #f0f9ff;
}

.pricing-table .price {
  font-weight: 700;
  color: #0088cc;
  font-size: 1.2rem;
}

.pricing-table .badge {
  background: #25d366;
  color: white;
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================
   FOOTER & ANIMATED CREDIT
   ============================================ */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 25px;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 55px;
  width: auto;
  border-radius: 6px;
  background: white;
  padding: 4px;
}

.footer__brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.footer__brand-title span {
  color: #00bcd4;
}

.footer__about {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #94a3b8;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer__col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: #00bcd4;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #94a3b8;
  font-size: 0.92rem;
}

.footer__links a:hover {
  color: #00bcd4;
  padding-left: 5px;
}

.footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer__contact i {
  color: #00bcd4;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer__bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 0.88rem;
  color: #94a3b8;
}

/* ANIMATED MANAGED BY CREDIT */
.managed-by-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 500;
}

.managed-by-link {
  font-weight: 700;
  background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 50%, #00f2fe 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGradient 3s linear infinite;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease;
}

.managed-by-link:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.6));
}

@keyframes shimmerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================
   MODAL POPUP (AUTO POPUP - BOOK RO SERVICE)
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(135deg, #0088cc 0%, #00bcd4 100%);
  color: #ffffff;
  padding: 22px 25px;
  position: relative;
}

.modal-header h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.88rem;
  opacity: 0.9;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: #ffffff;
  color: var(--color-dark);
}

.modal-body {
  padding: 25px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}

/* ============================================
   IMAGE 3 FLOATING ACTION BUTTONS (LEFT & RIGHT)
   ============================================ */
.floating-left-actions {
  position: fixed;
  bottom: 24px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-btn-round {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.floating-btn-round--whatsapp {
  background: #25d366;
}

.floating-btn-round--whatsapp:hover {
  background: #1eb956;
  transform: scale(1.1);
  color: #ffffff;
}

.floating-btn-round--call {
  background: #0088cc;
}

.floating-btn-round--call:hover {
  background: #0077b5;
  transform: scale(1.1);
  color: #ffffff;
}

/* Pulsing effect for floating icons */
.floating-btn-round::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulseRipple 2.2s infinite ease-out;
  z-index: -1;
}

.floating-btn-round--whatsapp::after {
  background: rgba(37, 211, 102, 0.5);
}

.floating-btn-round--call::after {
  background: rgba(0, 136, 204, 0.5);
}

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

/* FLOATING RIGHT CONTACT BADGE (IMAGE 3 MATCH) */
.floating-right-chat {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  cursor: pointer;
}

.chat-bubble-label {
  background: #ffffff;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: floatBubble 3s ease-in-out infinite;
}

.chat-bubble-label::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
}

.chat-bubble-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
  transition: transform 0.3s ease;
  animation: pulseChat 2.5s infinite;
}

.floating-right-chat:hover .chat-bubble-icon {
  transform: scale(1.1) rotate(5deg);
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes pulseChat {
  0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(168, 85, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}
