@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  --primary: #FCB42F;          /* Brand Gold */
  --primary-hover: #D97706;    /* Dark Amber */
  --secondary: #343F77;        /* Logo Blue */
  --brand-blue: #343F77;       /* Logo Navy Blue */
  --bg-dark: #343F77;          /* Logo Blue */
  --bg-light: #F8FAFC;         /* Soft Gray */
  --text-dark: #343F77;        /* Logo Blue Font */
  --text-light: #F8FAFC;       /* Off-White */
  --text-muted: #64748B;       /* Muted Gray */
  --border-color: #E2E8F0;     /* Light Border */
  --whatsapp-color: #FCB42F;   /* Brand Gold */
  --danger: #EF4444;           /* Red for alerts/error */
  --success: #10B981;          /* Green for success */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--bg-dark);
  letter-spacing: 0.025em !important;
}

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

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

/* --- LAYOUT UTILITIES --- */
.container {
  width: 94%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

@media (min-width: 1920px) {
  .container {
    width: 94%;
    padding: 0 2rem;
  }
}

@media (min-width: 2560px) {
  .container {
    width: 94%;
    padding: 0 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 0.75rem auto 0;
  border-radius: var(--radius-sm);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* --- BUTTONS & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: var(--bg-dark);
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-outline:hover,
.product-card:hover .btn-outline,
.product-actions .btn-outline:hover,
.product-card:hover .product-actions .btn-outline {
  border-color: #FCB42F !important;
  color: #343F77 !important;
  background-color: #FCB42F !important;
  box-shadow: 0 4px 14px rgba(252, 180, 47, 0.4);
  transform: translateY(-2px);
}

/* Blog & Archive Pagination */
.page-numbers,
.pagination a.page-numbers,
.pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.75rem;
  border-radius: 8px;
  border: 1.5px solid #CBD5E1;
  background-color: #FFFFFF;
  color: #343F77;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.page-numbers:hover,
.page-numbers.current,
.pagination a.page-numbers:hover,
.pagination span.page-numbers.current {
  background-color: #FCB42F !important;
  border-color: #FCB42F !important;
  color: #343F77 !important;
  box-shadow: 0 4px 12px rgba(252, 180, 47, 0.35);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #FCB42F;
  color: #343F77;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background-color: #F59E0B;
  color: #343F77;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(252, 180, 47, 0.4);
}

/* --- HEADER / NAVIGATION --- */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  top: auto;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

@media(min-width: 993px) {
  header {
    position: sticky;
    top: 0;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 95px;
  height: auto;
  padding: 8px 0;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border: 1.5px solid #343F77;
  border-radius: 6px;
  color: #343F77;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  outline: none;
  box-shadow: 0 2px 6px rgba(52, 63, 119, 0.08);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus,
.mobile-menu-toggle.active {
  background-color: #343F77;
  color: #FCB42F;
  border-color: #343F77;
}

.mobile-menu-cta {
  display: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--bg-dark);
  text-decoration: none;
}

.logo img,
.sre-header-logo-img {
  max-height: 80px !important;
  height: 80px !important;
  width: auto !important;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo:hover img,
.logo:hover .sre-header-logo-img {
  transform: scale(1.02);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  white-space: nowrap;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--secondary);
  padding: 0.5rem 0;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a,
.nav-links li.current-page-ancestor > a {
  color: var(--secondary);
  font-weight: 700;
  position: relative;
}

.nav-links li.current-menu-item > a::after,
.nav-links li.current_page_item > a::after,
.nav-links li.current-page-ancestor > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FCB42F;
  border-radius: 2px;
}

.nav-links .dropdown-content,
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  z-index: 100;
  padding: 0.5rem 0;
}

.nav-links li:hover > .dropdown-content,
.nav-links li:hover > .sub-menu,
.nav-links li.dropdown-open > .dropdown-content,
.nav-links li.dropdown-open > .sub-menu {
  display: block;
}

.dropdown-content a,
.sub-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.dropdown-content a:hover,
.sub-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
  padding-left: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-call-btn,
.header-actions .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  white-space: nowrap !important;
  padding: 0.65rem 1.4rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  border-radius: 6px !important;
}

/* --- INQUIRY BADGE --- */
.rfq-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-weight: 600;
  cursor: pointer;
}

.rfq-cart-btn:hover {
  border-color: var(--primary);
}

.rfq-count {
  background-color: var(--primary);
  color: var(--bg-dark);
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
  color: var(--text-light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.15rem;
  color: #94A3B8;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.product-image-container {
  position: relative;
  background-color: var(--bg-light);
  width: 100%;
  aspect-ratio: 16 / 9;        /* 16:9 Aspect Ratio સેટ કર્યો */
  height: auto !important;     /* ફિક્સ હાઈટ હટાવીને ઓટો કરી */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}


.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-hover);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-spec-preview {
  background-color: var(--bg-light);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.product-spec-preview div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.product-spec-preview div span:last-child {
  font-weight: 600;
  color: var(--bg-dark);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

/* --- PRODUCT DETAIL PAGE LAYOUT --- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin-top: 2rem;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-product-img {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.product-details-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.capacity-badge {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--primary-hover);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.product-details-content .intro-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
}

/* --- SPECIFICATIONS TABLE --- */
.spec-table-container {
  margin-bottom: 3rem;
}

.spec-table-container h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th, .spec-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.spec-table th {
  background-color: var(--secondary);
  color: var(--text-light);
  font-weight: 600;
}

.spec-table tr:nth-child(even) td {
  background-color: rgba(0,0,0,0.015);
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--bg-dark);
  width: 40%;
}

/* --- TABS SYSTEM --- */
.tabs-container {
  margin-top: 3rem;
}

.tab-headers {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  position: relative;
  transition: var(--transition);
}

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

.tab-btn.active {
  color: var(--bg-dark);
}

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

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

/* --- AEO / FAQ SYSTEM --- */
.faq-section {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  margin-top: 4rem;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  background-color: white;
  user-select: none;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  background-color: var(--bg-light);
}

.faq-item.active .faq-question {
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(245, 158, 11, 0.03);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 1.25rem 1.5rem;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

/* --- TRUST BADGES & STICKY CTA --- */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
}

.badge-item {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.badge-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.badge-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.badge-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- FLOATING / STICKY ELEMENTS --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  padding: 1rem 0;
  z-index: 900;
  display: none;
}

.sticky-cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-cta-info h4 {
  font-size: 1.1rem;
}

.sticky-cta-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sticky-cta-buttons {
  display: flex;
  gap: 1rem;
}



/* --- B2B RFQ MULTI-STEP FORM --- */
.rfq-card {
  background-color: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 700px;
  margin: 2rem auto;
}

.rfq-header {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
  color: var(--text-light);
  padding: 2rem;
  text-align: center;
}

.rfq-header h2 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.rfq-header p {
  color: #94A3B8;
  font-size: 0.9rem;
}

.rfq-body {
  padding: 2.5rem;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step-dot.active {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--bg-dark);
}

.step-dot.completed {
  border-color: var(--success);
  background-color: var(--success);
  color: white;
}

.rfq-step {
  display: none;
}

.rfq-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--bg-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.rfq-items-list {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 1rem;
  margin-bottom: 1.5rem;
  max-height: 200px;
  overflow-y: auto;
}

.rfq-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.rfq-item-row:last-child {
  border-bottom: none;
}

.rfq-item-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.rfq-item-remove {
  color: var(--danger);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
}

.rfq-item-remove:hover {
  text-decoration: underline;
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-dark);
  color: #94A3B8;
  padding: 5rem 0 2rem;
  margin-top: auto;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.25rem;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-info i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* --- ANIMATIONS & KEYFRAMES --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- RESPONSIVE STYLING --- */
@media(max-width: 1024px) {
  .hero-content h1 { font-size: 2.5rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 992px) {
  header {
    position: relative !important;
    top: auto !important;
  }
  .header-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: auto !important;
    padding: 0.6rem 1rem !important;
    min-height: 60px !important;
    position: relative;
  }
  .header-right-group {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    order: 2 !important;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
  .logo {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 1 !important;
  }
  .logo img,
  .sre-header-logo-img {
    max-height: 48px !important;
    height: 48px !important;
    width: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain !important;
  }
  .header-actions {
    display: inline-flex !important;
    align-items: center !important;
  }
  .header-actions .btn,
  .header-call-btn {
    padding: 0.5rem 0.85rem !important;
    font-size: 0.85rem !important;
  }
  nav.main-nav {
    display: none; /* Collapsed by default on mobile */
    width: 100% !important;
    order: 3 !important;
    background: #ffffff !important;
    border-top: 1px solid #E2E8F0 !important;
    margin-top: 0.6rem !important;
    padding: 0.5rem 0 1rem !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important;
    border-radius: 0 0 10px 10px !important;
  }
  nav.main-nav.is-open,
  #sre-main-nav.is-open,
  nav.is-open,
  .header-container nav.is-open {
    display: block !important;
    animation: sreNavFadeIn 0.25s ease-out;
  }
  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    text-align: left !important;
  }
  .nav-links li {
    width: 100% !important;
    border-bottom: 1px solid #F1F5F9 !important;
    position: relative !important;
  }
  .nav-links li:last-child {
    border-bottom: none !important;
  }
  .nav-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #1E293B !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
  }
  .nav-links a:hover,
  .nav-links li.current-menu-item > a {
    background-color: #F8FAFC !important;
    color: #FCB42F !important;
  }
  .nav-links .dropdown-content,
  .nav-links .sub-menu {
    display: none;
    position: static !important;
    background-color: #F8FAFC !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid #E2E8F0 !important;
    padding: 0.25rem 0 0.5rem 1rem !important;
    width: 100% !important;
  }
  .nav-links li.menu-item-has-children.dropdown-open > .dropdown-content,
  .nav-links li.menu-item-has-children.dropdown-open > .sub-menu {
    display: block !important;
  }
  .nav-links .dropdown-content a,
  .nav-links .sub-menu a {
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    color: #475569 !important;
  }
  .nav-links .dropdown-content a:hover,
  .nav-links .sub-menu a:hover {
    color: #1E293B !important;
    padding-left: 1.25rem !important;
  }
  .mobile-menu-cta {
    display: block !important;
    padding: 1rem 1rem 0.5rem !important;
    border-top: 1px solid #E2E8F0 !important;
    margin-top: 0.5rem !important;
  }
  .mobile-menu-cta .btn {
    width: 100% !important;
    justify-content: center !important;
    display: flex !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
  }
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta-container { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- HIDE B2B INQUIRY CART & BUTTONS GLOBALLY --- */
.rfq-cart-btn {
  display: none !important;
}
.btn-add-quote {
  display: none !important;
}
.product-actions {
  display: block !important;
}
.product-actions a {
  width: 100% !important;
  text-align: center;
}

/* --- BRANDING & LOGO UPDATES --- */
.logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.02);
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

/* --- FLOATING CONTACT DUAL-CTA WIDGET --- */
.floating-contact-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  color: white !important;
  cursor: pointer;
  text-decoration: none;
}

.float-phone {
  background-color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-phone:hover {
  background-color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.float-whatsapp {
  background-color: #FCB42F;
  color: #343F77;
  animation: floatPulse 2s infinite;
}

.float-whatsapp:hover {
  background-color: #F59E0B;
  color: #343F77;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(252, 180, 47, 0.4);
}

@keyframes floatPulse {
  0% { box-shadow: 0 0 0 0 rgba(252, 180, 47, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(252, 180, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(252, 180, 47, 0); }
}

/* Responsive Sticky Footer CTA bar for Mobile screens */
@media(max-width: 480px) {
  .floating-contact-wrap {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    flex-direction: row;
    gap: 0;
    background-color: white;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
    padding: 10px;
  }
  .float-btn {
    flex: 1;
    border-radius: 8px;
    padding: 12px 8px;
    font-size: 0.85rem;
    box-shadow: none;
  }
  .float-whatsapp {
    animation: none;
    margin-left: 8px;
  }
  /* Offset footer content slightly to not get covered by the sticky bar */
  body {
    padding-bottom: 70px;
  }
}

/* =========================================================================
   HOMEPAGE FIRST SECTION (HERO BANNER) - PRECISION REDESIGN
   ========================================================================= */

.sre-hero-section {
  position: relative;
  background-color: #343F77;
  padding: 5.5rem 0 6rem;
  overflow: hidden;
  color: #ffffff;
}

/* Concentric background rings watermark pattern */
.sre-hero-bg-pattern {
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translate(-50%, -50%);
  width: 1300px;
  height: 1300px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}

.sre-hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.sre-hero-circle.ring-1 { width: 350px; height: 350px; }
.sre-hero-circle.ring-2 { width: 680px; height: 680px; border-style: solid; }
.sre-hero-circle.ring-3 { width: 1000px; height: 1000px; border-style: dashed; }
.sre-hero-circle.ring-4 { width: 1350px; height: 1350px; border-style: solid; }

.sre-hero-container {
  position: relative;
  z-index: 2;
}

.sre-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Column Editorial */
.sre-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sre-hero-accent-bar {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background-color: #f59e0b;
}

.sre-hero-accent-bar.top-bar {
  margin-bottom: 1.5rem;
}

.sre-hero-accent-bar.bottom-bar {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.sre-hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
}

.sre-hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2.2rem;
  max-width: 620px;
}

/* Action Buttons Group */
.sre-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.sre-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.sre-btn-quote {
  background-color: #f59e0b;
  color: #0f172a !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.sre-btn-quote:hover {
  background-color: #d97706;
  color: #0f172a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.sre-btn-whatsapp {
  background-color: #343F77;
  border: 1.5px solid #FCB42F;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(7, 19, 38, 0.35);
}

.sre-btn-whatsapp i {
  color: #FCB42F;
}

.sre-btn-whatsapp:hover {
  background-color: #FCB42F;
  color: #343F77 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 180, 47, 0.45);
}

.sre-btn-whatsapp:hover i {
  color: #343F77;
}

.sre-btn i {
  font-size: 1.15rem;
}

/* Phone Call Badge */
.sre-hero-phone-wrap {
  display: flex;
  align-items: center;
}

.sre-hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.sre-phone-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  transition: var(--transition);
}

.sre-hero-phone-link:hover .sre-phone-icon-circle {
  background-color: #f59e0b;
  color: #0f172a;
  transform: scale(1.08);
}

.sre-phone-number-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.sre-hero-phone-link:hover .sre-phone-number-text {
  color: #f59e0b;
}

/* Right Visual Frame */
.sre-hero-visual {
  display: flex;
  justify-content: center;
}

.sre-hero-frame {
  position: relative;
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.08);
  width: 100%;
  max-width: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sre-hero-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.sre-hero-frame:hover .sre-hero-img {
  transform: scale(1.02);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .sre-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .sre-hero-content {
    align-items: center;
  }
  .sre-hero-title {
    font-size: 2.2rem;
  }
  .sre-hero-desc {
    font-size: 0.95rem;
  }
  .sre-hero-ctas {
    justify-content: center;
  }
  .sre-hero-frame {
    max-width: 480px;
  }
}

@media (max-width: 576px) {
  .sre-hero-section {
    padding: 3.5rem 0 4rem;
  }
  .sre-hero-title {
    font-size: 1.85rem;
  }
  .sre-hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }
  .sre-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .logo img,
  .sre-header-logo-img {
    max-height: 55px !important;
    height: 55px !important;
  }
  .header-container {
    min-height: 70px;
    padding: 6px 0;
  }
}


h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .card-title,
.sre-gl-specs-title, .sre-gl-card-title,
.sre-sl-specs-title, .sre-sl-card-title,
.sre-s4-title, .sre-s4-card-title,
.sre-s5-title, .sre-s5-card-title,
.sre-scs-title, .sre-cs-card-title, .sre-cs-cta-title,
.nav-links a, .btn, .sre-gl-btn-specs, .sre-sl-btn-specs {
  letter-spacing: 0.025em !important;
}


/* TRANSPARENT LOGO STYLING */
.logo, .logo img, .sre-footer-logo-img, .footer-logo, .footer-logo img {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ABOUT US - TEXT JUSTIFICATION */
.sre-ab2-para,
.sre-ab3-card-desc,
.sre-ab4-desc {
  text-align: justify !important;
  text-justify: inter-word !important;
  width: 100% !important;
}