/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9fafc;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #004080, #0073e6);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: transform 0.3s;
}
.header-logo:hover {
  transform: rotate(10deg) scale(1.1);
}

header h1 {
  font-size: 28px;
  font-weight: bold;
}

header p {
  font-size: 14px;
  opacity: 0.9;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  background: url('') center/cover no-repeat;
  color: #fff;
  border-bottom: 5px solid #004080;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.6);
  animation: fadeInDown 1.5s ease;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20b955;
  transform: scale(1.05);
}

.btn-call {
  background: #ff6600;
  color: #fff;
}
.btn-call:hover {
  background: #e65c00;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 50px 20px;
  animation: fadeInUp 1.2s ease;
}

h3 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 25px;
  color: #004080;
  position: relative;
}
h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0073e6;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Images Grid */
.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.images-grid div {
  text-align: center;
  transition: transform 0.3s;
}
.images-grid img {
  width: 100%;
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.images-grid div:hover {
  transform: translateY(-5px);
}
.images-grid img:hover {
  transform: scale(1.05);
}
.images-grid p {
  margin-top: 8px;
  font-weight: bold;
  color: #0073e6;
}

/* Reviews */
.reviews {
  background: #eef5ff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
}
.review {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  margin: 15px auto;
  max-width: 550px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.review:hover {
  transform: scale(1.05);
}

/* Preferences */
.preferences {
  background: #fff8e1;
  padding: 25px;
  border-radius: 10px;
  max-width: 750px;
  margin: 0 auto;
  border: 1px solid #ffe082;
  text-align: center;
  transition: 0.3s;
}
.preferences:hover {
  background: #ffecb3;
}

/* Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.tip {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.tip:hover {
  transform: translateY(-5px);
  background: #eef6ff;
}

/* Form Section */
.form-section {
  text-align: center;
}
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}
textarea {resize: none;}
button {
  padding: 14px;
  background: #004080;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #0073e6;
  transform: scale(1.03);
}

/* Footer */
footer {
  background: #002244;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: pulse 1.8s infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.15);
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
}
@keyframes pulse {
  0% {box-shadow: 0 0 0 0 rgba(37,211,102,0.7);}
  70% {box-shadow: 0 0 0 20px rgba(37,211,102,0);}
  100% {box-shadow: 0 0 0 0 rgba(37,211,102,0);}
}

/* Animations */
@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}


.service-single {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.service-single img {
  flex: 1 1 350px;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-details {
  flex: 1 1 350px;
}

.service-details p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-details h4 {
  margin: 10px 0;
  color: #004080;
}

.service-details ul {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.6;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.tip {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tip:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.18);
}

.tip img {
  width: 160px;  /* Bigger */
  height: 130px; /* Bigger */
  border-radius: 10px;
  object-fit: cover;
}

.tip h4 {
  margin: 0;
  color: #004080;
  font-size: 20px;
}

.tip p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.6;
}

.tip .full-text {
  display: none;
}

.read-more {
  background: #004080;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  margin-top: 6px;
  transition: background 0.3s;
}

.read-more:hover {
  background: #0066cc;
}


/* Modern Header */
.site-header {
  position: relative;
  height: 80vh;
  background: url('females\ cleaner\ 3.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.site-header .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.header-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.header-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1da851;
  transform: translateY(-3px);
}

/* Logo Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Sparkle Section */
.sparkle-hero {
  padding: 60px 20px;
  background: #f9f9f9;
}

.sparkle-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.sparkle-image {
  flex: 1 1 45%;
}

.sparkle-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.sparkle-text {
  flex: 1 1 50%;
}

.sparkle-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #004080;
}

.sparkle-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* Mobile friendly */
@media(max-width: 768px) {
  .sparkle-container {
    flex-direction: column;
    text-align: center;
  }
  .sparkle-text h2 {
    font-size: 26px;
  }
}


/* Preferences Modern Section */
.preferences-modern {
  padding: 60px 20px;
  background: #eef6ff;
}

.preferences-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.preferences-image {
  flex: 1 1 45%;
}

.preferences-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.preferences-text {
  flex: 1 1 50%;
}

.preferences-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #004080;
}

.preferences-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.preferences-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.preferences-text ul li {
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: #004080;
}

.preferences-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #25D366;
  font-weight: bold;
}

/* Mobile Responsive */
@media(max-width: 768px) {
  .preferences-container {
    flex-direction: column;
    text-align: center;
  }
  .preferences-text h2 {
    font-size: 24px;
  }
}
#services {
  padding: 20px;
}

#services h3 {
  text-align: center;
  margin-bottom: 20px;
}

.service-single {
  display: flex;
  flex-direction: column; /* Mobile: stack image + text */
  align-items: center;
  gap: 15px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.service-single img {
  max-width: 100%;  /* Responsive image */
  height: auto;     /* Keeps aspect ratio */
  border-radius: 10px; /* Optional: soft corners */
}

.service-details {
  text-align: center; /* Center text on mobile */
  padding: 10px;
}

@media (min-width: 768px) {
  .service-single {
    flex-direction: row; /* Desktop: image beside text */
    align-items: flex-start;
  }

  .service-details {
    text-align: left;
    padding-left: 20px;
  }
}

/* Hero Section */
.site-header {
  position: relative;
  height: 100vh;
  background: url("samenbeng pic/females cleaner kitchen.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Dark Overlay for Readability */
.site-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.6); /* Semi-transparent dark */
  z-index: 1;
}

/* Content */
.header-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeInUp 1.2s ease;
}

.header-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ecf0f1;
}

/* Call-to-Action Button */
.cta-btn {
  background: #27ae60;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
}

.cta-btn:hover {
  background: #2ecc71;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.7);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 1.8rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

.site-header .features {
  margin: 20px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  text-align: left;
  display: inline-block;
  background: rgba(0,0,0,0.5);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.site-header .features p {
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}





/* Background overlay for style */
.site-header {
  position: relative;
  text-align: center;
  color: #fff;
  background: url("females\ background.jpg") no-repeat center/cover;
  padding: 80px 20px;
}

.site-header .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.site-header .header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.site-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-header .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 400;
  opacity: 0.9;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
}

/* Call to Action Button */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #1da851;
  transform: scale(1.05);
}

.appointment-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.appointment-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* mobile friendly */
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.appointment-text {
  flex: 1 1 400px;
}

.appointment-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.appointment-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #444;
}

.appointment-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #25D366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.appointment-btn:hover {
  background: #1da851;
  transform: scale(1.05);
}

/* Image styling */
.appointment-image {
  flex: 1 1 400px;
  text-align: center;
}

.appointment-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.appointment-image img:hover {
  transform: scale(1.03);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .appointment-container {
    flex-direction: column;
    text-align: center;
  }

  .appointment-text h2 {
    font-size: 1.6rem;
  }
}

.work-section {
  padding: 60px 20px;
  background: #fefefe;
  text-align: center;
}

.work-section h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
  position: relative;
  display: inline-block;
}

.work-section h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #25D366;
  margin: 8px auto 0;
  border-radius: 2px;
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.images-grid div {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.images-grid div:hover {
  transform: translateY(-5px);
}

.images-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.images-grid p {
  margin: 12px 0;
  font-weight: 600;
  color: #444;
}

/* Services List */
.services-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.services-list h4 {
  font-size: 1.4rem;
  margin: 25px 0 10px;
  color: #25D366;
  border-left: 4px solid #25D366;
  padding-left: 10px;
}

.services-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.services-list li {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  transition: background 0.3s ease;
}

.services-list li:hover {
  background: #eaf8ef;
}


.work-section {
  padding: 60px 20px;
  background: #fefefe;
  text-align: center;
}

.work-section h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
  position: relative;
  display: inline-block;
}

.work-section h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #25D366;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Images Grid */
.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.images-grid div {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.images-grid div:hover {
  transform: translateY(-5px);
}

.images-grid img {
  width: 100%;
  height: 220px; /* fixed height for uniform shape */
  object-fit: cover;
}

.images-grid p {
  margin: 12px 0;
  font-weight: 600;
  color: #444;
}

/* Services List */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #25D366;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  padding: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.service-card li:last-child {
  border-bottom: none;
}

.service-card li:hover {
  color: #25D366;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .images-grid img {
    height: 180px;
  }
}

/* Header Background */
.site-header {
  position: relative;
  background: url("samenbeng-pic/header-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.site-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.header-content .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Call to Action Button */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #1da851;
  transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 1.8rem;
  }
  .header-content .subtitle {
    font-size: 1rem;
  }
  .features-grid {
    grid-template-columns: 1fr; /* stack items on mobile */
  }
}

/* Header Background */
.site-header {
  position: relative;
  background: url("samenbeng-pic/header-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 40px 10px; /* reduce padding for smaller screens */
  min-height: 100vh; /* ensures enough height for content */
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Text Styling */
.header-content h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.header-content .subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f1f1f1;
  text-align: center;
  max-width: 700px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* Call to Action Button */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.cta-btn:hover {
  background: #1da851;
  transform: scale(1.05);
}

/* Mobile Fix */
@media (max-width: 768px) {
  .site-header {
    padding: 40px 15px;
    min-height: auto; /* remove fixed height on mobile */
  }

  .header-content h1 {
    font-size: 1.6rem;
  }

  .header-content .subtitle {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: 1fr; /* stack features */
  }

  .cta-btn {
    width: 100%; /* full width button for mobile */
    text-align: center;
    font-size: 1rem;
  }
}

/* Header Background */
.site-header {
  position: relative;
  background: url("samenbeng-pic/header-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.site-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content Always On Top */
.header-content {
  position: relative;
  z-index: 2; /* keeps text & button above overlay */
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Text */
.header-content h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.header-content .subtitle {
  font-size: 1.1rem;
  color: #f1f1f1;
  text-align: center;
  max-width: 700px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  width: 100%;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

/* Call to Action Button */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #1da851;
  transform: scale(1.05);
}

/* Mobile Fix */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 1.6rem;
  }

  .header-content .subtitle {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: 1fr; /* stack items */
  }

  .cta-btn {
    width: 100%; /* full width button */
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
  }
}

/* Header Background */
.site-header {
  position: relative;
  background: url("females\ background.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 10px 20px 10px 20px; /* top + bottom padding */
}

.site-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content Always On Top */
.header-content {
  position: relative;
  z-index: 2; /* keeps text & button above overlay */
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding-top: 5px;   /* extra top spacing */
  padding-bottom: 5px; /* extra bottom spacing */
}

/* Heading */
.header-content h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Subtitle */
.header-content .subtitle {
  font-size: 1.1rem;
  color: #f1f1f1;
  text-align: center;
  max-width: 700px;
  margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

/* Call to Action Button */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #1da851;
  transform: scale(1.05);
}

/* Mobile Fix */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 1.6rem;
  }

  .header-content .subtitle {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: 1fr; /* stack items */
  }

  .cta-btn {
    width: 100%; /* full width button */
    font-size: 1rem;
    margin-top: 10px;
  }
}
