/* =========================================================
   RESET
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================================
   GLOBAL
========================================================= */
body {
  font-family: "Lato", sans-serif;
  background: #f7f2e9;
  color: #ffffff;
  line-height: 1.6;
}

/* Universal section heading style */
section h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  z-index: 3;
}

section h2::after {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  background: #c1a160;
  margin: 16px auto 0;
  border-radius: 3px;
}

/* =========================================================
   HEADER
========================================================= */
/* --- FORCE NEW NAV + LOGO SIZE --- */

.header {
  padding: 8px 30px !important;
  height: 70px !important;           /* force smaller navbar */
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.logo {
  width: 110px !important;           /* force smaller logo */
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* Nav link spacing & size */
.header ul {
  display: flex !important;
  gap: 18px !important;
  align-items: center !important;
}

.header ul li a {
  font-size: 16px !important;         /* smaller text */
  font-weight: 600 !important;
  padding: 4px 0 !important;
}



/* =========================================================
   REFINED NAVBAR + PERFECT LOGO FIT
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 68px; /* slightly taller for logo space */

  background: linear-gradient(
    rgba(17, 30, 52, 0.93),
    rgba(25, 45, 75, 0.93)
  );

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 0 28px; /* reduced padding to tighten nav */
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 2px solid rgba(193,161,96,0.25);
  box-shadow: 0 8px 25px rgba(0,0,0,0.32);
}

/* LOGO — FIXED TO FIT INSIDE NAV PERFECTLY */
.logo {
  height: 48px !important;  /* controls actual size */
  width: auto !important;
  object-fit: contain !important;
  margin: 0;  
  padding: 0;
  display: block;

  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.35));
}


.header ul {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

.header ul li a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16.5px;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: 0.3s ease;
  letter-spacing: 0.4px;
}

.header ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #e2c98b, #c1a160);
  border-radius: 2px;
  transition: 0.3s ease;
}

.header ul li a:hover::after {
  width: 100%;
}

.header ul li a:hover {
  color: #e2c98b;
}


/* ===============================
   HAMBURGER MENU
================================ */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* =========================================
   MOBILE NAV + HAMBURGER (FINAL)
========================================= */
@media (max-width: 768px) {

  /* Header layout */
  .header {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 2000;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
  }

  /* Hide nav by default */
  nav {
    display: none;
    width: 100%;
  }

  /* Show nav when active */
  nav.active {
    display: block;
  }

  /* Mobile menu styling */
  nav ul {
    flex-direction: column;
    background: rgba(17, 30, 52, 0.97);
    padding: 25px 0;
    margin-top: 20px;
    border-radius: 14px;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
  }
}

/* =========================================================
   HERO SECTION (Matched to Navbar Colors)
========================================================= */

.hero {
  position: relative;
  height: 92vh;
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  /* EXACT MATCH to navbar */
  background: linear-gradient(
    rgba(17, 30, 52, 0.85),
    rgba(25, 45, 75, 0.78)
  );

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;

  padding: 40px 35px;
  border-radius: 20px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  box-shadow: 0 22px 55px rgba(0,0,0,0.45);
}

.hero-logo {
  width: 180px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 28px;
  color: #e6e6e6;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.hero-btn {
  padding: 14px 32px;
  font-size: 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Gold button */
.hero-btn.primary {
  background: #c1a160;
  border: 2px solid #c1a160;
  color: white;
}

.hero-btn.secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: white;
}

.hero-btn:hover {
  transform: translateY(-4px);
}


/* =========================================================
   ABOUT SECTION (Light Luxury)
========================================================= */
.about {
  padding: 130px 10%;
  background: #ffffff;
  color: #1f3557;
}

.about-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 55px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  border: 4px solid rgba(193,161,96,0.35);
  box-shadow: 0 22px 55px rgba(0,0,0,0.10);
}

.about-card {
  padding: 50px 45px;
  background: #ffffff;
  border-radius: 22px;
  border: 2px solid rgba(193,161,96,0.35);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.about-card p {
  font-size: 20px;
  color: #1f3557;
  line-height: 1.8;
}

/* =========================================================
   SERVICES SECTION (Dark Premium)
========================================================= */
.services {
  position: relative;
  padding: 130px 10%;
  background: url("images/services-bg.jpg") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17,30,52,0.92);
  z-index: 1;
}

.service-grid {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 45px;
}

.service-card {
  background: rgba(255,255,255,0.12);
  border-radius: 22px;
  border: 1.5px solid rgba(193,161,96,0.28);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  margin: 22px 0 10px;
  font-size: 26px;
}

.service-card p {
  padding: 0 25px 35px;
  font-size: 18px;
  color: #e8e8e8;
}

/* =========================================================
   WHY US (Light)
========================================================= */
.why {
  padding: 130px 10%;
  background: #ffffff;
  color: #1f3557;
}

.why ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 40px;
  margin-top: 70px;
  list-style: none;
}

.why li {
  padding: 35px 28px;
  background: #ffffff;
  border-radius: 22px;
  border: 1.5px solid rgba(193,161,96,0.40);
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  font-size: 20px;
  line-height: 1.7;
  display: flex;
  gap: 20px;
}

.why li::before {
  content: "✔";
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e2c98b, #c1a160);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* =========================================================
   APPLY SECTION — BEAUTIFUL, BRIGHT & BALANCED
========================================================= */
/* ============================= */
/*        APPLY SECTION          */
/* ============================= */

/* =========================================================
   APPLY SECTION — LUXURY RESPONSIVE VERSION
========================================================= */
.apply {
  position: relative;
  padding: 140px 10% 150px;
  margin-top: 120px;
  margin-bottom: 120px;

  background: url("images/apply-bg.jpg") center/cover no-repeat;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  z-index: 10;
}

/* Soft navy cinematic overlay */
.apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(31,53,87,0.42),
    rgba(31,53,87,0.32)
  );
  z-index: 1;
}

/* Heading */
.apply h2 {
  position: relative;
  z-index: 2;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 22px;
  color: #ffffff;
}

.apply h2::after {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  background: #c1a160;
  margin: 18px auto 0;
  border-radius: 3px;
}

/* Text */
.apply p {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 35px auto 60px;
  font-size: 22px;
  line-height: 1.75;
  color: #f4f4f4;
  padding: 0 20px;
}

/* Apply Button */
.apply-btn {
  position: relative;
  z-index: 2;
  padding: 18px 55px;
  background: linear-gradient(135deg, #c1a160, #e2c98b);
  color: white;
  font-weight: 700;
  border-radius: 14px;
  border: 2px solid #c1a160;
  font-size: 20px;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(193,161,96,0.28);
  transition: 0.35s ease;
}

.apply-btn:hover {
  background: transparent;
  color: #c1a160;
  border: 2px solid #c1a160;
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* =========================================================
   RESPONSIVE DESIGN — MOBILE + TABLET
========================================================= */
@media (max-width: 1024px) {   /* Tablet */
  .apply {
    padding: 120px 5% 130px;
  }
  .apply h2 {
    font-size: 42px;
  }
  .apply p {
    font-size: 20px;
    margin: 30px auto 50px;
  }
}

@media (max-width: 768px) {   /* Mobile */
  .apply {
    padding: 110px 5% 120px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .apply h2 {
    font-size: 36px;
  }
  .apply p {
    font-size: 18px;
    margin: 25px auto 45px;
  }
  .apply-btn {
    padding: 16px 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {   /* Small Mobile */
  .apply h2 {
    font-size: 32px;
  }
  .apply-btn {
    width: 100%;
    padding: 16px;
  }
}

/* =========================================================
   CONTACT SECTION (Bright White)
========================================================= */
.contact {
  position: relative;
  padding: 150px 10%;
  text-align: center;
  background: #ffffff;
  color: #1f3557;
}

.contact-card {
  background: #ffffff;
  padding: 70px 60px;
  max-width: 850px;
  margin: 80px auto;
  border-radius: 30px;
  border: 1px solid rgba(193,161,96,0.32);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.contact-form {
  display: grid;
  gap: 28px;
}

.contact-form input,
.contact-form textarea {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(31,53,87,0.22);
  font-size: 18px;
  color: #1f3557;
}

.contact-form button {
  padding: 20px;
  font-size: 20px;
  background: linear-gradient(135deg, #c1a160, #e2c98b);
  color: white;
  border-radius: 14px;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background: transparent;
  color: #c1a160;
  border: 2px solid #c1a160;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  width: 100%;
  padding: 80px 10%;
  text-align: center;
  background: #ffffff;
  color: #1f3557;
  border-top: 4px solid #c1a160;
}

.footer-links a {
  color: #1f3557;
  margin: 0 18px;
  font-size: 18px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #c1a160;
}

.footer-social a {
  font-size: 26px;
  margin: 0 14px;
  color: #1f3557;
}

.footer-social a:hover {
  color: #c1a160;
}
 
/* =========================================================
   RESPONSIVE — TABLET & MOBILE (CLEAN + CORRECT)
========================================================= */

/* =========================
   TABLET — 1024px and below
========================= */
@media (max-width: 1024px) {

  section h2 {
    font-size: 40px;
  }

  /* HERO */
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  /* LAYOUT SECTIONS */
  .about,
  .services,
  .why,
  .contact {
    padding: 100px 6%;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* APPLY */
  .apply {
    padding: 110px 8% 120px;
    margin: 100px 0;
  }

  .apply h2 {
    font-size: 42px;
  }

  .apply p {
    font-size: 20px;
    max-width: 700px;
  }

  .apply-btn {
    font-size: 19px;
    padding: 16px 45px;
  }
}

/* =========================
   MOBILE — 768px and below
========================= */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: auto;
    padding: 90px 20px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-logo {
    width: 150px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  /* ABOUT */
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 260px;
  }

  .about-card {
    padding: 30px;
  }

  /* SERVICES */
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card p {
    font-size: 16px;
  }

  /* WHY */
  .why ul {
    grid-template-columns: 1fr;
  }

  .why li {
    font-size: 18px;
  }

  /* APPLY */
  .apply {
    padding: 90px 6% 100px;
    margin: 80px 0;
  }

  .apply h2 {
    font-size: 36px;
  }

  .apply p {
    font-size: 18px;
    margin: 25px auto 45px;
  }

  .apply-btn {
    padding: 16px 40px;
    font-size: 18px;
  }

  /* CONTACT */
  .contact-card {
    padding: 35px 25px;
    margin: 50px auto;
  }

  /* FOOTER */
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}

/* =========================
   SMALL PHONES — 480px
========================= */
@media (max-width: 480px) {

  section h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .apply h2 {
    font-size: 30px;
  }

  .apply p {
    font-size: 17px;
  }

  .apply-btn {
    width: 100%;
    padding: 14px;
    font-size: 17px;
  }
}

/* =========================
   VERY SMALL PHONES — 360px
========================= */
@media (max-width: 360px) {

  .apply h2 {
    font-size: 26px;
  }

  .apply p {
    font-size: 16px;
  }

  .apply-btn {
    padding: 12px;
    font-size: 16px;
  }
}
