@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:wght@400;500;600;700&display=swap');

/* =====================
   RESET & VARIABLES
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:        #ff9d00;
  --amber-dark:   #cc7a00;
  --amber-tint:   #fff3d6;
  --near-white:   #fafafa;
  --white:        #ffffff;
  --text-dark:    #2d2d2d;
  --text-grey:    #6b7280;
  --whatsapp:     #25D366;
  --whatsapp-hover: #128C7E;
  --max-width:    1280px;
  --section-pad-desktop: 100px 32px;
  --section-pad-mobile:  50px 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* =====================
   BUTTONS (shared)
===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  gap: 8px;
}

/* Grey canvas on Virtual Office & Internet Cafe (WordPress body classes) */
body.page-virtual-office-services,
body.page-internet-cafe {
  background: var(--near-white);
}

/* Taller navbar on Luggage Storage page only */
body.page-luggage-storage-pricing .navbar {
  height: 88px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

body.page-luggage-storage-pricing .navbar .container {
  min-height: 88px;
}

body.page-luggage-storage-pricing .nav-logo-img {
  height: 64px;
  max-width: min(400px, 72vw);
}

body.page-luggage-storage-pricing .nav-links {
  justify-content: center;
  gap: 4px;
  height: 100%;
}

body.page-luggage-storage-pricing .nav-links li {
  display: flex;
  align-items: center;
}

body.page-luggage-storage-pricing .nav-links a {
  font-size: 17px;
  padding: 12px 16px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

body.page-luggage-storage-pricing .mobile-menu {
  top: 88px;
}

body.page-luggage-storage-pricing .nav-cta.btn {
  height: 48px;
  min-height: 48px;
  font-size: 15px;
  align-self: center;
}

@media (max-width: 768px) {
  body.page-luggage-storage-pricing .navbar {
    height: 68px;
    min-height: 68px;
  }
  body.page-luggage-storage-pricing .navbar .container {
    min-height: 68px;
  }
  body.page-luggage-storage-pricing .nav-logo-img {
    height: 50px;
    max-width: min(320px, 88vw);
  }
  body.page-luggage-storage-pricing .mobile-menu {
    top: 68px;
  }
}

.btn-primary { background: var(--amber); color: var(--white); }
.btn-primary:hover { background: var(--amber-dark); }

.btn-primary-on-amber { background: var(--white); color: var(--amber); }
.btn-primary-on-amber:hover { background: var(--near-white); }

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}
.btn-outline:hover { background: var(--amber); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--amber); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50px;
  height: 56px;
  padding: 0 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); }

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-whatsapp-cta:hover {
  background: var(--whatsapp-hover);
  color: var(--white);
}
.btn-whatsapp-cta svg {
  fill: var(--white);
  flex-shrink: 0;
}

/* =====================
   SECTION HEADING (default; homepage overrides in page CSS)
===================== */
.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.section-heading::before {
  content: '';
  display: block;
  width: 8px;
  height: 36px;
  background: var(--amber);
  flex-shrink: 0;
}

.section-heading h2 {
  font-size: 30px;
  font-weight: 700;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--amber);
  height: 80px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  max-width: min(380px, 72vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  padding: 8px 14px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--amber-tint); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--amber);
  padding: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-menu ul li a {
  display: block;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu ul li a.active { background: rgba(255,255,255,0.12); }

.mobile-menu .mobile-cta {
  margin-top: 16px;
  width: 100%;
  height: 48px;
  background: var(--white);
  color: var(--amber);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

/* =====================
   PAGE HERO (shared shell)
===================== */
.page-hero {
  background: var(--amber);
  padding: 64px 32px;
  text-align: center;
}

.page-hero-img {
  display: block;
  width: auto;
  margin: 0 auto 20px;
  object-fit: contain;
  border-radius: 12px;
}

/* Service page hero image dimensions: set per page in HTML (.sp-hero / .vo-hero / .ic-hero) */

.page-hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
}

/* =====================
   FOOTER
===================== */
footer {
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  padding: 60px 32px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-brand-text {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid var(--amber);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-grey);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.8;
}

.footer-col address a { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-grey);
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.whatsapp-float:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

/* =====================
   MOBILE (shared layout)
===================== */
@media (max-width: 768px) {
  .navbar { height: 64px; }
  .navbar .container { padding: 0 16px; }
  .nav-logo-img { height: 48px; max-width: min(340px, 88vw); border-radius: 8px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 64px; }

  .page-hero { padding: 40px 16px; }
  .page-hero h1 { font-size: 30px; }
  body.page-internet-cafe .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 16px; }

  footer { padding: 50px 16px 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    justify-items: center;
  }
  .footer-grid > div {
    width: 100%;
    max-width: 100%;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-col h4 {
    border-left: none;
    border-bottom: 4px solid var(--amber);
    padding-left: 0;
    margin-left: 0;
    padding-bottom: 8px;
    display: inline-block;
    text-align: center;
  }
  .footer-col ul {
    align-items: center;
    width: 100%;
  }
  .footer-col ul li {
    text-align: center;
    width: 100%;
  }
  .footer-col ul li a {
    display: inline-block;
    text-align: center;
  }
  .footer-col address {
    text-align: center;
  }
  .footer-brand-text { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .whatsapp-float { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}
