/* ============================================================
   ROYAL IT PARK — Design Tokens
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* ---------- Brand colors ---------- */
  --rip-blue-900:   #07153A; /* footer / deepest navy */
  --rip-blue-800:   #0B1A3A;
  --rip-blue-700:   #0F2A6E;
  --rip-blue-600:   #1741A8;
  --rip-blue-500:   #1E5BD8; /* primary brand blue */
  --rip-blue-400:   #3A78F2;
  --rip-blue-300:   #79A4FF;
  --rip-blue-200:   #B8CFFF;
  --rip-blue-100:   #DCE7FF;
  --rip-blue-50:    #F4F8FF; /* page tint */

  --rip-gold-700:   #B07F00;
  --rip-gold-600:   #D89B00;
  --rip-gold-500:   #F7B500; /* CTA / wordmark gold */
  --rip-gold-400:   #FFC83A;
  --rip-gold-300:   #FFD970;
  --rip-gold-100:   #FFF1C6;

  /* ---------- Neutrals ---------- */
  --rip-ink:        #0F1B36;
  --rip-fg-1:       #0F1B36; /* primary text */
  --rip-fg-2:       #3D4A66; /* body */
  --rip-fg-3:       #6A7691; /* muted */
  --rip-fg-4:       #98A1B5; /* placeholder */
  --rip-line:       #E3E8F0;
  --rip-line-soft:  #EEF2F8;
  --rip-bg:         #FFFFFF;
  --rip-bg-soft:    #F7F9FC;
  --rip-bg-tint:    #F4F8FF;

  /* ---------- Semantic ---------- */
  --rip-success:    #18A957;
  --rip-warn:       #F7B500;
  --rip-danger:     #E14A4A;
  --rip-whatsapp:   #25D366;

  /* ---------- Type ---------- */
  --rip-font-sans:  'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --rip-font-display: 'Poppins', system-ui, sans-serif;

  /* ---------- Spacing scale ---------- */
  --rip-s-1: 4px;
  --rip-s-2: 8px;
  --rip-s-3: 12px;
  --rip-s-4: 16px;
  --rip-s-5: 24px;
  --rip-s-6: 32px;
  --rip-s-7: 48px;
  --rip-s-8: 64px;
  --rip-s-9: 96px;
  --rip-s-10:120px;

  /* ---------- Radius ---------- */
  --rip-r-sm: 6px;
  --rip-r-md: 8px;
  --rip-r-lg: 12px;
  --rip-r-xl: 20px;
  --rip-r-pill: 999px;

  /* ---------- Shadow ---------- */
  --rip-shadow-xs: 0 1px 2px rgba(15, 27, 54, 0.06);
  --rip-shadow-sm: 0 4px 12px rgba(30, 91, 216, 0.06);
  --rip-shadow-md: 0 8px 24px rgba(30, 91, 216, 0.08);
  --rip-shadow-lg: 0 18px 48px rgba(30, 91, 216, 0.14);
  --rip-shadow-glow: 0 12px 36px rgba(247, 181, 0, 0.32);
}

:root {
  --teal-900: #0e2c2b;
  --teal-700: #16403f;
  --teal-500: #1f5957;
  --teal-100: #dce8e6;

  --amber-600: #c97e28;
  --amber-500: #e3993c;
  --amber-100: #fbe8cb;

  --coral-500: #d9714e;
  --coral-100: #f7ddd0;

  --sage-50: #f2f4ef;
  --sage-100: #e8ebe2;
  /*--paper: #fbfaf6;*/
  --paper: #fff;

  --ink-900: #16241f;
  --ink-600: #445048;
  --ink-400: #6f7a72;

  --line: rgba(22, 36, 31, 0.12);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 12px 32px -18px rgba(14, 44, 43, 0.35);
  --shadow-lift: 0 20px 48px -20px rgba(14, 44, 43, 0.45);

  --container: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   Reset / base
   ============================================================ */
* { box-sizing: border-box; }
body { margin: 0; }
html, body { font-family: var(--rip-font-sans); color: var(--rip-fg-1); }
img { max-width: 100%; display: block; }

section {
    padding: 96px 0;
}

.container {
    max-width: 1180px;;
    margin: 0 auto;
    padding: 0 28px;
}

/* About ------------------------------------------------------------------*/
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-visual svg { width: 100%; height: auto; display: block; }

/* Contact ------------------------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list svg { width: 22px; height: 22px; color: var(--amber-600); flex-shrink: 0; margin-top: 2px; }
.contact-list strong { display: block; font-size: 15px; color: var(--teal-900); }
.contact-list span, .contact-list a { font-size: 14.5px; color: var(--ink-600); text-decoration: none; }
.contact-list a:hover { color: var(--teal-700); text-decoration: underline; }


/* ============================================================
   Type scale (semantic)
   ============================================================ */
.rip-display {
  font-family: var(--rip-font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--rip-fg-1);
}
.rip-h1 { font-family: var(--rip-font-display); font-weight: 700; font-size: 48px; line-height: 1.12; letter-spacing: -0.015em; color: var(--rip-fg-1); }
.rip-h2 { font-family: var(--rip-font-display); font-weight: 700; font-size: 36px; line-height: 1.18; letter-spacing: -0.01em; color: var(--rip-fg-1); }
.rip-h3 { font-family: var(--rip-font-display); font-weight: 600; font-size: 24px; line-height: 1.28; color: var(--rip-fg-1); }
.rip-h4 { font-family: var(--rip-font-display); font-weight: 600; font-size: 18px; line-height: 1.34; color: var(--rip-fg-1); }
.rip-eyebrow { font-family: var(--rip-font-sans); font-weight: 500; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rip-blue-500); }
.rip-body { font-family: var(--rip-font-sans); font-weight: 400; font-size: 16px; line-height: 1.6; color: var(--rip-fg-2); }
.rip-body-lg { font-family: var(--rip-font-sans); font-weight: 400; font-size: 18px; line-height: 1.55; color: var(--rip-fg-2); }
.rip-small { font-family: var(--rip-font-sans); font-weight: 400; font-size: 13px; line-height: 1.5; color: var(--rip-fg-3); }
.rip-stat { font-family: var(--rip-font-display); font-weight: 800; font-size: 56px; line-height: 1; color: var(--rip-blue-500); letter-spacing: -0.02em; }

/* ============================================================
   Components
   ============================================================ */
.rip-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--rip-font-sans);
  font-weight: 600; font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--rip-r-pill);
  border: 0; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.rip-btn-primary { background: var(--rip-gold-500); color: var(--rip-blue-900); box-shadow: var(--rip-shadow-glow); }
.rip-btn-primary:hover { background: var(--rip-gold-400); }
.rip-btn-primary:active { transform: scale(0.98); }
.rip-btn-blue { background: var(--rip-blue-500); color: #fff; }
.rip-btn-blue:hover { background: var(--rip-blue-600); }
.rip-btn-ghost { background: transparent; color: var(--rip-fg-1); border: 1px solid var(--rip-line); }
.rip-btn-ghost:hover { border-color: var(--rip-blue-500); color: var(--rip-blue-500); }

.rip-card {
  background: var(--rip-bg);
  border: 1px solid var(--rip-line);
  border-radius: var(--rip-r-lg);
  padding: var(--rip-s-6);
  box-shadow: var(--rip-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.rip-card:hover { transform: translateY(-2px); box-shadow: var(--rip-shadow-md); }

.rip-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--rip-r-pill);
  background: var(--rip-blue-50); color: var(--rip-blue-600);
  font-size: 13px; font-weight: 500;
}

.rip-input {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--rip-line); border-radius: var(--rip-r-md);
  font-family: var(--rip-font-sans); font-size: 15px; color: var(--rip-fg-1);
  background: #fff; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.rip-input:focus { border-color: var(--rip-blue-500); box-shadow: 0 0 0 4px rgba(30,91,216,0.12); }

/* ============================================================
   Page shell
   ============================================================ */
.page {
  font-family: var(--rip-font-sans);
  background: var(--rip-bg);
  color: var(--rip-fg-1);
  overflow-x: hidden;
  position: relative;
}

/* ---------- Header Base ---------- */
.site-header {
  position: sticky; 
  top: 0; 
  z-index: 50;
  background: rgb(10 25 56);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rip-line);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 64px);
}

.site-header .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-header .logo img { height: 50px; width: auto; border-radius: var(--rip-r-sm); object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-link { color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; transition: color .15s ease; }
.nav-link:hover { color: var(--rip-blue-500); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; }
.phone-link i { width: 16px; height: 16px; color: #fff; }

.mobile-toggle, .mobile-actions { display: none; }

/* ---------- Mobile Styles ---------- */
@media (max-width: 991px) {
  /* Hide desktop call-to-action block */
  .header-actions {
    display: none;
  }

  /* Show mobile menu toggle button */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-toggle .icon-close { display: none; }
  .mobile-toggle.active .icon-open { display: none; }
  .mobile-toggle.active .icon-close { display: block; }

  /* Mobile Slide-down Navigation */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgb(10 25 56);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 20px;
    border-bottom: 1px solid var(--rip-line);
    
    /* Animation / Hide state */
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .main-nav.active {
    display: flex;
    opacity: 1;
  }

  .nav-link {
    font-size: 18px;
    width: 100%;
  }

  /* Mobile Action Buttons inside menu */
  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ---------- Hero ---------- */
/*.hero {*/
/*  position: relative;*/
/*  padding-top: 60px;*/
/*  background: linear-gradient(180deg, var(--rip-blue-50) 0%, #ffffff 80%);*/
/*  overflow: hidden;*/
/*}*/

.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    background: url("https://royalitpark.org/grace1/assets/img/slide.jpg") center top / cover no-repeat;
    z-index: 1;
}

/* Dark Gradient Overlay - stronger on left where text sits, fades right to show photo */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 20, 25, 0.85) 0%,
        rgba(10, 20, 25, 0.65) 35%,
        rgba(10, 20, 25, 0.25) 65%,
        rgba(10, 20, 25, 0.05) 100%
    );
    z-index: 0;
}

/* Keep hero content above the overlay */
.hero > * {
    position: relative;
    z-index: 1;
}

.hero-inner {
    max-width: 860px;
    margin: 0;
    text-align: left;
    position: relative;
    padding-left: 40px;
}

.hero-inner .rip-pill {
    margin: 0 0 24px;
}

.hero-inner h1 {
    margin: 0 0 22px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-inner h1 em {
    color: var(--rip-blue-500);
    font-style: normal;
}

.hero-inner .rip-body-lg {
    margin: 0 0 36px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 56px;
}

.hero-buttons a {
    text-decoration: none;
}

.hero-buttons .btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: all 0.2s ease;
}

.hero-buttons .btn-outline-light:hover {
    background: #ffffff;
    color: var(--rip-navy, #0e2c2b);
}

.hero-stats {
    display: flex;
    gap: clamp(32px, 6vw, 64px);
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 56px;
}

.hero-stats .rip-stat {
    font-size: 44px;
    color: #ffffff;
}

.hero-image {
    width: 100%;
    max-width: 960px;
    height: 380px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border-radius: var(--rip-r-xl);
    box-shadow: var(--rip-shadow-lg);
}

/* ---------- Section shells ---------- */
.section { padding: var(--rip-s-6) clamp(20px,4vw,64px); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tint { background: var(--rip-bg-tint); }

/* ---------- About ---------- */
.about-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(300px,0.9fr) minmax(320px,1.1fr);
  gap: 56px; align-items: center;
}
.about-grid img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--rip-r-xl); box-shadow: var(--rip-shadow-lg);
}

/* Values ---------------------------------------------------------------*/
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.value-card {
  position: relative;
  padding: 38px 30px;
  background: linear-gradient(160deg, var(--paper) 0%, color-mix(in srgb, var(--amber-600) 8%, var(--paper)) 100%);
  transition: background .35s var(--ease), transform .3s var(--ease);
}

.value-card:hover {
  background: linear-gradient(160deg, var(--paper) 0%, color-mix(in srgb, var(--amber-600) 16%, var(--paper)) 100%);
  transform: translateY(-2px);
}

/* alternate accent per card so the row doesn't read as one repeated tile */
.value-card:nth-child(2) {
  background: linear-gradient(160deg, var(--paper) 0%, color-mix(in srgb, var(--teal-700) 8%, var(--paper)) 100%);
}
.value-card:nth-child(2):hover {
  background: linear-gradient(160deg, var(--paper) 0%, color-mix(in srgb, var(--teal-700) 16%, var(--paper)) 100%);
}
.value-card:nth-child(2) .value-icon { color: var(--teal-700); }

.value-card:nth-child(4n+3) {
  background: linear-gradient(160deg, var(--paper) 0%, color-mix(in srgb, var(--teal-700) 8%, var(--paper)) 100%);
}
.value-card:nth-child(4n+3):hover {
  background: linear-gradient(160deg, var(--paper) 0%, color-mix(in srgb, var(--teal-700) 16%, var(--paper)) 100%);
}
.value-card:nth-child(4n+3) .value-icon { color: var(--teal-700); }

.value-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--amber-600);
  transition: transform .3s var(--ease);
}

.value-card:hover .value-icon {
  transform: scale(1.06);
}

.value-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14.5px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* Services ---------------------------------------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px 26px;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

/* thin accent line that draws in on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Icon chip ---------------------------------------------------------------*/
.service-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--teal-700) 10%, var(--paper));
  margin-bottom: 20px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.service-card:hover .service-icon-wrap {
  background: var(--teal-700);
  transform: scale(1.05);
}

.service-icon {
  width: 24px;
  height: 24px;
  color: var(--teal-700);
  transition: color .25s var(--ease);
}

.service-card:hover .service-icon {
  color: var(--paper);
}

.service-card h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 13.5px;
  margin-bottom: 0;
  line-height: 1.55;
}

/* Responsive ----------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process-section {
  background: var(--rip-blue-900);
  position: relative; overflow: hidden;
}
.process-glow {
  position: absolute; bottom: -160px; left: -100px; width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,91,216,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.process-section .section-inner { position: relative; }
.process-section .rip-eyebrow { color: var(--rip-gold-400); }
.process-section .rip-h2 { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.process-card {
  padding: 28px 24px; border-radius: var(--rip-r-lg);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
}
.process-step {
  font-family: var(--rip-font-display); font-weight: 800; font-size: 14px;
  color: var(--rip-gold-400); margin-bottom: 16px;
}
.process-card i { width: 24px; height: 24px; color: #fff; margin-bottom: 14px; display: block; }
.process-title { font-family: var(--rip-font-display); font-weight: 600; font-size: 18px; color: #fff; margin-bottom: 8px; }
.process-desc { font-size: 14px; line-height: 1.55; color: var(--rip-blue-200); }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--rip-gold-500); }
.testimonial-quote { font-size: 15px; line-height: 1.6; color: var(--rip-fg-2); margin: 0 0 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rip-blue-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--rip-fg-1); }
.testimonial-role { font-size: 13px; color: var(--rip-fg-3); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.gallery-item {
  width: 100%; height: 240px;
  border-radius: 16px;
  background: var(--rip-bg-soft);
  border: 1px dashed var(--rip-line);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--rip-fg-4); font-size: 13px;
  overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.gallery-item .placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.gallery-item i { width: 26px; height: 26px; color: var(--rip-fg-4); }

.map-item { width: 100%; height: 220px; }

/* ---------- Career CTA ---------- */
.career-section { padding: clamp(30px,7vw,28px) clamp(10px,4vw,24px); }
.career-box {
  max-width: 1280px; margin: 0 auto;
  background: linear-gradient(135deg, var(--rip-blue-500) 0%, var(--rip-blue-700) 100%);
  border-radius: var(--rip-r-xl);
  padding: clamp(40px,6vw,34px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.career-box .rip-eyebrow { color: var(--rip-gold-400); margin-bottom: 12px; }
.career-copy { max-width: 560px; }
.career-copy h2 { font-family: var(--rip-font-display); font-weight: 700; font-size: 32px; color: #fff; margin: 0 0 12px; }
.career-copy p { color: var(--rip-blue-100); font-size: 16px; line-height: 1.6; margin: 0; }
.career-box .rip-btn { text-decoration: none; white-space: nowrap; }

/* ---------- Contact ---------- */
.contact-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(320px,1fr) minmax(320px,1fr);
  gap: 48px;
}
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px; border-radius: var(--rip-r-md);
  background: var(--rip-blue-50); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { width: 18px; height: 18px; color: var(--rip-blue-500); }
.contact-label { margin-bottom: 2px; }
.contact-value { color: var(--rip-fg-1); font-weight: 600; text-decoration: none; font-size: 15px; }

.contact-form-card { padding: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: block; margin-bottom: 6px; color: var(--rip-fg-2); font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form textarea.rip-input { resize: vertical; font-family: var(--rip-font-sans); }
.contact-form button { justify-content: center; margin-top: 6px; width: 100%; }
.form-status { font-size: 14px; margin-top: 4px; min-height: 20px; }
.form-status.success { color: var(--rip-success); }
.form-status.error { color: var(--rip-danger); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--rip-blue-900); color: var(--rip-blue-200);
  padding: var(--rip-s-8) clamp(20px,4vw,64px) var(--rip-s-6);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo { height: 40px; width: auto; border-radius: var(--rip-r-sm); margin-bottom: 16px; background: #fff; padding: 4px; }
.footer-tagline { font-size: 14px; line-height: 1.6; color: var(--rip-blue-200); max-width: 260px; }
.footer-col-title { font-weight: 600; color: #fff; margin-bottom: 16px; font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: var(--rip-blue-200); text-decoration: none; font-size: 14px; transition: color .15s ease; }
.footer-link:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-contact span { color: var(--rip-blue-200); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--rip-fg-4);
}
.footer-bottom a { color: var(--rip-gold-400); text-decoration: none; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-btn {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--rip-whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--rip-shadow-lg); z-index: 60;
}
.whatsapp-btn img { width: 32px; height: 32px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid img { height: 300px; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .career-box { justify-content: center; text-align: center; }
  .career-copy { max-width: 100%; }
}

/* Container styling with background image */
.breadcrumb-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-image: url('https://royalitpark.org/grace1/assets/img/ndis-01-scaled.jpg');
  background-size: cover;
  background-position: top center; /* Aligns background image to the top center */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Dark overlay */
.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Content wrapper */
.breadcrumb-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

/* Title styling */
.page-title {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

/* Breadcrumb list styling */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
}

/* Breadcrumb items */
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.breadcrumb-item a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Active page link */
.breadcrumb-item.active {
  color: #00d2ff;
  font-weight: 600;
}