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

/* ========== GLOBAL OVERFLOW LOCK ========== */
html {
  overflow-x: clip;
  width: 100%;
}

:root {
  --primary: #1E88E5;
  --secondary: #43A047;
  --accent: #26C6DA;
  --bg-color: #F7FAFC;
  --white: #FFFFFF;
  --text-color: #263238;
  --light-gray: #ECEFF1;
  --shadow: 0 10px 30px rgba(38, 50, 56, 0.08);
  --shadow-hover: 0 20px 40px rgba(30, 136, 229, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

/* Scroll lock when drawer is open */
body.drawer-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

input, textarea, button {
  font-family: var(--font);
  outline: none;
}

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

.text-center {
  text-align: center;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #546E7A;
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(30, 136, 229, 0.4);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 0 15px rgba(67, 160, 71, 0.4);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-color);
  font-weight: 600;
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(38, 198, 218, 0.4);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.card-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 220px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.1);
}

.card-icon-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.card-content {
  padding: 24px;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.card-desc {
  font-size: 0.9rem;
  color: #546E7A;
  margin-bottom: 20px;
  font-weight: 300;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--primary);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.5px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-trigger {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-color);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
}

.search-trigger:hover {
  background-color: var(--light-gray);
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== MOBILE DRAWER (RIGHT-SIDE) ========== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  min-width: 240px;
  height: 100%;
  height: 100dvh;
  background-color: var(--white);
  z-index: 1100;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  padding: 80px 24px 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-drawer.active {
  transform: translateX(0);
}

/* Semi-transparent backdrop behind the drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
  z-index: 1;
}

.drawer-close:hover {
  color: var(--primary);
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  text-align: left;
}

.drawer-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid var(--light-gray);
  display: block;
}

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

.drawer-btn {
  margin-top: 28px;
  width: 100%;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 100px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.85), rgba(38, 50, 56, 0.9));
  z-index: 1;
}

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

.hero-content {
  max-width: 650px;
}

.hero-tag {
  background-color: rgba(38, 198, 218, 0.2);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid rgba(38, 198, 218, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 36px;
  opacity: 0.9;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.hero-stats-row {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: var(--white);
  padding: 30px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(30, 136, 229, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.stat-card:hover .stat-icon {
  background-color: var(--primary);
  color: var(--white);
}

.stat-card.secondary .stat-icon {
  background-color: rgba(67, 160, 71, 0.1);
  color: var(--secondary);
}

.stat-card.secondary:hover .stat-icon {
  background-color: var(--secondary);
  color: var(--white);
}

.stat-card.accent .stat-icon {
  background-color: rgba(38, 198, 218, 0.1);
  color: var(--accent);
}

.stat-card.accent:hover .stat-icon {
  background-color: var(--accent);
  color: var(--white);
}

.stat-card.warning .stat-icon {
  background-color: rgba(239, 108, 0, 0.1);
  color: #EF6C00;
}

.stat-card.warning:hover .stat-icon {
  background-color: #EF6C00;
  color: var(--white);
}

.stat-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
}

.stat-info p {
  font-size: 0.85rem;
  color: #78909C;
  font-weight: 500;
}

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

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

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

.categories-bg {
  background-color: var(--white);
}

.category-card {
  padding: 40px 24px;
  text-align: center;
  border: 1px solid var(--light-gray);
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(30, 136, 229, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.category-card.green .category-icon {
  background-color: rgba(67, 160, 71, 0.08);
  color: var(--secondary);
}

.category-card.green:hover .category-icon {
  background-color: var(--secondary);
  color: var(--white);
}

.category-card.cyan .category-icon {
  background-color: rgba(38, 198, 218, 0.08);
  color: var(--accent);
}

.category-card.cyan:hover .category-icon {
  background-color: var(--accent);
  color: var(--white);
}

.category-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-color);
}

.category-desc {
  font-size: 0.9rem;
  color: #546E7A;
  margin-bottom: 20px;
}

.btn-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.btn-text i {
  transition: var(--transition);
}

.btn-text:hover i {
  transform: translateX(4px);
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
}

.badge.secondary {
  background-color: var(--secondary);
}

.badge.accent {
  background-color: var(--accent);
  color: var(--text-color);
}

.bg-white-section {
  background-color: var(--white);
}

.bg-gray-section {
  background-color: var(--bg-color);
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-img-wrapper img {
  width: 100%;
  transition: var(--transition);
}

.split-img-wrapper:hover img {
  transform: scale(1.05);
}

.split-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
}

.split-list {
  margin: 24px 0;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.split-list li i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 4px;
}

.split-list li h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.split-list li p {
  font-size: 0.9rem;
  color: #546E7A;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.lifestyle-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 280px;
  transition: var(--transition);
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.lifestyle-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  transition: var(--transition);
}

.lifestyle-card:hover img {
  transform: scale(1.08);
}

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

.lifestyle-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.lifestyle-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.lifestyle-card-desc {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 300;
}

.grid-col-2 {
  grid-column: span 2;
}

.grid-row-2 {
  grid-row: span 2;
  height: 584px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: #78909C;
  margin-bottom: 12px;
  font-weight: 500;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta i {
  color: var(--primary);
}

.article-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-title:hover {
  color: var(--primary);
}

.stats-counter-section {
  background-color: var(--text-color);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  position: relative;
}

.counter-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-right-color: var(--secondary);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: spinCircle 10s linear infinite;
  background-color: rgba(255, 255, 255, 0.02);
}

.counter-circle-content {
  animation: keepUpright 10s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.counter-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #90A4AE;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials {
  position: relative;
}

.testimonial-card {
  padding: 40px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(30, 136, 229, 0.1);
  position: absolute;
  top: 30px;
  left: 30px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #455A64;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.author-info p {
  font-size: 0.85rem;
  color: #78909C;
}

.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1565C0 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.newsletter-content {
  max-width: 650px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.newsletter-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 36px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  background-color: var(--white);
  padding: 6px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 24px;
  font-size: 1rem;
  color: var(--text-color);
}

.newsletter-btn {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: #2E7D32;
  box-shadow: 0 0 15px rgba(46, 125, 50, 0.4);
}

.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.contact-preview-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(30, 136, 229, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.95rem;
  color: #546E7A;
}

.map-placeholder {
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background-color: var(--light-gray);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background-color: #1A2327;
  color: #B0BEC5;
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--primary);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

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

.page-banner {
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.9), rgba(38, 50, 56, 0.95)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
}

.page-banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-banner-breadcrumbs {
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.8;
}

.page-banner-breadcrumbs a:hover {
  color: var(--accent);
}

.page-banner-breadcrumbs span {
  margin: 0 8px;
  color: var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 50px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 10px;
}

.sidebar-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.sidebar-hours li span:last-child {
  font-weight: 600;
  color: var(--primary);
}

.contact-form-card {
  background-color: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.95rem;
  color: #546E7A;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-control {
  padding: 12px 18px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 0.95rem;
  background-color: var(--bg-color);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(30, 136, 229, 0.1);
}

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

.faq-section {
  margin-top: 80px;
}

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

.faq-item {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-color);
}

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

.faq-icon {
  font-size: 0.9rem;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  background-color: #FAFAFA;
}

.faq-answer p {
  padding: 16px 0;
  font-size: 0.95rem;
  color: #546E7A;
  line-height: 1.7;
}

.faq-item.active .faq-question {
  color: var(--primary);
  border-bottom: 1px solid var(--light-gray);
}

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

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 50, 56, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.search-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-modal-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.search-modal-content {
  width: 100%;
  max-width: 600px;
  padding: 24px;
  text-align: center;
}

.search-modal-title {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.search-modal-form {
  display: flex;
  background-color: var(--white);
  padding: 6px;
  border-radius: 50px;
}

.search-modal-input {
  flex: 1;
  border: none;
  padding: 14px 24px;
  font-size: 1.1rem;
  background: transparent;
  color: var(--text-color);
}

.search-modal-btn {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
}

.search-modal-btn:hover {
  background-color: #1565C0;
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.scale-in {
  animation: scaleIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spinCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes keepUpright {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats-row {
    margin-top: -30px;
    padding: 0 24px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .grid-col-2 {
    grid-column: span 1;
  }
  .grid-row-2 {
    grid-row: span 1;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  .nav-menu {
    display: none;
  }
  .search-trigger, .nav-actions .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    min-height: 60vh;
    padding: 80px 0;
    /* Ensure hero always fills the viewport width */
    width: 100%;
    max-width: 100vw;
    background-attachment: scroll; /* fixed bg causes issues on mobile */
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  /* Drawer takes exactly 50% width and sits on top without pushing content */
  .mobile-drawer {
    width: 50%;
    min-width: 220px;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .counter-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .grid-row-2 {
    height: 280px;
  }
  .testimonial-card {
    padding: 24px;
  }
  .contact-form-card {
    padding: 30px 20px;
  }
}

.hero-content {
  text-align: center;
  margin: 0 auto;
}

.hero-btns {
  justify-content: center;
}

/* Place stat cards below the hero section instead of overlapping it */
.hero-stats-row {
  margin-top: 40px !important;
}

@media (max-width: 1024px) {
  .hero-stats-row {
    margin-top: 30px !important;
  }
}

/* Display stat-cards in 2 columns and 2 rows on mobile phone screens */
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .stat-card {
    padding: 16px 12px !important;
    gap: 10px !important;
  }
  .stat-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.15rem !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }
  .stat-info h3 {
    font-size: 1.15rem !important;
  }
  .stat-info p {
    font-size: 0.8rem !important;
  }
}

/* Center card content in grid-3 layouts */
.grid-3 .card-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-3 .article-meta {
  justify-content: center;
}

/* Center lifestyle-card overlay content */
.lifestyle-card-overlay {
  text-align: center;
  align-items: center;
  justify-content: center !important;
}

/* Display counter items in 2 columns and 2 rows on mobile phone screens */
@media (max-width: 576px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .counter-circle {
    width: 110px !important;
    height: 110px !important;
    border-width: 3px !important;
    margin-bottom: 12px !important;
  }
  .counter-number {
    font-size: 1.6rem !important;
  }
  .counter-title {
    font-size: 0.8rem !important;
    margin-top: 6px !important;
  }
}

/* Make grid-2 display one card per row on mobile/phone screens */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr !important;
  }
}

/* Center card content in grid-2 layouts */
.grid-2 .card-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center contact-form submit button */
#contact-form {
  display: flex;
  flex-direction: column;
}

#contact-form button[type="submit"] {
  align-self: center;
  margin-top: 24px;
}

/* Center card-icon-badge at the top of card-img-wrapper — only on mobile */
@media (max-width: 768px) {
  .card-icon-badge {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}





/* ========== MOBILE DRAWER: CENTER NAV LINKS ========== */
@media (max-width: 768px) {
  .mobile-drawer {
    align-items: center;
    justify-content: flex-start;
  }

  .drawer-menu {
    align-items: center;
    text-align: center;
  }

  .drawer-link {
    text-align: center;
  }
}




