/* Gautam Chemist - Complete Stylesheet */
/* Theme: Red and White */

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, button, [role="button"], .clickable {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(220, 38, 38, 0.1);
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== SECTION ===== */
.section { padding: 80px 0; }
@media (max-width: 768px) { .section { padding: 50px 0; } }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 {
  font-size: 2.5rem; font-weight: 700; color: #333333;
  margin-bottom: 15px; position: relative; display: inline-block;
}
.section-title h2::after {
  content: ''; position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%); width: 80px; height: 4px;
  background: linear-gradient(90deg, #DC2626, #EF4444); border-radius: 2px;
}
@media (max-width: 768px) { .section-title h2 { font-size: 2rem; } }
.section-title p { color: #666666; font-size: 1.1rem; max-width: 600px; margin: 20px auto 0; }

.section-subtitle {
  display: inline-block; color: #DC2626; font-weight: 600;
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 32px; font-size: 1rem; font-weight: 600;
  border-radius: 8px; transition: all 0.3s ease; text-transform: uppercase;
  letter-spacing: 0.5px; border: none; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #DC2626, #B91C1C); color: #FFFFFF;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #B91C1C, #DC2626);
  transform: translateY(-2px); box-shadow: 0 5px 25px rgba(220, 38, 38, 0.2);
}
.btn-secondary {
  background: #FFFFFF; color: #DC2626; border: 2px solid #DC2626;
}
.btn-secondary:hover { background: #DC2626; color: #FFFFFF; }
.btn-white { background: #FFFFFF; color: #DC2626; }
.btn-white:hover { background: rgba(255, 255, 255, 0.9); transform: translateY(-2px); }
.btn-outline {
  background: transparent; border: 2px solid #FFFFFF; color: #FFFFFF;
  padding: 14px 32px; border-radius: 8px; font-weight: 600; transition: all 0.3s ease;
}
.btn-outline:hover { background: #FFFFFF; color: #DC2626; }
.btn-outline-primary {
  display: inline-block; padding: 10px 20px; border: 2px solid #DC2626;
  color: #DC2626; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease;
}
.btn-outline-primary:hover { background: #DC2626; color: #FFFFFF; }
.btn-whatsapp {
  background: #25D366; color: #FFFFFF; padding: 14px 32px;
  border-radius: 8px; font-weight: 600; display: inline-flex;
  align-items: center; gap: 10px; transition: all 0.3s ease;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #333333; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 2px solid #E0E0E0;
  border-radius: 8px; font-size: 1rem; transition: all 0.3s ease; background: #FFFFFF;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: #DC2626; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #999999; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 576px) { .form-row { grid-template-columns: 1fr; } }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-white { color: #FFFFFF; }
.text-primary { color: #DC2626; }
.bg-primary { background-color: #DC2626; }
.bg-light { background-color: #F8F9FA; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-outline-white {
  background: transparent; border: 2px solid #FFFFFF; color: #FFFFFF;
  padding: 14px 32px; border-radius: 8px; font-weight: 600; transition: all 0.3s ease;
}
.btn-outline-white:hover { background: #FFFFFF; color: #DC2626; }

/* ===== ALERTS ===== */
.alert { padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; display: flex; align-items: center; gap: 12px; }
.alert-success { background: rgba(22, 163, 74, 0.1); color: #16A34A; border: 1px solid #16A34A; }
.alert-error { background: rgba(220, 38, 38, 0.1); color: #DC2626; border: 1px solid #DC2626; }

/* ===== SPINNER ===== */
.spinner { width: 40px; height: 40px; border: 4px solid #F0F0F0; border-top-color: #DC2626; border-radius: 50%; animation: spin 1s linear infinite; }
.spinner-small {
  width: 18px; height: 18px; border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF; border-radius: 50%; animation: spin 1s linear infinite; display: inline-block;
}

/* ===== DISCOUNT BADGE ===== */
.discount-badge {
  display: inline-block; padding: 8px 16px;
  background: linear-gradient(135deg, #16A34A, #22C55E);
  color: #FFFFFF; font-weight: 700; font-size: 0.9rem;
  border-radius: 50px; animation: pulse 2s infinite;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #F8F9FA; }
::-webkit-scrollbar-thumb { background: #DC2626; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #B91C1C; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleUp { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* Scroll animation classes */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.animate-on-scroll.slide-left { transform: translateX(-50px); }
.animate-on-scroll.slide-left.animated { transform: translateX(0); }
.animate-on-scroll.slide-right { transform: translateX(50px); }
.animate-on-scroll.slide-right.animated { transform: translateX(0); }
.animate-on-scroll.scale-up { transform: scale(0.8); }
.animate-on-scroll.scale-up.animated { transform: scale(1); }

/* Stagger delay for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ========================================
   TOP BAR
   ======================================== */
.top-bar { background: #DC2626; padding: 8px 0; }
.top-bar .top-bar-content { display: flex; justify-content: space-between; align-items: center; }
@media (max-width: 768px) { .top-bar .top-bar-content { flex-direction: column; gap: 8px; } }
.top-bar .contact-info { display: flex; gap: 25px; }
.top-bar .contact-info a { color: #FFFFFF; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.top-bar .contact-info a:hover { opacity: 0.9; }
.top-bar .contact-info a i { font-size: 0.85rem; }
@media (max-width: 576px) { .top-bar .contact-info { flex-direction: column; gap: 5px; align-items: center; } }
.top-bar .social-links { display: flex; gap: 15px; }
.top-bar .social-links a {
  color: #FFFFFF; width: 30px; height: 30px; display: flex; align-items: center;
  justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, 0.1); transition: all 0.3s ease;
}
.top-bar .social-links a:hover { background: #FFFFFF; color: #DC2626; transform: translateY(-2px); }

/* ========================================
   HEADER
   ======================================== */
.header {
  background: #FFFFFF; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 2px solid #DC2626; }
.logo .logo-text h1 { font-size: 1.4rem; font-weight: 700; color: #DC2626; line-height: 1.2; }
.logo .logo-text span { font-size: 0.75rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 576px) {
  .logo img { width: 45px; height: 45px; }
  .logo .logo-text h1 { font-size: 1.1rem; }
  .logo .logo-text span { display: none; }
}

/* Nav Links (Desktop) */
.nav-links.desktop-only { display: flex; gap: 30px; }
.nav-links.desktop-only li a {
  font-size: 1rem; font-weight: 500; color: #333333; position: relative; padding: 5px 0;
}
.nav-links.desktop-only li a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: #DC2626; transition: width 0.3s ease;
}
.nav-links.desktop-only li a:hover,
.nav-links.desktop-only li a.active { color: #DC2626; }
.nav-links.desktop-only li a:hover::after,
.nav-links.desktop-only li a.active::after { width: 100%; }
@media (max-width: 992px) { .nav-links.desktop-only { display: none; } }

/* Header CTA */
.header-cta .btn { padding: 12px 24px; font-size: 0.9rem; }
@media (max-width: 992px) { .header-cta { display: none; } }

/* Mobile Toggle */
.mobile-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: #DC2626; color: #FFFFFF; border-radius: 8px; font-size: 1.2rem;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation; user-select: none;
}
.mobile-toggle:active { background: #B91C1C; transform: scale(0.95); }
@media (max-width: 992px) { .mobile-toggle { display: flex; } }

/* Offcanvas Backdrop */
.offcanvas-backdrop {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); z-index: 1050;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.offcanvas-backdrop.show { opacity: 1; visibility: visible; }

/* Offcanvas Menu */
.offcanvas-menu {
  position: fixed; top: 0; right: -300px; width: 280px; height: 100%;
  background: #FFFFFF; z-index: 1060; box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease; display: flex; flex-direction: column;
}
.offcanvas-menu.show { right: 0; }
.offcanvas-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px; border-bottom: 1px solid #eee; background: #DC2626; color: #FFFFFF;
}
.offcanvas-logo { display: flex; align-items: center; gap: 10px; }
.offcanvas-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid #FFFFFF; }
.offcanvas-logo span { font-weight: 700; font-size: 1.1rem; }
.offcanvas-close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.2); border: none; border-radius: 50%;
  font-size: 1.1rem; color: #FFFFFF; -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.offcanvas-close:active { background: rgba(255, 255, 255, 0.3); }
.offcanvas-body { flex: 1; padding: 20px; overflow-y: auto; }
.offcanvas-nav { list-style: none; padding: 0; margin: 0; }
.offcanvas-nav li { border-bottom: 1px solid #eee; }
.offcanvas-nav li a {
  display: flex; align-items: center; gap: 12px; padding: 16px 10px;
  font-size: 1.05rem; font-weight: 500; color: #333333; transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.offcanvas-nav li a i { width: 24px; color: #DC2626; }
.offcanvas-nav li a:active { background: rgba(220, 38, 38, 0.1); }
.offcanvas-contact { margin-top: 30px; padding-top: 20px; border-top: 2px solid #eee; }
.offcanvas-contact h4 { font-size: 0.9rem; color: #666666; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.offcanvas-contact .contact-link {
  display: flex; align-items: center; gap: 10px; padding: 12px 15px;
  margin-bottom: 10px; background: #F8F9FA; border-radius: 8px; font-weight: 500; color: #333333;
  -webkit-tap-highlight-color: transparent;
}
.offcanvas-contact .contact-link i { font-size: 1.1rem; color: #DC2626; }
.offcanvas-contact .contact-link.whatsapp { background: #25D366; color: #FFFFFF; }
.offcanvas-contact .contact-link.whatsapp i { color: #FFFFFF; }
.offcanvas-contact .contact-link:active { transform: scale(0.98); }

/* ========================================
   DISCOUNT BANNER
   ======================================== */
.discount-banner { background: linear-gradient(135deg, #16A34A, #22C55E); padding: 10px 0; text-align: center; }
.discount-banner .banner-content {
  display: flex; align-items: center; justify-content: center; gap: 12px; color: #FFFFFF;
}
.discount-banner .banner-icon { font-size: 1.2rem; animation: bounce 2s infinite; }
.discount-banner .banner-content p { font-size: 0.95rem; margin: 0; }
.discount-banner .highlight { font-weight: 700; font-size: 1.1rem; text-decoration: underline; }
@media (max-width: 576px) {
  .discount-banner .banner-content { flex-direction: column; gap: 5px; }
  .discount-banner .banner-content p { font-size: 0.85rem; }
}

/* ========================================
   HERO SECTION (Home)
   ======================================== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero .hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(155, 27, 48, 0.95) 0%, rgba(196, 30, 58, 0.85) 100%); z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; color: #FFFFFF; padding: 40px 0; }
.hero-badge {
  display: inline-block; padding: 8px 20px; background: rgba(255, 255, 255, 0.2);
  border-radius: 50px; font-size: 0.9rem; font-weight: 500; margin-bottom: 20px; backdrop-filter: blur(10px);
}
.hero-content h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-content h1 span { color: #FFD700; }
@media (max-width: 768px) { .hero-content h1 { font-size: 2.5rem; } }
.hero-content > p { font-size: 1.2rem; line-height: 1.8; opacity: 0.95; margin-bottom: 30px; }
@media (max-width: 768px) { .hero-content > p { font-size: 1rem; } }
.hero-highlights { display: flex; gap: 30px; margin-bottom: 35px; }
.highlight-item { display: flex; flex-direction: column; gap: 5px; }
.discount-tag, .experience-tag { font-size: 2.5rem; font-weight: 800; color: #FFD700; }
.highlight-item span:last-child { font-size: 0.95rem; opacity: 0.9; }
@media (max-width: 576px) { .hero-highlights { flex-direction: column; gap: 15px; } }
.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-cta .btn-secondary { background: transparent; border: 2px solid #FFFFFF; color: #FFFFFF; }
.hero-cta .btn-secondary:hover { background: #FFFFFF; color: #DC2626; }

/* ========================================
   FEATURES SECTION (Home)
   ======================================== */
.features-section { margin-top: 50px; position: relative; z-index: 10; padding-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #FFFFFF; padding: 30px 25px; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); text-align: center; transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(220, 38, 38, 0.15); }
.feature-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: linear-gradient(135deg, #DC2626, #EF4444); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon i { font-size: 1.8rem; color: #FFFFFF; }
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: #333333; }
.feature-card p { font-size: 0.9rem; color: #666666; margin: 0; }

/* ========================================
   MEDICINES SECTION (Home)
   ======================================== */
.medicines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 992px) { .medicines-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .medicines-grid { grid-template-columns: 1fr; } }
.medicine-card {
  background: #FFFFFF; padding: 35px 25px; border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); text-align: center;
  transition: all 0.3s ease; border: 2px solid transparent;
}
.medicine-card:hover { border-color: #DC2626; transform: translateY(-8px); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15); }
.medicine-card:hover .medicine-icon { background: #DC2626; }
.medicine-card:hover .medicine-icon i { color: #FFFFFF; }
.medicine-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: rgba(220, 38, 38, 0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.medicine-icon i { font-size: 2rem; color: #DC2626; transition: all 0.3s ease; }
.medicine-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; color: #333333; }
.medicine-card p { font-size: 0.95rem; color: #666666; line-height: 1.6; margin-bottom: 20px; }

/* ========================================
   MEDICINES SECTION (Padding)
   ======================================== */
.medicines-section { padding: 80px 0; background: #F8F9FA; }
@media (max-width: 768px) { .medicines-section { padding: 50px 0; } }

/* ========================================
   ABOUT PREVIEW (Home)
   ======================================== */
.about-preview-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 992px) { .about-preview-content { grid-template-columns: 1fr; gap: 40px; } }
.about-preview .about-image, .about-image { position: relative; }
.about-preview .about-image img, .about-image img { width: 100%; border-radius: 12px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }
.experience-badge {
  position: absolute; bottom: -20px; right: -20px; background: #DC2626; color: #FFFFFF;
  padding: 25px; border-radius: 12px; text-align: center; box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}
@media (max-width: 576px) { .experience-badge { bottom: -15px; right: 15px; padding: 15px; } }
.experience-badge .number { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
@media (max-width: 576px) { .experience-badge .number { font-size: 2rem; } }
.experience-badge .text { font-size: 0.9rem; font-weight: 500; }
.about-text h2 { font-size: 2.2rem; font-weight: 700; color: #333333; margin-bottom: 20px; line-height: 1.3; }
@media (max-width: 768px) { .about-text h2 { font-size: 1.8rem; } }
.about-text p { color: #666666; line-height: 1.8; margin-bottom: 25px; }
.about-features { margin-bottom: 30px; }
.about-feature { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.about-feature i { color: #16A34A; font-size: 1.1rem; }
.about-feature span { font-weight: 500; color: #333333; }

/* ========================================
   WHY CHOOSE (Home)
   ======================================== */
.why-choose { background: #F8F9FA; }
.why-choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 992px) { .why-choose-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .why-choose-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 35px 25px; border-radius: 12px; background: #FFFFFF;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.12); }
.why-card:hover .why-number { background: #DC2626; color: #FFFFFF; }
.why-number {
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  background: rgba(220, 38, 38, 0.1); color: #DC2626; font-size: 1.2rem;
  font-weight: 700; border-radius: 10px; margin-bottom: 20px; transition: all 0.3s ease;
}
.why-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; color: #333333; }
.why-card p { font-size: 0.95rem; color: #666666; line-height: 1.6; margin: 0; }

/* ========================================
   TESTIMONIALS (Home)
   ======================================== */
.testimonials-section { background: linear-gradient(135deg, #DC2626, #B91C1C); padding: 80px 0; }
@media (max-width: 768px) { .testimonials-section { padding: 50px 0; } }
.testimonials-section .section-title h2,
.testimonials-section .section-title p { color: #FFFFFF; }
.testimonials-section .section-title h2::after { background: #FFFFFF; }

/* Google Overall Badge */
.google-overall-badge {
  align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px;
  background: rgba(255, 255, 255, 0.15); border-radius: 12px; padding: 16px 24px;
  margin-bottom: 35px; backdrop-filter: blur(4px);
}
@media (max-width: 576px) { .google-overall-badge { justify-content: center; text-align: center; } }
.google-badge-left { display: flex; align-items: center; gap: 14px; }
.google-g-icon { font-size: 2.2rem; color: #FFFFFF; }
.google-badge-rating { display: flex; align-items: center; gap: 10px; }
.google-rating-num { font-size: 2rem; font-weight: 700; color: #FFFFFF; line-height: 1; }
.google-badge-stars i { color: rgba(255,255,255,0.4); font-size: 1rem; }
.google-badge-stars i.filled { color: #FFD700; }
.google-badge-count { color: rgba(255, 255, 255, 0.75); font-size: 0.85rem; margin: 5px 0 0; }
.google-badge-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: #FFFFFF; color: #DC2626; padding: 10px 20px;
  border-radius: 8px; font-weight: 600; font-size: 0.9rem; white-space: nowrap;
  transition: all 0.3s ease;
}
.google-badge-link:hover { background: rgba(255, 255, 255, 0.9); transform: translateY(-2px); }
.google-badge-link i { font-size: 0.75rem; }

/* Reviews Carousel */
.reviews-carousel-wrapper { display: flex; align-items: center; }
.carousel-viewport { overflow: hidden; flex: 1; min-width: 0; }
.testimonials-grid { display: flex; gap: 24px; width: 100%; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.carousel-btn {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%; color: #fff; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.carousel-btn:hover:not(:disabled) { background: #fff; color: #DC2626; transform: scale(1.08); }
.carousel-btn:disabled { opacity: 0.25; cursor: default; }
.carousel-prev { margin-right: 18px; }
.carousel-next { margin-left: 18px; }
@media (max-width: 768px) { .carousel-prev { margin-right: 8px; } .carousel-next { margin-left: 8px; } .carousel-btn { width: 38px; height: 38px; font-size: 0.85rem; } }

/* Per-card Google tag */
.google-review-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(66, 133, 244, 0.1); color: #4285F4;
  font-size: 0.78rem; font-weight: 600; padding: 4px 10px;
  border-radius: 20px; margin-bottom: 12px;
}
.google-review-tag i { font-size: 0.85rem; }

/* Testimonial Card */
.testimonial-card { background: #FFFFFF; padding: 30px; border-radius: 12px; text-align: center; flex: 0 0 calc((100% - 48px) / 3); }
@media (max-width: 992px) { .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 600px) { .testimonial-card { flex: 0 0 100%; } }
.quote-icon {
  width: 50px; height: 50px; margin: 0 auto 16px; background: rgba(220, 38, 38, 0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.quote-icon i { font-size: 1.2rem; color: #DC2626; }
.testimonial-text { font-size: 0.97rem; color: #555555; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-rating { margin-bottom: 15px; }
.testimonial-rating i { color: #DDD; margin: 0 2px; }
.testimonial-rating i.filled { color: #FFD700; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.author-avatar {
  width: 45px; height: 45px; background: #DC2626; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-avatar i { color: #FFFFFF; }
.letter-avatar {
  font-size: 1.1rem; font-weight: 700; color: #FFFFFF;
  letter-spacing: 0; user-select: none;
}
.reviewer-photo { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid #eee; flex-shrink: 0; }
.reviewer-name { font-weight: 600; color: #333333; font-size: 0.95rem; display: block; }
a.reviewer-name:hover { color: #DC2626; }
.review-time { display: block; font-size: 0.78rem; color: #999999; margin-top: 3px; }
.testimonial-author span { font-weight: 600; color: #333333; }

/* Reviews Loading State */
.reviews-loading { grid-column: 1 / -1; text-align: center; padding: 50px 20px; color: rgba(255,255,255,0.85); }
.spinner-ring {
  width: 42px; height: 42px; margin: 0 auto 16px;
  border: 3px solid rgba(255, 255, 255, 0.3); border-top-color: #FFFFFF;
  border-radius: 50%; animation: spin-ring 0.8s linear infinite;
}
@keyframes spin-ring { to { transform: rotate(360deg); } }
.reviews-loading p { font-size: 0.95rem; }

/* ========================================
   ENQUIRY SECTION (Home)
   ======================================== */
.enquiry-section { padding: 80px 0; }
@media (max-width: 768px) { .enquiry-section { padding: 50px 0; } }
.enquiry-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 992px) { .enquiry-wrapper { grid-template-columns: 1fr; gap: 40px; } }
.enquiry-info h2 { font-size: 2.2rem; font-weight: 700; color: #333333; margin-bottom: 20px; }
@media (max-width: 768px) { .enquiry-info h2 { font-size: 1.8rem; } }
.enquiry-info > p { color: #666666; line-height: 1.8; margin-bottom: 35px; }
.contact-details .contact-item { display: flex; gap: 20px; margin-bottom: 25px; }
.contact-details .contact-item > i {
  width: 50px; height: 50px; background: rgba(220, 38, 38, 0.1); color: #DC2626;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-details .contact-item strong { display: block; font-size: 1rem; color: #333333; margin-bottom: 5px; }
.contact-details .contact-item p { color: #666666; font-size: 0.95rem; margin: 0; line-height: 1.5; }
.contact-details .contact-item p a { color: #666666; }
.contact-details .contact-item p a:hover { color: #DC2626; }
.enquiry-form-wrapper {
  background: #FFFFFF; padding: 40px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.enquiry-form-wrapper h3 { font-size: 1.5rem; font-weight: 600; color: #333333; margin-bottom: 25px; }

/* ========================================
   CTA SECTION (Home)
   ======================================== */
.cta-section { background: linear-gradient(135deg, #DC2626, #B91C1C); padding: 60px 0; }
.cta-content { text-align: center; color: #FFFFFF; }
.cta-content h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
@media (max-width: 768px) { .cta-content h2 { font-size: 1.8rem; } }
.cta-content p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   PAGE BANNER (Shared by About, Services, Contact, Gallery, Blogs)
   ======================================== */
.page-banner {
  background: linear-gradient(135deg, #DC2626, #B91C1C); padding: 100px 0 60px;
  text-align: center; position: relative;
}
@media (max-width: 768px) { .page-banner { padding: 60px 0 40px; } }
@media (max-width: 480px) { .page-banner { padding: 50px 0 35px; } }
.page-banner .banner-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.1); pointer-events: none; z-index: 1;
}
.page-banner .banner-content { position: relative; z-index: 2; }
.page-banner h1 { font-size: 2.8rem; font-weight: 700; color: #FFFFFF; margin-bottom: 15px; }
@media (max-width: 768px) { .page-banner h1 { font-size: 2rem; } }
@media (max-width: 480px) { .page-banner h1 { font-size: 1.7rem; } }
.page-banner p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; max-width: 600px; margin: 0 auto 20px; }
@media (max-width: 768px) { .page-banner p { font-size: 0.95rem; margin-bottom: 15px; } }
.breadcrumb {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px;
  color: rgba(255, 255, 255, 0.8); position: relative; z-index: 100;
}
.breadcrumb a {
  color: #FFFFFF; padding: 8px 14px; background: rgba(255, 255, 255, 0.15);
  border-radius: 6px; font-weight: 500; pointer-events: auto;
}
@media (max-width: 480px) { .breadcrumb a { padding: 7px 12px; font-size: 0.9rem; } }
.breadcrumb a:hover, .breadcrumb a:active { background: rgba(255, 255, 255, 0.25); }
.breadcrumb span { padding: 8px 4px; }
@media (max-width: 480px) { .breadcrumb span { padding: 7px 4px; font-size: 0.9rem; } }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-intro-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 992px) { .about-intro-content { grid-template-columns: 1fr; gap: 40px; } }
.about-intro .about-image { position: relative; }
.about-intro .about-image img { width: 100%; border-radius: 12px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }
.about-intro .experience-badge { bottom: -25px; right: -25px; padding: 30px; }
@media (max-width: 576px) { .about-intro .experience-badge { bottom: -15px; right: 15px; padding: 20px; } }
.about-intro .experience-badge .number { font-size: 3rem; }
@media (max-width: 576px) { .about-intro .experience-badge .number { font-size: 2.5rem; } }
.about-stats { display: flex; gap: 40px; margin-top: 30px; padding-top: 30px; border-top: 1px solid #eee; }
@media (max-width: 576px) { .about-stats { flex-wrap: wrap; gap: 25px; } }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: #DC2626; line-height: 1; }
.stat-label { font-size: 0.9rem; color: #666666; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 992px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #FFFFFF; padding: 35px 25px; border-radius: 12px; text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.12); }
.value-card:hover .value-icon { background: #DC2626; }
.value-card:hover .value-icon i { color: #FFFFFF; }
.value-icon {
  width: 80px; height: 80px; margin: 0 auto 20px; background: rgba(220, 38, 38, 0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.value-icon i { font-size: 2rem; color: #DC2626; transition: all 0.3s ease; }
.value-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; color: #333333; }
.value-card p { font-size: 0.95rem; color: #666666; margin: 0; line-height: 1.6; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (max-width: 992px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: #FFFFFF; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); }
.team-image { position: relative; height: 350px; overflow: hidden; display: flex; align-items: flex-start; justify-content: center; }
.team-image-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover; background-position: center; filter: blur(15px); opacity: 0.6; transform: scale(1.1);
}
.team-image img {
  position: relative; z-index: 1; height: 100%; width: auto; max-width: 100%;
  object-fit: contain; object-position: top; transition: transform 0.5s ease;
}
.team-image:hover img { transform: scale(1.05); }
.team-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)); z-index: 2;
}
.age-badge {
  display: inline-block; padding: 8px 16px; background: #FFFFFF;
  color: #DC2626; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
}
.team-info { padding: 30px; }
.team-info h3 { font-size: 1.5rem; font-weight: 700; color: #333333; margin-bottom: 5px; }
.team-info .role { display: block; color: #DC2626; font-weight: 600; margin-bottom: 15px; }
.team-info .experience-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: linear-gradient(135deg, #16A34A, #22C55E); color: #FFFFFF;
  border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}
.team-info p { color: #666666; line-height: 1.7; margin-bottom: 20px; }
.highlights { background: #F8F9FA; padding: 20px; border-radius: 10px; }
.highlights h4 { font-size: 1rem; font-weight: 600; color: #333333; margin-bottom: 15px; }
.highlights ul li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: #666666; }
.highlights ul li i { color: #16A34A; }
.highlights ul li:last-child { margin-bottom: 0; }

/* Achievements */
.achievements-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 992px) { .achievements-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .achievements-grid { grid-template-columns: 1fr; } }
.achievement-card {
  background: #FFFFFF; padding: 40px 25px; border-radius: 12px; text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); transition: all 0.3s ease;
}
.achievement-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15); }
.achievement-card:hover .achievement-icon { background: #DC2626; }
.achievement-card:hover .achievement-icon i { color: #FFFFFF; }
.achievement-icon {
  width: 70px; height: 70px; margin: 0 auto 20px; background: rgba(220, 38, 38, 0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.achievement-icon i { font-size: 1.8rem; color: #DC2626; transition: all 0.3s ease; }
.achievement-number { font-size: 2.8rem; font-weight: 800; color: #DC2626; line-height: 1; margin-bottom: 10px; }
.achievement-label { font-size: 1rem; color: #666666; font-weight: 500; }

/* Certifications */
.certifications-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 992px) { .certifications-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .certifications-grid { grid-template-columns: 1fr; } }
.certification-card {
  background: #FFFFFF; padding: 30px 25px; border-radius: 12px; text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); border: 2px solid transparent; transition: all 0.3s ease;
}
.certification-card:hover { border-color: #DC2626; transform: translateY(-5px); }
.cert-icon {
  width: 60px; height: 60px; margin: 0 auto 15px;
  background: linear-gradient(135deg, #DC2626, #B91C1C); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.cert-icon i { font-size: 1.5rem; color: #FFFFFF; }
.certification-card h3 { font-size: 1.1rem; font-weight: 600; color: #333333; margin-bottom: 8px; }
.certification-card p { font-size: 0.9rem; color: #666666; margin: 0; }

/* Why About */
.why-about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 992px) { .why-about-content { grid-template-columns: 1fr; gap: 40px; } }
.why-about .why-text h2 { font-size: 2rem; font-weight: 700; color: #333333; margin-bottom: 30px; }
.why-list .why-item { display: flex; gap: 20px; margin-bottom: 25px; }
.why-list .why-icon {
  width: 60px; height: 60px; background: rgba(220, 38, 38, 0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-list .why-icon i { font-size: 1.5rem; color: #DC2626; }
.why-list .why-info h4 { font-size: 1.1rem; font-weight: 600; color: #333333; margin-bottom: 5px; }
.why-list .why-info p { color: #666666; margin: 0; line-height: 1.6; }
.why-about .why-image img { width: 100%; border-radius: 12px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }

/* About CTA */
.about-cta { background: linear-gradient(135deg, #DC2626, #B91C1C); padding: 60px 0; text-align: center; }
.about-cta .cta-content { color: #FFFFFF; }
.about-cta .cta-content h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
@media (max-width: 768px) { .about-cta .cta-content h2 { font-size: 1.8rem; } }
.about-cta .cta-content p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 20px; }
.cta-address { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 30px; font-size: 1rem; }
.cta-address i { font-size: 1.2rem; }
@media (max-width: 576px) { .cta-address { flex-direction: column; gap: 8px; } }

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-intro .intro-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 992px) { .services-intro .intro-content { grid-template-columns: 1fr; gap: 40px; } }
.intro-text h2 { font-size: 2.2rem; font-weight: 700; color: #333333; margin-bottom: 20px; line-height: 1.3; }
@media (max-width: 768px) { .intro-text h2 { font-size: 1.8rem; } }
.intro-text p { color: #666666; line-height: 1.8; margin-bottom: 30px; }
.discount-box {
  display: inline-flex; flex-direction: column; align-items: center; padding: 25px 40px;
  background: linear-gradient(135deg, #DC2626, #B91C1C); border-radius: 12px; color: #FFFFFF;
}
.discount-value { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.discount-label { font-size: 0.95rem; margin-top: 8px; }
.intro-image img { width: 100%; border-radius: 12px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #FFFFFF; padding: 30px 25px; border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15); }
.service-card:hover .service-icon { background: #DC2626; }
.service-card:hover .service-icon i { color: #FFFFFF; }
.service-icon {
  width: 70px; height: 70px; background: rgba(220, 38, 38, 0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s ease;
}
.service-icon i { font-size: 1.8rem; color: #DC2626; transition: all 0.3s ease; }
.service-card h3 { font-size: 1.2rem; font-weight: 600; color: #333333; margin-bottom: 12px; }
.service-card > p { color: #666666; font-size: 0.9rem; line-height: 1.6; margin-bottom: 15px; flex-grow: 1; }
.service-features { margin-bottom: 20px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #666666; margin-bottom: 8px; }
.service-features li i { color: #16A34A; font-size: 0.75rem; }
.service-cta { margin-top: auto; }

/* Additional Services */
.additional-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 992px) { .additional-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .additional-grid { grid-template-columns: 1fr; } }
.additional-card {
  text-align: center; padding: 40px 25px; background: #FFFFFF; border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); transition: all 0.3s ease;
}
.additional-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.12); }
.additional-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: linear-gradient(135deg, #DC2626, #B91C1C); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.additional-icon i { font-size: 2rem; color: #FFFFFF; }
.additional-card h3 { font-size: 1.2rem; font-weight: 600; color: #333333; margin-bottom: 10px; }
.additional-card p { color: #666666; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Why Choose Services */
.why-choose-services .why-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 992px) { .why-choose-services .why-content { grid-template-columns: 1fr; gap: 40px; } }
.why-choose-services .why-image img { width: 100%; border-radius: 12px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }
.why-choose-services .why-text h2 { font-size: 2rem; font-weight: 700; color: #333333; margin-bottom: 30px; }
.advantage-list .advantage-item { display: flex; gap: 20px; margin-bottom: 25px; }
.advantage-icon {
  width: 55px; height: 55px; background: rgba(220, 38, 38, 0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.advantage-icon i { font-size: 1.4rem; color: #DC2626; }
.advantage-info h4 { font-size: 1.1rem; font-weight: 600; color: #333333; margin-bottom: 5px; }
.advantage-info p { color: #666666; font-size: 0.95rem; line-height: 1.5; margin: 0; }

/* Services CTA */
.services-cta { background: linear-gradient(135deg, #DC2626, #B91C1C); padding: 60px 0; text-align: center; }
.services-cta .cta-content { color: #FFFFFF; }
.services-cta .cta-content h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
@media (max-width: 768px) { .services-cta .cta-content h2 { font-size: 1.8rem; } }
.services-cta .cta-content p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 30px; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-info-section { margin-top: -40px; position: relative; z-index: 10; padding-bottom: 40px; }
.info-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 992px) { .info-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .info-cards-grid { grid-template-columns: 1fr; } }
.info-card {
  background: #FFFFFF; padding: 30px 20px; border-radius: 12px; text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); transition: all 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(220, 38, 38, 0.15); }
.info-card:hover .info-icon { background: #DC2626; }
.info-card:hover .info-icon i { color: #FFFFFF; }
.info-icon {
  width: 70px; height: 70px; margin: 0 auto 20px; background: rgba(220, 38, 38, 0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.info-icon i { font-size: 1.8rem; color: #DC2626; transition: all 0.3s ease; }
.info-card h3 { font-size: 1.1rem; font-weight: 600; color: #333333; margin-bottom: 12px; }
.info-details p { color: #666666; font-size: 0.95rem; margin: 5px 0; line-height: 1.5; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 992px) { .contact-wrapper { grid-template-columns: 1fr; } }
.contact-form-wrapper .form-header { margin-bottom: 30px; }
.contact-form-wrapper .form-header h2 { font-size: 2rem; font-weight: 700; color: #333333; margin-bottom: 10px; }
.contact-form-wrapper .form-header p { color: #666666; line-height: 1.6; }
.map-header { margin-bottom: 20px; }
.map-header h3 { font-size: 1.5rem; font-weight: 600; color: #333333; margin-bottom: 8px; }
.map-header p { color: #666666; }
.map-container { height: 400px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.map-container iframe { border-radius: 12px; }
.map-cta { margin-top: 20px; text-align: center; }

/* Quick Contact */
.quick-contact { background: linear-gradient(135deg, #DC2626, #B91C1C); padding: 50px 0; }
.quick-contact-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 30px; }
@media (max-width: 768px) { .quick-contact-content { flex-direction: column; text-align: center; } }
.quick-text { color: #FFFFFF; }
.quick-text h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
@media (max-width: 768px) { .quick-text h2 { font-size: 1.5rem; } }
.quick-text p { opacity: 0.95; }
.quick-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
@media (max-width: 576px) { .quick-buttons { flex-direction: column; width: 100%; } }

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-section { padding: 40px 0; }
.loading-container { text-align: center; padding: 60px 20px; }
.loading-container .spinner { width: 50px; height: 50px; margin: 0 auto 20px; }
.loading-container p { color: #666666; }
.gallery-grid { column-count: 3; column-gap: 5px; }
@media (max-width: 992px) { .gallery-grid { column-count: 2; } }
@media (max-width: 576px) { .gallery-grid { column-count: 2; column-gap: 3px; } }
.gallery-item { cursor: pointer; break-inside: avoid; margin-bottom: 5px; }
@media (max-width: 576px) { .gallery-item { margin-bottom: 3px; } }
.gallery-item .gallery-image { overflow: hidden; }
.gallery-item .gallery-image img { width: 100%; height: auto; display: block; }
.no-items { text-align: center; padding: 60px 20px; }
.no-items i { font-size: 4rem; color: #E0E0E0; margin-bottom: 20px; display: block; }
.no-items h3 { font-size: 1.5rem; color: #333333; margin-bottom: 10px; }
.no-items p { color: #666666; }

/* Lightbox */
.lightbox {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.95); z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox .close-btn {
  position: absolute; top: -50px; right: 0; width: 45px; height: 45px;
  background: #FFFFFF; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: #333333; font-size: 1.2rem; transition: all 0.3s ease; z-index: 10;
}
.lightbox .close-btn:hover { background: #DC2626; color: #FFFFFF; }
.lightbox .nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px;
  background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: #FFFFFF; font-size: 1.2rem;
  transition: all 0.3s ease; z-index: 10; border: none;
}
.lightbox .nav-btn.prev { left: -70px; }
.lightbox .nav-btn.next { right: -70px; }
@media (max-width: 768px) {
  .lightbox .nav-btn.prev { left: 10px; }
  .lightbox .nav-btn.next { right: 10px; }
}
.lightbox .nav-btn:hover { background: #DC2626; }
.lightbox-image { text-align: center; }
.lightbox-image img { max-width: 100%; max-height: 75vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.lightbox-info { text-align: center; color: #FFFFFF; margin-top: 20px; }
.lightbox-info h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.lightbox-info p { font-size: 0.95rem; opacity: 0.8; }

/* Gallery CTA */
.gallery-cta { background: linear-gradient(135deg, #DC2626, #B91C1C); padding: 60px 0; text-align: center; }
.gallery-cta .cta-content { color: #FFFFFF; }
.gallery-cta .cta-content h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
@media (max-width: 768px) { .gallery-cta .cta-content h2 { font-size: 1.8rem; } }
.gallery-cta .cta-content p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 20px; }

/* ========================================
   BLOGS PAGE
   ======================================== */
.category-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }
.filter-btn {
  padding: 10px 24px; background: #FFFFFF; border: 2px solid #E0E0E0; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500; color: #666666; cursor: pointer; transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active { background: #DC2626; border-color: #DC2626; color: #FFFFFF; }
.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 992px) { .blogs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blogs-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #FFFFFF; border-radius: 12px; overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.12); }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-image { position: relative; height: 200px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-category {
  position: absolute; top: 15px; left: 15px; padding: 6px 14px;
  background: #DC2626; color: #FFFFFF; font-size: 0.8rem; font-weight: 600; border-radius: 50px;
}
.blog-content { padding: 25px; }
.blog-meta { display: flex; gap: 20px; margin-bottom: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: #666666; }
.blog-meta span i { color: #DC2626; }
.blog-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; line-height: 1.4; }
.blog-title a { color: #333333; }
.blog-title a:hover { color: #DC2626; }
.blog-excerpt {
  color: #666666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 15px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.read-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: #DC2626; font-weight: 600; font-size: 0.95rem;
}
.read-more:hover { gap: 12px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.page-btn {
  width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
  background: #FFFFFF; border: 2px solid #E0E0E0; border-radius: 8px;
  font-size: 1rem; font-weight: 500; color: #333333; cursor: pointer; transition: all 0.3s ease;
}
.page-btn:hover:not(:disabled), .page-btn.active { background: #DC2626; border-color: #DC2626; color: #FFFFFF; }
.page-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.no-blogs { text-align: center; padding: 60px 20px; }
.no-blogs i { font-size: 4rem; color: #E0E0E0; margin-bottom: 20px; display: block; }
.no-blogs h3 { font-size: 1.5rem; color: #333333; margin-bottom: 10px; }
.no-blogs p { color: #666666; }

/* Newsletter */
.newsletter-section { background: linear-gradient(135deg, #DC2626, #B91C1C); padding: 50px 0; }
.newsletter-content { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
@media (max-width: 768px) { .newsletter-content { flex-direction: column; text-align: center; } }
.newsletter-text { color: #FFFFFF; }
.newsletter-text h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
@media (max-width: 768px) { .newsletter-text h2 { font-size: 1.5rem; } }
.newsletter-text p { opacity: 0.95; }
.newsletter-form { display: flex; gap: 12px; }
@media (max-width: 576px) { .newsletter-form { flex-direction: column; width: 100%; } }
.newsletter-form input {
  padding: 14px 20px; border: none; border-radius: 8px; font-size: 1rem; min-width: 280px;
}
@media (max-width: 576px) { .newsletter-form input { min-width: auto; } }
.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3); }

/* ========================================
   BLOG DETAIL PAGE
   ======================================== */
.loading-page { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.loading-page .spinner { width: 50px; height: 50px; margin-bottom: 20px; }
.loading-page p { color: #666666; }

.blog-banner { position: relative; min-height: 450px; display: flex; align-items: center; }
.blog-banner .banner-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.blog-banner .banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.blog-banner .banner-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(155, 27, 48, 0.9) 0%, rgba(196, 30, 58, 0.8) 100%);
}
.blog-banner .container { position: relative; z-index: 2; }
.blog-banner .banner-content { max-width: 800px; color: #FFFFFF; padding: 60px 0; }
.blog-banner .blog-category {
  display: inline-block; padding: 8px 20px; background: rgba(255, 255, 255, 0.2);
  border-radius: 50px; font-size: 0.9rem; font-weight: 500; margin-bottom: 20px;
}
.blog-banner h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.3; margin-bottom: 20px; }
@media (max-width: 768px) { .blog-banner h1 { font-size: 1.8rem; } }
.blog-banner .blog-meta { display: flex; flex-wrap: wrap; gap: 25px; }
.blog-banner .blog-meta span { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; opacity: 0.9; }

.blog-layout { display: grid; grid-template-columns: 1fr 350px; gap: 40px; }
@media (max-width: 992px) { .blog-layout { grid-template-columns: 1fr; } }

/* Article */
.article-content { font-size: 1.05rem; line-height: 1.9; color: #333333; }
.article-content h2, .article-content h3, .article-content h4 { margin-top: 30px; margin-bottom: 15px; font-weight: 600; }
.article-content h2 { font-size: 1.5rem; }
.article-content h3 { font-size: 1.3rem; }
.article-content h4 { font-size: 1.1rem; }
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin-bottom: 20px; padding-left: 30px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 10px; }
.article-content strong { font-weight: 600; }
.article-content a { color: #DC2626; text-decoration: underline; }

.blog-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee; }
.tags-label { display: flex; align-items: center; gap: 8px; font-weight: 500; color: #333333; }
.tags-label i { color: #DC2626; }
.tag {
  padding: 6px 14px; background: #F8F9FA; border-radius: 50px;
  font-size: 0.85rem; color: #666666; transition: all 0.3s ease;
}
.tag:hover { background: #DC2626; color: #FFFFFF; }

.blog-share {
  display: flex; align-items: center; gap: 15px; margin-top: 30px;
  padding: 20px; background: #F8F9FA; border-radius: 10px;
}
@media (max-width: 576px) { .blog-share { flex-direction: column; } }
.share-label { font-weight: 500; color: #333333; }
.share-buttons { display: flex; gap: 10px; }
.share-btn {
  width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: #FFFFFF; font-size: 1.1rem; transition: all 0.3s ease; border: none;
}
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }

.author-box {
  display: flex; gap: 20px; margin-top: 40px; padding: 30px;
  background: #FFFFFF; border-radius: 12px; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
@media (max-width: 576px) { .author-box { flex-direction: column; text-align: center; } }
.author-box .author-avatar {
  width: 80px; height: 80px; background: #DC2626; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.author-box .author-avatar i { font-size: 2rem; color: #FFFFFF; }
.author-box .author-info h4 { font-size: 1.2rem; font-weight: 600; color: #333333; margin-bottom: 8px; }
.author-box .author-info p { color: #666666; line-height: 1.6; margin: 0; }

/* Sidebar */
.sidebar-widget {
  background: #FFFFFF; padding: 25px; border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); margin-bottom: 30px;
}
.sidebar-widget h3 {
  font-size: 1.2rem; font-weight: 600; color: #333333;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #DC2626;
}
.recent-post {
  display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee;
}
.recent-post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.recent-post:hover .recent-info h4 { color: #DC2626; }
.recent-image { width: 80px; height: 60px; flex-shrink: 0; }
.recent-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.recent-info h4 { font-size: 0.95rem; font-weight: 500; color: #333333; margin-bottom: 5px; line-height: 1.4; transition: color 0.3s ease; }
.recent-info span { font-size: 0.8rem; color: #666666; }

.cta-widget {
  background: linear-gradient(135deg, #DC2626, #B91C1C) !important; color: #FFFFFF; text-align: center;
}
.cta-widget h3 { color: #FFFFFF !important; border-bottom-color: rgba(255, 255, 255, 0.3) !important; }
.cta-widget .cta-icon {
  width: 60px; height: 60px; background: rgba(255, 255, 255, 0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 15px;
}
.cta-widget .cta-icon i { font-size: 1.5rem; }
.cta-widget p { opacity: 0.95; margin-bottom: 20px; }

.contact-widget p { color: #666666; margin-bottom: 20px; }
.contact-widget .contact-info a {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: #333333; font-weight: 500;
}
.contact-widget .contact-info a i {
  width: 35px; height: 35px; background: rgba(220, 38, 38, 0.1); color: #DC2626;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.contact-widget .contact-info a:hover { color: #DC2626; }

/* Related Posts */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 992px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: #FFFFFF; border-radius: 12px; overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); transition: all 0.3s ease;
}
.related-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.12); }
.related-image { height: 180px; overflow: hidden; }
.related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.related-card:hover .related-image img { transform: scale(1.05); }
.related-content { padding: 20px; }
.related-category {
  display: inline-block; padding: 5px 12px; background: rgba(220, 38, 38, 0.1);
  color: #DC2626; font-size: 0.8rem; font-weight: 600; border-radius: 50px; margin-bottom: 10px;
}
.related-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; line-height: 1.4; }
.related-content h3 a { color: #333333; }
.related-content h3 a:hover { color: #DC2626; }

/* Not Found */
.not-found-content { text-align: center; padding: 60px 20px; }
.not-found-content i { font-size: 5rem; color: #E0E0E0; margin-bottom: 25px; display: block; }
.not-found-content h2 { font-size: 1.8rem; color: #333333; margin-bottom: 15px; }
.not-found-content p { color: #666666; margin-bottom: 30px; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: #1A1A2E; color: #FFFFFF; padding-top: 60px; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 992px) { .footer-content { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .footer-content { grid-template-columns: 1fr; text-align: center; } }
.footer-section h4 {
  font-size: 1.2rem; font-weight: 600; margin-bottom: 25px;
  position: relative; padding-bottom: 12px;
}
.footer-section h4::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px;
  background: #DC2626; border-radius: 2px;
}
@media (max-width: 576px) { .footer-section h4::after { left: 50%; transform: translateX(-50%); } }

/* Company Info */
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
@media (max-width: 576px) { .footer-logo { justify-content: center; } }
.footer-logo img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.footer-logo h3 { font-size: 1.3rem; font-weight: 700; color: #DC2626; }
.company-info p { color: #CCCCCC; line-height: 1.7; margin-bottom: 20px; }
.footer .discount-highlight {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #DC2626, #B91C1C); padding: 12px 20px;
  border-radius: 8px; margin-bottom: 20px;
}
.footer .discount-highlight i { font-size: 1.2rem; }
.footer .discount-highlight span { font-weight: 600; }
.social-icons { display: flex; gap: 12px; }
@media (max-width: 576px) { .social-icons { justify-content: center; } }
.social-icons a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.1); border-radius: 50%; color: #FFFFFF; transition: all 0.3s ease;
}
.social-icons a:hover { background: #DC2626; transform: translateY(-3px); }

/* Footer Links */
.footer-links li { margin-bottom: 12px; }
.footer-links li a { color: #CCCCCC; display: flex; align-items: center; gap: 10px; transition: all 0.3s ease; }
@media (max-width: 576px) { .footer-links li a { justify-content: center; } }
.footer-links li a i { font-size: 0.7rem; color: #DC2626; }
.footer-links li a:hover { color: #DC2626; padding-left: 5px; }
@media (max-width: 576px) { .footer-links li a:hover { padding-left: 0; } }

/* Contact List */
.contact-list li { display: flex; gap: 15px; margin-bottom: 20px; }
@media (max-width: 576px) { .contact-list li { flex-direction: column; align-items: center; gap: 8px; } }
.contact-list li > i {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(220, 38, 38, 0.2); color: #DC2626; border-radius: 50%; flex-shrink: 0;
}
.contact-list li strong { display: block; font-size: 0.9rem; margin-bottom: 3px; }
.contact-list li p { color: #CCCCCC; font-size: 0.9rem; line-height: 1.5; margin: 0; }
.contact-list li p a { color: #CCCCCC; }
.contact-list li p a:hover { color: #DC2626; }

/* Footer Bottom */
.footer-bottom { background: #0F0F1A; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom-content {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
@media (max-width: 768px) { .footer-bottom-content { flex-direction: column; text-align: center; } }
.footer-bottom-content p { color: #CCCCCC; font-size: 0.9rem; margin: 0; }
