/* ========================= 
GLOBAL STYLES 
========================= 
*/ body 
{ margin: 0;
 font-family: Arial, sans-serif; 
color: #222;
 } 

.container
 { max-width: 1200px; 
margin: auto; 
padding: 0 20px; 
} 

/* ========================= 
HEADER
 ========================= 
*/ .site-header{ 
background: #ffffff; 
border-bottom: 1px solid #eaeaea; 
position: sticky; 
top: 0; z-index: 999; 
} 

.header-container { 
max-width: 1300px; 
margin: auto;
 padding: 18px 24px; 
display: flex; 
align-items: center;
 justify-content: space-between; 
} 

.site-logo img { 
height: 38px;
 } 

.main-nav .menu { 
list-style: none;
display: flex;
gap: 28px; 
margin: 0; 
padding: 0;
 } 

.main-nav .menu li {
position: relative; 
} 

.main-nav .menu li a { 
text-decoration: none;
 font-size: 15px; 
font-weight: 500; 
color: #000; 
padding: 8px 0; 
} 

/* Dropdown arrow */ 
.main-nav .menu li.menu-item-has-children > a::after { 
content: "▼"; 
font-size: 10px; 
margin-left: 6px; 
} 

/* Dropdown menu */
.main-nav .menu li ul { 
position: absolute; 
top: 100%; left: 0; 
background: #ffffff; 
min-width: 200px; 
padding: 10px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
opacity: 0; 
visibility: hidden; 
transition: 0.2s ease; 
z-index: 99;
 } 

.main-nav .menu li:hover ul { 
opacity: 1; 
visibility: visible; 
} 

.main-nav .menu li ul li { 
padding: 8px 20px; 
}

 .main-nav .menu li ul li a { 
color: #000; 
font-size: 14px; 
} 

.site-logo img {
    max-height: 110px;
    width: auto;
}

/* =========================
 FOOTER CTA STRIP 
========================= */ 
.footer-cta { 
background: #fff3f0; 
padding: 40px 20px; 
}

.footer-cta-inner { 
max-width: 1200px; 
margin: auto; 
display: flex; 
align-items: center; 
justify-content: space-between; 
}

.footer-cta h2 { 
margin: 0; 
font-size: 32px; 
color: #222; 
} 

.cta-btn { 
background: #ff0000;
color: #ffffff; 
padding: 14px 30px; 
font-size: 16px; 
text-decoration: none; 
border-radius: 6px; 
font-weight: 600; 
} 

/* ========================= 
MAIN FOOTER 
========================= */ 
.footer-main { 
background: #06402B; 
color: #ffffff;
padding: 70px 20px; 
}

.footer-container { 
max-width: 1200px; 
margin: auto; 
display: grid; 
grid-template-columns: repeat(4, 1fr); 
gap: 40px; 
} 

.footer-col h4 { 
color: #ffc107; 
margin-bottom: 16px; 
}

 .footer-col h5 { 
margin-top: 30px; 
color: #ffc107; 
}

 .footer-col p { 
line-height: 1.6; 
font-size: 15px; 
} 

.footer-col ul { 
list-style: none; 
padding: 0; 
margin: 0; 
} 

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

 .footer-col ul li a { 
color: #ffffff; 
text-decoration: none; 
font-size: 15px;
 } 

.footer-highlight { 
color: #ffc107; 
font-weight: 500; 
} 

/* Social Icons */ 
.footer-social a { 
display: inline-block; 
margin-right: 10px; 
background: #ffffff; 
color: #06402B; 
padding: 6px 10px; 
border-radius: 4px; 
font-size: 14px; 
text-decoration: none;
 } 

/* ========================= 
COPYRIGHT BAR
 ========================= 
*/ .footer-bottom { 
background: #043524; 
color: #ffffff; 
text-align: center; 
padding: 15px; 
font-size: 14px; 
} 

/* ========================= 
RESPONSIVE
 ========================= 
*/ @media (max-width: 768px) { 

.footer-cta-inner { 
flex-direction: column; 
text-align: center;
 gap: 20px; 
} 

.footer-container { 
grid-template-columns: 1fr; 
} 

.main-nav .menu { 
gap: 16px; 
flex-wrap: wrap; 
} 
}

/* =========================
   VIDEO HERO (FULLSCREEN)
========================= */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video background */
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  transform: translate(-50%, -50%);
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* Content */
.video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.video-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.video-content h1 span {
  display: block;
  font-weight: 800;
}

.hero-divider {
  width: 80px;
  height: 4px;
  background: #ffc107;
  margin: 20px 0;
}

.video-content p {
  font-size: 18px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* =========================
   HERO CTA BUTTON (SMALL)
========================= */
.hero-btn {
  display: inline-block;
  padding: 8px 22px;            /* smaller size */
  border: 2px solid #ffc107;    /* thin yellow border */
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;              /* smaller text */
  font-weight: 600;
  letter-spacing: 1px;
  background: transparent;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  background: #ffc107;
  color: #000000;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .video-bg iframe {
    display: none;
  }

  .video-hero {
    background: #000 url('/wp-content/themes/successlife-custom/assets/images/hero-fallback.jpg') center/cover no-repeat;
  }

  .video-content h1 {
    font-size: 34px;
  }
}

/* =========================
   FEATURED IN - PREMIUM
========================= */

.featured-in-section {
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  padding: 80px 5%;
  margin-top: 0;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.featured-container h3 {
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #111;
}

.featured-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
}

.featured-logos img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  filter: none;
  opacity: 1;
}

.featured-logos img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Tablet */
@media (max-width: 992px) {
  .featured-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .featured-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .featured-logos img {
    max-height: 45px;
    padding: 15px;
  }
}

/* TRANSFORM SECTION */

.transform-section {
  background: #f4ebe4;
  padding: 100px 5%;
}

.transform-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.transform-content {
  flex: 1;
  max-width: 600px;
}

.transform-content h2 {
  color: #ff1a1a;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.transform-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.transform-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #444;
}

.transform-btn {
  display: inline-block;
  background: #ff1a1a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.transform-btn:hover {
  background: #e60000;
}

.transform-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* FEATURES SECTION */

.transform-features {
  background: #ffffff;
  padding: 60px 5%;
}

.features-wrapper {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-box {
  flex: 1;
  min-width: 150px;
}

.feature-box img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
}


/* RESPONSIVE */

@media (max-width: 768px) {

  .transform-container {
    flex-direction: column;
    text-align: center;
  }

  .transform-content h2 {
    font-size: 36px;
  }

  .transform-content h3 {
    font-size: 22px;
  }

  .features-wrapper {
    justify-content: center;
  }
}


/* TESTIMONIAL SECTION */

.testimonials-section {
  background: #fff3f0;
  padding: 100px 5%;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 60px;
}

.top-strip {
  display: inline-block;
  background: #ffd400;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.testimonials-header h2 {
  font-size: 48px;
  font-weight: 800;
}

.testimonials-header h2 span {
  color: red;
}

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

.testimonial-card {
  background: #f5f1ef;
  padding: 35px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 14px;
  color: #555;
}


/* RESPONSIVE */

@media (max-width: 992px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .testimonials-header h2 {
    font-size: 34px;
  }
}

/* TESTIMONIAL SECTION */

.testimonials-section {
  background: #ffcbd1;
  padding: 100px 5%;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 60px;
}

.top-strip {
  display: inline-block;
  background: #ffd400;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.testimonials-header h2 {
  font-size: 48px;
  font-weight: 800;
}

.testimonials-header h2 span {
  color: red;
}

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

.testimonial-card {
  background: #f5f1ef;
  padding: 35px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 14px;
  color: #555;
}


/* RESPONSIVE */

@media (max-width: 992px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .testimonials-header h2 {
    font-size: 34px;
  }
}

/* ===============================
   BENEFITS SECTION
================================ */

.benefits-section {
  background: #f5f5f5;
  padding: 100px 5%;
  text-align: center;
}

.benefits-header {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.benefits-tag {
  display: inline-block;
  background: #e8d9d4;
  padding: 6px 18px;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.benefits-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.benefits-header p {
  font-size: 18px;
  color: #444;
}

/* GRID FIX HERE */

.benefits-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #e9dcd6;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-card:nth-child(2) {
  background: #d9c4b6;
}

.benefit-card:nth-child(3) {
  background: #e4d3cf;
}

.benefit-card:nth-child(4) {
  background: #dcc7b9;
}

.benefit-card img {
  width: 50px;
  margin: 0 auto 20px auto;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ===============================
   RESPONSIVE FIX
================================ */

/* Tablet */
@media (max-width: 992px) {
  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .benefits-container {
    grid-template-columns: 1fr;
  }

  .benefits-header h2 {
    font-size: 28px;
  }

  .benefits-header p {
    font-size: 15px;
  }

  .benefit-card {
    padding: 30px 20px;
  }
}

/* ===============================
   AREAS SECTION
================================ */

.areas-section {
  background: #e6d7d5;
  padding: 100px 5%;
  text-align: center;
}

.areas-header {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.areas-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.areas-header p {
  font-size: 16px;
  color: #444;
}

/* GRID */

.areas-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.area-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.area-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.area-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.area-card p {
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* BUTTON */

.areas-btn {
  display: inline-block;
  background: red;
  color: #fff;
  padding: 14px 35px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.areas-btn:hover {
  background: #cc0000;
}


/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
  .areas-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .areas-container {
    grid-template-columns: 1fr;
  }

  .areas-header h2 {
    font-size: 28px;
  }

  .area-card img {
    height: 200px;
  }
}

/* =====================================
   FAQ SECTION
===================================== */

.faq-section {
  background: #eeeeee;
  padding: 100px 5%;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
}

.faq-title:after {
  content: "";
  width: 80px;
  height: 3px;
  background: #000;
  display: block;
  margin: 15px auto 0;
}

/* GRID */

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

/* ITEM */

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  border: none;
  background: #ffffff;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding: 15px 0;
  font-size: 15px;
  color: #444;
}

/* ACTIVE */

.faq-item.active .faq-answer {
  max-height: 200px;
}

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


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
  }
}