/* ============================================
   Yash E2E Solutions - Complete Master CSS
   Pages: Home, About, Services, Products, Product Detail, Contact
   Version: 2.0 Final - Slider Arrows & Hero Buttons Fixed
   ============================================ */

/* ==========================================
   1. CSS VARIABLES (ROOT)
   ========================================== */
:root {
  --primary-green: #78D24D;
  --blue-dark: #0D47A1;
  --blue-light: #2196F3;
  --bg-light: #F8FAFC;
  --text-dark: #1F2937;
  --gray-light: #EEF3F8;
  --white: #FFFFFF;
  --gradient-blue: linear-gradient(135deg, #0D47A1, #2196F3);
  --gradient-green-blue: linear-gradient(135deg, #78D24D, #2196F3);
  --shadow-soft: 0 20px 35px rgba(0,0,0,0.05);
  --shadow-card: 0 15px 30px rgba(13,71,161,0.08);
  --transition: all 0.3s ease;
}

/* ==========================================
   2. GLOBAL / BODY
   ========================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

/* ==========================================
   3. TOP HEADER
   ========================================== */
.top-header {
  background: var(--gradient-blue);
  color: white;
  font-size: 0.85rem;
  padding: 6px 0;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.top-header .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  color: #0D47A1;
  font-size: 0.8rem;
  margin-right: 4px;
}

.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  margin-left: 6px;
  transition: 0.3s;
  text-decoration: none;
}

.social-circle:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
  color: white;
}

/* ==========================================
   4. NAVBAR
   ========================================== */
.navbar {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: var(--transition);
  padding: 12px 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: #1F2937 !important;
  margin: 0 6px;
  position: relative;
  transition: 0.3s;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: #0D47A1 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0D47A1;
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ==========================================
   5. BUTTONS (GENERAL)
   ========================================== */
.btn-quote {
  background: var(--gradient-blue);
  border: none;
  color: white !important;
  border-radius: 40px;
  padding: 8px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(13,71,161,0.3);
  transition: 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-quote:hover {
  background: linear-gradient(135deg, #2196F3, #0D47A1);
  transform: translateY(-2px);
  color: white !important;
}

/* HERO BUTTONS - EXPLORE PRODUCTS */
.btn-explore {
  background: var(--primary-green) !important;
  border: none !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: 40px !important;
  color: #1F2937 !important;
  font-size: 0.9rem !important;
  transition: 0.3s !important;
  display: inline-block !important;
  text-align: center !important;
  margin-right: 8px !important;
}

.btn-explore:hover {
  background: #6abf3e;
  color: #1F2937;
  transform: translateY(-2px);
}


.breadcrumb-item.active {
    color: #fff !important;
}


/* HERO BUTTONS - CONTACT US OUTLINE */
.btn-contact-outline {
  background: transparent !important;
  border: 2px solid white !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  border-radius: 40px !important;
  font-size: 0.9rem !important;
  transition: 0.3s !important;
  display: inline-block !important;
  text-align: center !important;
}

.btn-contact-outline:hover {
  background: white;
  color: #0D47A1;
  transform: translateY(-2px);
}

/* ==========================================
   6. PAGE HEADER (BREADCRUMB BANNER)
   ========================================== */
.page-header {
  background: linear-gradient(135deg, rgba(13,71,161,0.92), rgba(33,150,243,0.88)), 
              url('https://images.pexels.com/photos/3862632/pexels-photo-3862632.jpeg') center/cover no-repeat;
  padding: 80px 0;
  color: white;
  text-align: center;
  border-bottom: 4px solid var(--primary-green);
}

.page-header h1 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.7);
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active {
  color: var(--primary-green);
}

/* ==========================================
   7. HERO SECTION (HOME PAGE)
   ========================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-text .lead {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.welcome-tag {
  color: var(--primary-green);
  letter-spacing: 2px;
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 4px 16px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-form-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-form-card .form-control {
  border-radius: 8px;
  border: 1px solid #dde4f0;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.hero-form-card h5 {
  color: #1F2937;
  font-weight: 650;
}

/* ==========================================
   8. ABOUT SECTION
   ========================================== */
.about-text {
  line-height: 1.9;
  color: #4b5563;
}

.about-story-img {
  border-radius: 28px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
  transition: 0.4s;
  width: 100%;
}

.about-story-img:hover {
  transform: scale(1.02);
}

.highlight-text {
  color: var(--blue-dark);
  font-weight: 600;
}

.story-badge {
  background: rgba(120,210,77,0.15);
  color: #2d6a1f;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
}

/* ==========================================
   9. COUNTER CARDS (HOME PAGE)
   ========================================== */
.counter-card {
  background: linear-gradient(145deg, #ffffff, #f5f9ff);
  border-radius: 24px;
  padding: 25px 15px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.06);
  transition: 0.3s;
  border: 1px solid #e0e8f0;
  height: 100%;
  text-align: center;
}

.counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px rgba(13,71,161,0.1);
}

.counter-card i {
  font-size: 2.8rem;
  color: #0D47A1;
  margin-bottom: 10px;
}

.counter-card h3 {
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 5px;
}

.counter-card p {
  color: #6b7280;
  margin-bottom: 0;
}

/* ==========================================
   10. WHY CHOOSE US CARDS (HOME)
   ========================================== */
.why-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border: 1px solid #e0e8f0;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(13,71,161,0.1);
}

.why-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.why-card .p-3 {
  padding: 1.2rem !important;
}

.why-card h5 {
  font-weight: 650;
  color: #0D47A1;
  margin-bottom: 5px;
}

.why-card p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================
   11. WHY CARDS ADVANCED (ABOUT / PRODUCTS PAGE)
   ========================================== */
.why-card-advanced {
  background: white;
  border-radius: 28px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: 0 20px 35px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(13,71,161,0.1);
  height: 100%;
}

.why-card-advanced:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 40px rgba(13,71,161,0.15);
  border-color: var(--primary-green);
}

.why-icon-large {
  font-size: 3.2rem;
  background: linear-gradient(135deg, #0D47A1, #2196F3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.4rem;
  display: inline-block;
}

.why-card-advanced h4 {
  font-weight: 650;
  margin-bottom: 1rem;
  color: #0D47A1;
  font-size: 1.25rem;
}

.why-card-advanced p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ==========================================
   12. CATEGORY CIRCLE (HOME PAGE)
   ========================================== */
.category-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: 0.3s;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--gradient-blue) border-box;
  overflow: hidden;
}

.category-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 35px rgba(13,71,161,0.2);
}

.category-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ==========================================
   13. SERVICE CARDS
   ========================================== */
.service-card {
  background: linear-gradient(145deg, #ffffff, #f0f5fe);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e0e8f0;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(13,71,161,0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0D47A1, #2196F3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.service-card h6 {
  font-weight: 650;
  color: #0D47A1;
  margin-bottom: 4px;
}

.service-card small {
  color: #4b5563;
  line-height: 1.5;
}

/* ==========================================
   14. PRODUCT CATEGORY CARD (CATEGORIES PAGE)
   ========================================== */
.category-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.category-card {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid #eef3f8;
  height: 100%;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(13,71,161,0.12);
  border-color: var(--primary-green);
}

.category-img-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--gradient-blue) border-box;
  transition: 0.3s;
  overflow: hidden;
}

.category-card:hover .category-img-circle {
  transform: scale(1.08);
  box-shadow: 0 18px 35px rgba(13,71,161,0.2);
}

.category-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.category-card h5 {
  font-weight: 650;
  color: #0D47A1;
  margin-bottom: 0;
}

.category-card p {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 0;
  margin-top: 5px;
}

/* ==========================================
   15. PRODUCT CARD (PRODUCTS PAGE)
   ========================================== */
.product-card {
  background: white;
  
  padding: 5px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #eef3f8;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(13,71,161,0.12);
  border-color: var(--primary-green);
  color: inherit;
}

.product-card img {
  max-height: 100%;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.product-card h6 {
  font-weight: 650;
  color: #0D47A1;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ==========================================
   16. CATEGORY SIDEBAR (PRODUCTS PAGE)
   ========================================== */
.category-sidebar {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 1px solid #eef3f8;
  position: sticky;
  top: 100px;
}

.category-sidebar h5 {
  font-weight: 700;
  color: #0D47A1;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #eef3f8;
}

.category-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}

.category-list-item:hover {
  background: #eef4ff;
  color: #0D47A1;
  padding-left: 16px;
}

.category-list-item i {
  color: #0D47A1;
  font-size: 0.7rem;
  transition: 0.3s;
}

.category-list-item:hover i {
  transform: translateX(3px);
}

.category-list-item.active {
  background: var(--gradient-blue);
  color: white;
}

.category-list-item.active i {
  color: white;
}

/* ==========================================
   17. PRODUCT DETAIL PAGE
   ========================================== */
.product-main-image {
  background: white;
  padding: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  border: 1px solid #eef3f8;
  text-align: center;
  border-radius: 20px;
}

.product-main-image img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
}

.product-info {
  background: white;
  padding: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  border: 1px solid #eef3f8;
  height: 100%;
  border-radius: 20px;
}

.product-info h3 {
  font-weight: 700;
  color: #0D47A1;
}

.product-description {
  color: #4b5563;
  line-height: 1.9;
  font-size: 1rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item i {
  color: #78D24D;
  width: 20px;
  font-size: 1rem;
}

/* ==========================================
   18. QUICK ACTION BUTTONS (PRODUCT DETAIL)
   ========================================== */
.quick-action-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.btn-whatsapp-enquiry {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 18px rgba(37,211,102,0.3);
}

.btn-whatsapp-enquiry:hover {
  background: #1fb855;
  color: white;
  transform: translateY(-2px);
}

.btn-call-now {
  background: white;
  color: #0D47A1;
  border: 2px solid #0D47A1;
  box-shadow: 0 8px 18px rgba(13,71,161,0.15);
}

.btn-call-now:hover {
  background: #0D47A1;
  color: white;
  transform: translateY(-2px);
}

.btn-quick-enquiry {
  background: var(--gradient-blue);
  color: white;
  box-shadow: 0 8px 18px rgba(13,71,161,0.3);
}

.btn-quick-enquiry:hover {
  background: linear-gradient(135deg, #2196F3, #0D47A1);
  color: white;
  transform: translateY(-2px);
}

/* ==========================================
   19. MORE PRODUCTS CARD (PRODUCT DETAIL)
   ========================================== */
.more-product-card {
  background: white;
  padding: 5px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #eef3f8;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
  
}

.more-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(13,71,161,0.12);
  border-color: var(--primary-green);
  color: inherit;
}

.more-product-card img {
  max-height: 100%;
  object-fit: contain;
  margin-bottom: 1rem;
}

.more-product-card h6 {
  font-weight: 650;
  color: #0D47A1;
  margin-bottom: 10px;
}

/* ==========================================
   20. ENQUIRY MODAL
   ========================================== */
.modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background: var(--gradient-blue);
  color: white;
  border-bottom: none;
  padding: 1.5rem;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.modal-title {
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
}

.modal-body .form-control {
  border-radius: 8px;
  border: 1px solid #dde4f0;
  padding: 10px 16px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.modal-body .form-control:focus {
  border-color: #0D47A1;
  box-shadow: 0 0 0 0.2rem rgba(13,71,161,0.15);
}

.modal-body .form-label {
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 6px;
}

/* ==========================================
   21. CTA SECTION
   ========================================== */
.cta-section {
  background: linear-gradient(rgba(13,71,161,0.9),rgba(33,150,243,0.8)),url('https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg') center/cover fixed;
  border-radius: 32px;
  margin: 2rem auto;
  color: white;
  padding: 3rem 1rem;
}

.cta-section h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .lead {
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

/* ==========================================
   22. BRAND SLIDER (WITH ARROW FIX)
   ========================================== */
.brand-slider-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.brand-slider-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.brand-slide {
  flex: 0 0 calc(20% - 16px);
  min-width: calc(20% - 16px);
  transition: transform 0.3s ease;
}

.brand-card {
  background: white;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid #eef3f8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(13,71,161,0.12);
  border-color: #78D24D;
}

.brand-card img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.brand-card:hover img {
  transform: scale(1.08);
}

/* SLIDER ARROWS - CIRCLE WITH BOX SHADOW */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: none;
  color: #0D47A1;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  outline: none;
}

.slider-arrow:hover {
  background: linear-gradient(135deg, #0D47A1, #2196F3);
  color: white;
  box-shadow: 0 12px 28px rgba(13,71,161,0.3);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

/* ==========================================
   23. LINE CARDS (HOME PAGE)
   ========================================== */
.line-card-wrapper {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid #eef3f8;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-card-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(13,71,161,0.12);
  border-color: #78D24D;
}

.line-card-wrapper img {
  max-height: 160px;
  object-fit: contain;
  transition: 0.3s;
}

.line-card-wrapper:hover img {
  transform: scale(1.05);
}

/* ==========================================
   24. CONTACT PAGE
   ========================================== */
.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #eef3f8;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(13,71,161,0.12);
}

.contact-icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0D47A1, #2196F3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  flex-shrink: 0;
}

.contact-info-card h6 {
  font-weight: 650;
  color: #0D47A1;
  margin-bottom: 4px;
}

.contact-info-card p {
  margin-bottom: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

.contact-info-card a {
  color: #4b5563;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info-card a:hover {
  color: #0D47A1;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border: 1px solid #eef3f8;
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* ==========================================
   25. GRADIENT FORM
   ========================================== */
.gradient-form {
  background: linear-gradient(145deg, #ffffff, #eef4fd);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  border: 1px solid #e0e8f0;
}

.gradient-form .form-control {
  border-radius: 8px;
  border: 1px solid #dde4f0;
  padding: 10px 16px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.gradient-form .form-control:focus {
  border-color: #0D47A1;
  box-shadow: 0 0 0 0.2rem rgba(13,71,161,0.15);
}

/* ==========================================
   26. FAQ SECTION
   ========================================== */
.faq-item {
  background: white;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  border-left: 4px solid #0D47A1;
  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.faq-item h5 {
  font-weight: 600;
  color: #0D47A1;
  margin-bottom: 8px;
}

.faq-item p {
  margin-bottom: 0;
  color: #4a5568;
  line-height: 1.7;
}

/* ==========================================
   27. FOOTER
   ========================================== */
footer {
  background: #0b1e33;
  color: #ccc;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

footer h6 {
  font-weight: 650;
  margin-bottom: 1rem;
  color: white;
}

footer p {
  line-height: 1.7;
}

.quick-links .list-unstyled li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
}

.quick-links .list-unstyled li:last-child {
  border-bottom: none;
}

.quick-links .list-unstyled li a {
  color: #ccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  font-size: 0.9rem;
}

.quick-links .list-unstyled li a i {
  color: #78D24D;
  font-size: 0.7rem;
}

.quick-links .list-unstyled li a:hover {
  color: #78D24D;
  padding-left: 6px;
}

.contact-footer {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-footer:last-child {
  border-bottom: none;
}

.contact-footer i {
  width: 24px;
  color: #78D24D;
}

.footer-link-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link-item a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link-item a:hover {
  color: #78D24D;
  padding-left: 6px;
}

.footer-link-item i {
  color: #78D24D;
  font-size: 0.8rem;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

footer hr {
  border-color: rgba(255,255,255,0.1);
  margin: 1.5rem 0;
}

/* ==========================================
   28. FLOATING BUTTONS (ALL PAGES)
   ========================================== */
.floating-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.floating-btns a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: floatY 2.5s infinite ease-in-out;
}

.floating-btns a:nth-child(2) { animation-delay: 0.3s; }
.floating-btns a:nth-child(3) { animation-delay: 0.6s; }

.floating-btns a:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.whatsapp-float { background: #25D366; }
.phone-float { background: var(--gradient-blue); }
.top-float { background: #1F2937; }

@keyframes floatY {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* ==========================================
   29. UTILITY CLASSES
   ========================================== */
.bg-white-gradient {
  background: linear-gradient(145deg, #ffffff, #f5f9ff);
}

.bg-light {
  background-color: #F8FAFC !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.text-muted {
  color: #6b7280 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

/* ==========================================
   30. RESPONSIVE STYLES
   ========================================== */

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .page-header h1 { font-size: 2rem; }
  .page-header { padding: 50px 0; }
  
  .hero-text { padding-top: 40px !important; }
  .hero-text h1 { font-size: 1.5rem !important; }
  .hero-text .welcome-tag {
    font-size: 0.65rem !important;
    padding: 2px 12px !important;
    letter-spacing: 1px !important;
  }
  .hero-text .lead { font-size: 0.9rem !important; }
  .hero-form-card {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  #about { margin-top: 1.5rem !important; }
  
  .brand-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .brand-slider-container { padding: 0 45px; }
  .brand-card { height: 130px; padding: 1rem; }
  .brand-card img { max-height: 80px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1rem; }
  
  .map-container iframe { height: 280px; }
  .category-sidebar { margin-bottom: 1.5rem; position: static; }
  
  .cta-section { border-radius: 20px; margin: 1rem 0; }
  .cta-section h2 { font-size: 1.5rem; }
  
  .btn-explore, .btn-contact-outline {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

/* Tablet Devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .brand-slide {
    flex: 0 0 calc(33.33% - 14px);
    min-width: calc(33.33% - 14px);
  }
  .page-header h1 { font-size: 2.3rem; }
}