/* CLASSIC RO SOLUTIONS - COMPLETE CSS DESIGN SYSTEM */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-dark: #075985;
  --secondary: #0f172a;
  --accent: #38bdf8;
  --accent-light: #e0f2fe;
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --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(2, 132, 199, 0.12), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky CTA bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER & NAVBAR */
.top-bar {
  background-color: var(--secondary);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

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

.top-bar-info span {
  margin-right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-item-dropdown {
  position: relative;
}

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

.nav-item-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--accent-light);
  color: var(--primary);
}

/* BRAND SELECTOR QUICK BAR */
.brand-selector-wrapper {
  background: white;
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-sm);
}

.brand-selector-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 4px;
}

.brand-selector-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--secondary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-selector-btn {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--border-color);
  white-space: nowrap;
  transition: var(--transition);
}

.brand-selector-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--accent-light);
}

.brand-selector-btn.active {
  background: var(--primary);
  color: white !important;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

/* BRAND VISUAL BADGES */
.brand-hero-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: white;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-hero-card.aquaguard {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

.brand-hero-card.kent {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.brand-hero-card.eureka {
  background: linear-gradient(135deg, #047857, #0284c7);
}

.brand-hero-card.pureit {
  background: linear-gradient(135deg, #b91c1c, #0284c7);
}

.brand-hero-card.aosmith {
  background: linear-gradient(135deg, #0f172a, #334155);
}

.brand-hero-card.livpure {
  background: linear-gradient(135deg, #6d28d9, #0284c7);
}


.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0284c7);
  color: white !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), #0369a1);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
}

.btn-secondary {
  background: var(--secondary);
  color: white !important;
}

.btn-secondary:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--accent-light);
  border-color: var(--primary-hover);
}

.btn-whatsapp {
  background: #25D366;
  color: white !important;
}

.btn-whatsapp:hover {
  background: #1ea952;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

/* MOBILE STICKY CTA BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  z-index: 9999;
  grid-template-columns: 1fr 1fr 1.2fr;
  padding: 6px;
  gap: 6px;
}

.mobile-sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: var(--radius-sm);
  padding: 4px 2px;
}

.mobile-sticky-btn.call {
  background: var(--secondary);
  color: white !important;
}

.mobile-sticky-btn.wa {
  background: #25D366;
  color: white !important;
}

.mobile-sticky-btn.book {
  background: var(--primary);
  color: white !important;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(2, 132, 199, 0.12);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.hero-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}

.stars {
  color: #f59e0b;
}

.hero-img-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.hero-badge-overlay {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-color);
}

.hero-badge-overlay .icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* TRUST BAR */
.trust-bar {
  background: var(--secondary);
  color: white;
  padding: 1.25rem 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item i {
  color: #38bdf8;
  font-size: 1.1rem;
}

/* SECTIONS COMMON */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

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

.card-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
}

/* BRAND CARDS */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.brand-card {
  background: 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;
}

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

.brand-card-header {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 1.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.brand-name-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.brand-card-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* PROCESS STEPS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-step {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

/* LOCAL AREAS */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.area-tag {
  background: white;
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.area-tag i {
  color: var(--primary);
}

.area-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* FAQ ACCORDION */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  display: none;
  font-size: 0.98rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

/* DISCLAIMER BOX */
.disclaimer-box {
  background: #fffbeeb0;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: #92400e;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.disclaimer-box i {
  font-size: 1.2rem;
  margin-top: 2px;
}

/* FINAL CTA BOX */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary), #1e293b);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* BLOG WRAPPER & ARTICLES */
.blog-article {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.blog-article h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.blog-content {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
}

.blog-content h2 {
  font-size: 1.6rem;
  margin: 2.2rem 0 1rem;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin: 1.8rem 0 0.8rem;
}

.blog-content p {
  margin-bottom: 1.25rem;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

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

.table-custom th {
  background: var(--accent-light);
  color: var(--secondary);
  font-family: var(--font-heading);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  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(2, 132, 199, 0.15);
}

/* BOOKING MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease-out;
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  background: var(--secondary);
  color: #94a3b8;
  padding: 5rem 0 2rem;
  border-top: 1px solid #334155;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-title {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

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

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: 0.85rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: var(--transition);
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: flex;
  }
  .header-cta .btn {
    display: none;
  }
  .mobile-sticky-bar {
    display: grid;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .blog-article {
    padding: 1.5rem;
  }
}

/* BRAND PAGE CUSTOM LAYOUT STYLES (MATCHING REFERENCE DESIGN) */
.brand-hero-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.brand-hero-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--bg-light);
  padding: 1rem;
}

.brand-hero-content h1 {
  font-size: 1.65rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.brand-hero-content p {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.brand-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0284c7;
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-size: 0.92rem;
  margin-top: 0.5rem;
  transition: var(--transition);
}

.brand-hero-btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
}

/* BRAND SERVICES GRID */
.brand-services-section {
  margin: 3rem 0;
  text-align: center;
}

.brand-services-title {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  font-weight: 700;
}

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

.brand-service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.brand-service-card-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f8fafc;
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.brand-service-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.brand-service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.85rem;
  text-align: center;
}

.brand-service-card-desc-box {
  border: 1.5px solid #0284c7;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.55;
  background: #ffffff;
  flex-grow: 1;
}

/* BRAND BRANDS TABLE */
.brand-table-section {
  margin: 3.5rem 0;
}

.brand-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 2px solid #000000;
}

.brand-table th, .brand-table td {
  border: 1px solid #000000;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.brand-table th {
  background: #f1f5f9;
  font-weight: 700;
  color: #000000;
  text-align: left;
}

.brand-table td:first-child {
  text-align: center;
  font-weight: 600;
  width: 50px;
}

/* WHY CHOOSE US BRAND SECTION */
.brand-why-choose-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
  border: 1px solid var(--border-color);
}

.brand-why-choose-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--bg-light);
  padding: 1rem;
}

.brand-why-choose-content h2 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}

.brand-why-choose-list {
  list-style: none;
  margin-bottom: 1.25rem;
}

.brand-why-choose-list li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-why-choose-list li i {
  color: #0284c7;
}

@media (max-width: 992px) {
  .brand-hero-card, .brand-why-choose-card {
    grid-template-columns: 1fr;
  }
  .brand-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .brand-services-grid {
    grid-template-columns: 1fr;
  }
}

