.hero {
  position: relative;
  height: 100vh;
  /* Use relative viewport heights instead of a fixed px value so the hero
     scales nicely on different screens */
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
  text-align: center;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
 
  /* ensure the image fills the hero area without stretching */
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 1; /* fully visible */
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* lighter overlay so underlying image shows through better */
  background: linear-gradient(to top, rgba(255,255,255,0.45), rgba(255,255,255,0.30), rgba(255,255,255,0.15));
  pointer-events: none;
}

/* Utility when using a CSS background-image on the hero element */
.hero.bg-cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Floating Orbs */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: #07d83b;
  top: 15%;
  left: 5%;
  animation-duration: 18s;
}

.orb2 {
  width: 350px;
  height: 350px;
  background: #07d83b;
  top: 55%;
  left: 75%;
  animation-duration: 22s;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.hero-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-logo {
  height: 600px;
  margin-top: -130px;
  margin-bottom: -170px;
  filter: drop-shadow(0px 5px 15px rgba(0, 119, 255, 0.2));
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 2.1rem;
  color: #000508;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* Buttons */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.btn {
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 1px;
}

.btn-primary {
  background: rgb(217, 143, 32);
  color: white;
  box-shadow: 0px 4px 12px rgba(14, 89, 34, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 30px #e77454;
}

.btn-outline {
  border: 2px solid rgb(217, 143, 32);
  color: rgb(0, 0, 0);
  background: transparent;
}

.btn-outline:hover {
  background: rgb(217, 143, 32);
  color: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 119, 255, 0.2);
  transform: scale(1.05);
}
@media (max-width: 768px) {

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;   /* 🔥 THIS centers buttons */
    justify-content: center;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 320px;      /* keeps it visually centered */
    text-align: center;
  }
}


/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {

  .hero {
    min-height: 70vh;
    padding: 1rem 0;
  }

  .hero-logo {
    height: 300px;
    margin-top: -240px;
  }

  .hero-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 1rem;
  }

  .floating-orb {
    filter: blur(60px);
    opacity: 0.12;
  }

  .orb1 {
    width: 220px;
    height: 220px;
    top: 10%;
    left: -20%;
  }

  .orb2 {
    width: 180px;
    height: 180px;
    top: 65%;
    left: 60%;
  }
}

/* Default: no break on desktop */
.mobile-break {
  display: inline;
}

/* Mobile only: force line break */
@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 50px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 32px;
}

/* DESKTOP: LEFT TEXT / RIGHT IMAGE */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
}

/* TEXT */
.about-left {
  max-width: 620px;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: #0b1a2c;
}

.about-description {
  font-size: 1.05rem;
  line-height: 2;
  color: #4b5563;
  text-align: justify;
  text-justify: inter-word;
}

/* IMAGE */
.about-right {
  display: flex;
  justify-content: center;
}

.about-right img {
  width: 100%;
  max-width: 520px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: -30px 30px 80px rgba(0,0,0,0.25);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-right img {
    max-width: 480px;
    max-height: 360px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .about-section {
    padding: 24px 0;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about-right {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about-left {
    order: 2;
  }

  .about-title {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 14px;
  }

  .about-description {
    font-size: 1rem;
    line-height: 1.7;
    word-spacing: 0.4px;
    text-align: justify;
  }

  /* 🔥 FINAL MOBILE IMAGE FIX */
  .about-right img {
    width: 100%;
    max-width: 500px;
    height: auto;

    aspect-ratio: 4 / 5;     /* controls portrait dominance */
    max-height: 350px;       /* hard cap */

    object-fit: cover;
    object-position: center;

    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 360px) {

  .about-right img {
    max-width: 360px;
    max-height: 300px;
  }
}


/* SECTION */
.contact-section {
  padding: 90px 24px;
  background: #ffffff;
}

.contact-container {
  max-width: 1300px;
  margin: auto;
}

/* WRAPPER */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* INFO */
.contact-info h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 36px;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.contact-details i {
  width: 42px;
  height: 42px;
  background: rgb(217, 143, 32);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-details a {
  color: #031428;
  text-decoration: none;
}

/* ===============================
   GLOBAL FIX (IMPORTANT)
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===============================
   FORM CARD
================================ */
.contact-form-card {
  background: linear-gradient(135deg, #f9e3b9, #ffffff);
  padding: 50px 42px;
  border-radius: 26px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.contact-form-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 36px;
  color: #031428;
}

/* ===============================
   FORM LAYOUT
================================ */
.enhanced-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* ===============================
   FIELD
================================ */
.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  font-size: 1rem;
  border-radius: 14px;
  border: 2px solid #dcdcdc; /* FIXED BORDER */
  background: #ffffff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* TEXTAREA */
.textarea-field textarea {
  min-height: 150px;
  resize: none;
}

/* ===============================
   LABEL (BORDER SAFE)
================================ */
.field label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: #777;
  background: linear-gradient(#ffffff 50%, transparent 50%);
  padding: 0 6px;
  pointer-events: none;
  transition: 0.3s ease;
}

/* ===============================
   FOCUS STATE (NO JUMP)
================================ */
.field input:focus,
.field textarea:focus {
  border-color: rgb(217, 143, 32);
  box-shadow: 0 0 0 3px rgba(217, 143, 32, 0.18);
}

/* FLOAT LABEL */
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  top: -9px;
  font-size: 0.75rem;
  color: rgb(217, 143, 32);
}

/* ===============================
   BUTTON
================================ */
.submit-btn {
  margin-top: 12px;
  padding: 16px;
  border-radius: 40px;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  background: rgb(217, 143, 32);
  transition: all 0.35s ease;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgb(217, 143, 32);
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .contact-form-card {
    padding: 40px 26px;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
}

/* =====================================
   BRAND PHILOSOPHY – CONTENT LEFT / LOGO RIGHT
===================================== */
.brand-philosophy-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
}

.brand-philosophy-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 10px;
}

/* LEFT CONTENT */
.philosophy-content {
  max-width: 650px;
}

.philosophy-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgb(217, 143, 32);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.philosophy-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 22px;
}

.philosophy-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #000000;
  text-align: justify;
}

.philosophy-text strong {
  color: #000000;
}

/* RIGHT LOGO */
.philosophy-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.philosophy-logo {
  max-width: 620px;
  width: 100%;
  height: auto;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 1024px) {
  .brand-philosophy-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .philosophy-content {
    max-width: 100%;
  }

  .philosophy-text {
    text-align: center;
  }

  .philosophy-logo {
    max-width: 260px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .brand-philosophy-section {
    padding: 60px 0;
  }

  .philosophy-title {
    font-size: 2.1rem;
  }

  .philosophy-logo {
    max-width: 220px;
  }
}
/* =====================================
   BRAND PHILOSOPHY – MOBILE LOGO FIRST
===================================== */
@media (max-width: 768px) {

  .brand-philosophy-container {
    grid-template-columns: 1fr;
  }

  /* LOGO FIRST */
  .philosophy-logo-wrap {
    order: 1;
    margin-bottom: 28px;
  }

  /* TEXT AFTER */
  .philosophy-content {
    order: 2;
  }

  .philosophy-text {
    text-align: justify;
  }

  .philosophy-title {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-top: 5px;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: rgb(217, 143, 32);
  float: left;
  width: 44px;
  height: 44px;
  background: #ecf9f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37423b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #657a6d;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #3c9e2f;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #149e1d;
}

.contact .php-email-form button[type=submit] {
  background:  #149e1d;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #149e1d;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ================= JOURNAL SECTION ================= */

.journal-section {
  padding: 80px 24px;
  background:linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
}

.journal-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADER */
.journal-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.journal-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0e0e0e;
  margin-bottom: 14px;
}

.journal-header p {
  font-size: 1.1rem;
  color: #0f0f0f;
  line-height: 1.7;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

/* CARD */
.blog-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.blog-card-content {
  padding: 30px;
}

.blog-tag {
  display: inline-block;
  background: rgb(217, 143, 32);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 14px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 22px;
}

/* READ MORE */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgb(217, 143, 32);
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover {
  color:#e77454;
}

.read-more:hover i {
  transform: translateX(6px);
}

/* CTA */
.journal-cta {
  margin-top: 70px;
  text-align: center;
}

.btn-journal {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, #dedede);
  color: rgb(217, 143, 32);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 30px rgb(217, 143, 32);
  transition: all 0.3s ease;
}

.btn-journal:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px #e77454;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-header h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .journal-section {
    padding: 80px 20px;
  }

  .journal-header {
    margin-bottom: 50px;
  }

  .journal-header h2 {
    font-size: 2.1rem;
  }

  .journal-header p {
    font-size: 1rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog-card img {
    height: 220px;
  }

  .journal-cta {
    margin-top: 50px;
  }
}


/* CONTACT CTA SECTION */
.contact-cta-section {
  padding: 90px 24px;
  background: linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
  position: relative;
  overflow: hidden;
}

/* Decorative shapes */
.contact-cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-cta-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* CONTENT */
.contact-cta-content {
  max-width: 760px;
  margin: auto;
  color: #ffffff;
  animation: fadeInUp 1s ease;
}

.cta-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background:rgb(217, 143, 32);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.contact-cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-cta-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 36px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: #ffffff;
  color:rgb(217, 143, 32);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* SECONDARY */
.cta-btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-btn.secondary:hover {
  background: #ffffff;
  color: rgb(217, 143, 32);
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-cta-content h2 {
    font-size: 2.2rem;
  }

  .contact-cta-content p {
    font-size: 1.05rem;
  }
}



/* ================= WHY CHOOSE US ================= */
.why-us-section {
  padding: 90px 24px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #031428;
}

.why-us-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-us-card {
  background: linear-gradient(
    135deg,
    #fffaf2,
    #f9ebe4,
    #ffffff
  );
  padding: 38px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #e77454;
  transition: 0.35s ease;
}

.why-us-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgb(217, 143, 32);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #ffffff;
  box-shadow: 0 14px 34px #aa6f34;
}

/* ================= MOBILE – FINAL ================= */
@media (max-width: 768px) {

  body {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-container {
    padding: 0;
    max-width: 100%;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 26px;
    width: 100%;
  }

  .about-right,
  .about-left {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  /* IMAGE FIRST */
  .about-right {
    order: 1;
  }

  .about-left {
    order: 2;
  }

  .about-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
  }

  /* JUSTIFIED MOBILE TEXT (SAFE) */
  .about-description {
    width: 100%;
    max-width: 100%;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.85;
    word-spacing: 0.6px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1.05rem;
  }
}
/* =========================================
   DESKTOP – REDUCE SIDE SPACING / FIT SCREEN
========================================= */
@media (min-width: 1200px) {

  /* Allow wider content on large screens */
  .about-container,
  .mission-vision-wrapper,
  .why-us-grid,
  .about-hero-content {
    max-width: 1400px; /* was 1200 */
  }

  /* Reduce excessive side padding */
  .about-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .mission-vision-section,
  .why-us-section {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* EXTRA LARGE SCREENS (4K / ultrawide) */
@media (min-width: 1600px) {

  .about-container,
  .mission-vision-wrapper,
  .why-us-grid,
  .about-hero-content {
    max-width: 1600px;
  }
}

/* ================= SINGLE FEATURED PRODUCT ================= */

/* .featured-product {
  padding: 120px 24px;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
} */

.featured-product-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.featured-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.featured-product-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

/* CONTENT */
.featured-product-content {
  max-width: 520px;
}

.product-badge {
  display: inline-block;
  background: rgb(217, 143, 32);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.featured-product-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 14px;
}

.product-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 20px;
}

.product-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}

/* CTA */
.product-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: rgb(217, 143, 32);
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-explore i {
  transition: transform 0.3s ease;
}

.product-explore:hover {
  color: #e77454;
}

.product-explore:hover i {
  transform: translateX(6px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .featured-product-grid {
    gap: 50px;
  }

  .featured-product-content h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .featured-product {
    padding: 80px 20px;
  }

  .featured-product-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-product-image img {
    height: 360px;
  }

  .featured-product-content {
    max-width: 100%;
  }

  .product-explore {
    justify-content: center;
  }
}
/* ================= SINGLE FEATURED PRODUCT (Luxury Gradient) ================= */

.featured-product {
  padding: 120px 24px;

  /* Luxury gradient */
  background: linear-gradient(
    135deg,
    #f6fbf7 0%,
    #ffffff 35%,
    #f2faf4 65%,
    #ffffff 100%
  );

  position: relative;
  overflow: hidden;
}
