  :root {
    --primary: #2490eb;
    --dark: #14457b;
    --text: #666666;
    --heading: #18100f;
    --white: #ffffff;
    --light: #f4f8fc;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  html, body { overflow-x: hidden; }
  body { font-family: 'Montserrat', sans-serif; color: var(--text); font-size: 15px; line-height: 1.8; background: var(--white); }
  h1, h2, h3, h4, h5 { font-family: 'Quicksand', sans-serif; color: var(--heading); font-weight: 700; line-height: 1.3; }
  a { color: var(--primary); text-decoration: none; transition: all .3s ease; }
  a:hover { color: var(--dark); }
  ul { list-style: none; }
  img { max-width: 100%; height: auto; display: block; }
  .container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
  .btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; padding: 12px 30px; border-radius: 4px; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; }
  .btn:hover { background: var(--dark); color: #fff; }
  .btn i { font-size: 12px; }
  .skip-link { position: absolute; left: -9999px; }
  .skip-link:focus { left: 10px; top: 10px; background: #fff; padding: 8px; z-index: 9999; }

  /* ---------- Header (logo block + top bar + nav) ---------- */
  header { background: #fff; position: relative; z-index: 100; }
  /* sticky header (added by js/main.js after scrolling past the header) */
  header.is-sticky { position: fixed; top: 0; left: 0; right: 0; box-shadow: 0 5px 20px rgba(0,0,0,.1); animation: stickySlide .4s ease; }
  header.is-sticky .topbar { display: none; }
  header.is-sticky .brand { min-height: 76px; padding: 10px 30px; }
  header.is-sticky .brand img { max-width: 140px; }
  @keyframes stickySlide { from { transform: translateY(-100%); } to { transform: translateY(0); } }
  .header-grid { display: flex; }
  .brand { flex: 0 0 16.6667%; max-width: 16.6667%; background: var(--primary); display: flex; align-items: center; justify-content: center; padding: 16px 30px; min-height: 124px; }
  .brand img { width: 100%; max-width: 175px; height: auto; }
  .header-right { flex: 1; min-width: 0; }
  .topbar { background: var(--dark); color: #fff; height: 48px; display: flex; justify-content: space-between; align-items: center; }
  .topbar ul { display: flex; height: 100%; }
  .topbar .contact li { padding: 8px 20px; border-right: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; }
  .topbar .contact a { color: #fff; font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 12px; }
  .topbar .contact a:hover { color: #cfe6ff; }
  .topbar .contact i { margin-right: 8px; font-size: 12px; }
  .topbar .social li { border-left: 1px solid rgba(255,255,255,.1); }
  .topbar .social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 44px; color: #fff; font-size: 12px; }
  .topbar .social a:hover { color: #cfe6ff; }
  .navbar { display: flex; align-items: center; justify-content: flex-end; height: 76px; padding-right: 30px; }
  nav.main-nav > ul { display: flex; gap: 0; }
  nav.main-nav > ul > li { position: relative; }
  nav.main-nav > ul > li > a { display: block; padding: 27px 15px; font-family: 'Quicksand', sans-serif; font-size: 14px; font-weight: 600; color: var(--heading); text-transform: uppercase; white-space: nowrap; }
  nav.main-nav > ul > li > a:hover, nav.main-nav > ul > li.current > a { color: var(--primary); }
  nav.main-nav li.has-sub > a::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-left: 8px; font-size: 9px; vertical-align: 1px; }
  nav.main-nav .sub-menu { position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,.1); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; padding: 10px 0; }
  nav.main-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  nav.main-nav .sub-menu a { display: block; padding: 8px 20px; font-family: 'Quicksand', sans-serif; font-size: 13px; color: var(--heading); font-weight: 600; }
  nav.main-nav .sub-menu a:hover { color: var(--primary); padding-left: 25px; }
  .search-btn { background: none; border: 0; color: var(--heading); font-size: 20px; cursor: pointer; margin-left: 30px; padding: 0 10px; height: 76px; }
  .search-btn:hover { color: var(--primary); }
  .search-form { position: absolute; right: 30px; top: 100%; background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,.12); padding: 15px; display: none; gap: 8px; z-index: 200; }
  .search-form.open { display: flex; }
  .search-form input { border: 1px solid #ddd; padding: 10px 15px; font-family: inherit; width: 260px; }
  .search-form button { background: var(--dark); color: #fff; border: 0; padding: 0 16px; cursor: pointer; }
  .menu-toggle { display: none; background: var(--primary); color: #fff; border: 0; width: 44px; height: 44px; font-size: 20px; cursor: pointer; border-radius: 4px; }

  /* ---------- Hero slider ---------- */
  .hero { position: relative; height: 808px; max-height: calc(100vh - 124px); min-height: 520px; overflow: hidden; background: #0f2c5c; }
  .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; background-size: cover; background-position: center; }
  .slide.active { opacity: 1; z-index: 1; }
  .slide .container { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; max-width: none; padding: 0 0 0 16.6667%; }
  .slide-content { max-width: 600px; }
  .slide .kicker { display: inline-block; color: #fff; background: rgba(211,233,251,.3); padding: 2px 10px; font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 16px; text-transform: uppercase; margin-bottom: 15px; opacity: 0; transform: translateX(-30px); }
  .slide h1 { font-size: 66px; line-height: 1.1; color: #fff; margin-bottom: 15px; opacity: 0; transform: translateX(-30px); text-transform: capitalize; font-weight: 500; }
  .slide p { font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 16px; line-height: 2; color: #fff; margin-bottom: 30px; opacity: 0; transform: translateX(-30px); }
  .slide .btn { opacity: 0; transform: translateX(-30px); }
  .slide.active .kicker { animation: slideIn .8s .3s forwards; }
  .slide.active h1 { animation: slideIn .8s .6s forwards; }
  .slide.active p { animation: slideIn .8s .9s forwards; }
  .slide.active .btn { animation: slideIn .8s 1.2s forwards; }
  @keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
  .hero-nav { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
  .hero-nav button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; }
  .hero-nav button.active { background: #fff; }
  .hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 60px; height: 60px; border: 0; background: #fff; color: var(--heading); font-size: 16px; cursor: pointer; }
  .hero-arrow:hover { background: var(--primary); color: #fff; }
  .hero-arrow.prev { left: 20px; } .hero-arrow.next { right: 20px; }

  /* ---------- About / MyMedicare section (home) ---------- */
  .about { padding: 100px 0 210px; }
  .about .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
  .section-title .kicker { display: inline-block; color: var(--primary); background: #d3e9fb; border-radius: 3px; padding: 4px 8px; font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; line-height: 22px; }
  .section-title h2 { font-size: 48px; font-weight: 500; line-height: 1.17; margin-bottom: 20px; }
  .about p { margin-bottom: 20px; font-size: 16px; line-height: 2; }
  .icon-box { display: flex; gap: 15px; align-items: flex-start; margin-top: 30px; }
  .icon-box .icon { flex: 0 0 50px; width: 50px; height: 50px; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 46px; }
  .icon-box h3 { font-size: 26px; font-weight: 600; margin-bottom: 4px; color: #000; }
  .icon-box h3 a { color: #000; } .icon-box h3 a:hover { color: var(--primary); }
  .icon-box p { margin-bottom: 8px; }
  .check-list { list-style: none; margin: 10px 0 20px; }
  .check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--heading); font-size: 16px; line-height: 2; }
  .check-list li::before { content: "\F058"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--primary); font-size: 20px; line-height: 32px; flex: none; }
  .about .btn { margin-top: 10px; }
  .about-images { position: relative; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
  .about-images .img-top { width: 75%; max-width: 452px; border-radius: 3px; }
  .about-images .img-bottom { width: 52%; max-width: 316px; align-self: flex-start; margin-left: 6%; margin-top: 40px; }

  /* ---------- Floating widgets ---------- */
  .back-top { position: fixed; right: 25px; bottom: 90px; width: 44px; height: 44px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 4px; opacity: 0; visibility: hidden; transition: all .3s; z-index: 50; }
  .back-top.show { opacity: 1; visibility: visible; }
  .back-top:hover { background: var(--dark); color: #fff; }
  .he-book { position: fixed; left: 15px; bottom: 15px; width: 280px; background: var(--primary); color: #fff; z-index: 50; box-shadow: 0 5px 20px rgba(0,0,0,.2); font-family: 'Source Sans Pro', 'Montserrat', sans-serif; border-radius: 3px; overflow: hidden; }
  .he-book:hover { color: #fff; }
  .he-book .he-row { display: flex; align-items: center; gap: 12px; padding: 14px 24px; font-size: 18px; }
  .he-book .he-row i { font-size: 26px; }
  .he-book .he-powered { background: rgba(0,0,0,.1); font-size: 14px; padding: 8px 24px; display: flex; align-items: center; gap: 8px; }
  .he-book .he-powered b { font-weight: 600; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1500px) {
    nav.main-nav > ul > li > a { padding: 27px 10px; font-size: 13px; }
    .search-btn { margin-left: 10px; }
    .slide h1 { font-size: 52px; }
  }
  @media (max-width: 1350px) {
    nav.main-nav > ul > li > a { padding: 27px 7px; font-size: 12px; }
    .navbar { padding-right: 15px; }
  }
  @media (max-width: 1199px) {
    .brand { flex-basis: 33.333%; max-width: 33.333%; min-height: 0; padding: 12px 20px; }
    .navbar { justify-content: flex-end; height: 64px; padding-right: 15px; }
    .search-btn { display: none; }
    .menu-toggle { display: block; }
    nav.main-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,.1); display: none; max-height: calc(100vh - 112px); overflow-y: auto; }
    nav.main-nav.open { display: block; }
    nav.main-nav > ul { flex-direction: column; }
    nav.main-nav > ul > li > a { padding: 12px 20px; border-bottom: 1px solid #eee; }
    nav.main-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; background: #f7f9fc; }
    nav.main-nav li.open > .sub-menu { display: block; }
    .hero { height: 520px; }
    .hero-arrow { top: auto; bottom: 15px; transform: none; width: 44px; height: 44px; }
    .hero-arrow.prev { left: auto; right: 74px; }
    .hero-arrow.next { right: 20px; }
    .hero-nav { left: 30px; transform: none; bottom: 30px; }
    .slide .container { padding: 0 30px; }
    .slide h1 { font-size: 40px; }
    .about .grid { grid-template-columns: 1fr; }
    .topbar .social { display: none; }
    .topbar .contact li { padding: 8px 12px; }
  }
  @media (max-width: 767px) {
    /* header: logo block + hamburger only (top bar hidden, like the original) */
    .topbar { display: none; }
    .brand { flex-basis: 45%; max-width: 45%; min-height: 80px; padding: 12px 16px; }
    .brand img { max-width: 150px; }
    .header-right { min-width: 0; }
    .navbar { height: 80px; padding-right: 15px; }
    .menu-toggle { width: 48px; height: 48px; font-size: 22px; }
    nav.main-nav { max-height: calc(100vh - 80px); }
    header.is-sticky .brand { min-height: 80px; }
    /* hero: show the whole slide image, compact text, no paragraph/dots */
    .hero { height: auto; aspect-ratio: 8 / 5; min-height: 0; max-height: none; }
    .slide { background-size: cover; }
    .slide .container { padding: 0 20px; }
    .slide-content { max-width: 55%; }
    .slide .kicker { font-size: 10px; padding: 2px 8px; margin-bottom: 6px; }
    .slide h1 { font-size: 20px; font-weight: 700; margin-bottom: 12px; line-height: 1.25; }
    .slide p { display: none; }
    .slide .btn { padding: 8px 14px; font-size: 11px; }
    .hero-nav, .hero-arrow { display: none; }
    .section-title h2, .page-content .section-title h2 { font-size: 28px; }
    .about { padding: 50px 0 100px; }
    .about-images { align-items: stretch; margin-top: 10px; }
    .about-images .img-top, .about-images .img-bottom { width: 100%; max-width: none; margin: 0 0 20px; }
    .icon-box .icon { font-size: 36px; }
    .icon-box h3 { font-size: 22px; }
    .hero-arrow { display: none; }
    .he-book { width: auto; left: 10px; bottom: 10px; }
    .he-book .he-row { font-size: 15px; padding: 10px 16px; gap: 10px; }
    .he-book .he-row i { font-size: 20px; }
    .he-book .he-powered { font-size: 12px; padding: 5px 16px; }
    .back-top { right: 15px; bottom: 15px; }
    .breadcrumb-banner { padding: 50px 0; }
    .breadcrumb-banner h1 { font-size: 30px; }
    .breadcrumb-banner::before { background: rgba(255,255,255,.35); }
    .page-section { padding: 20px 0; }
    .page-section:first-child { padding-top: 40px; }
    .page-section:last-child { padding-bottom: 90px; }
    .page-section.has-bg { padding: 40px 0; }
    .row { gap: 22px; }
    .col-33, .col-25, .col-20, .col-16 { flex-basis: 100%; max-width: 100%; }
    .w-heading, h2.w-heading { font-size: 22px; }
    .col-33 + .col-66 { padding-left: 0; }
    .section-title + h2.w-heading { font-size: 20px; }
    .w-image { height: auto; }
    header.is-sticky .brand { min-height: 56px; }
    .map iframe, .w-google_maps iframe { height: 300px; }
    .page-content table { display: block; overflow-x: auto; font-size: 12px; }
    .page-content th, .page-content td { padding: 7px 8px; }
    .he-embed { min-height: 600px; }
  }

/* ======================================================
   Inner pages
   ====================================================== */
.breadcrumb-banner { position: relative; background: url('../images/breadcrumb.jpg') center/cover no-repeat; padding: 170px 0 120px; text-align: left; color: var(--heading); }
.breadcrumb-banner::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.12); }
.breadcrumb-banner .container { position: relative; }
.breadcrumb-banner h1 { color: var(--heading); font-size: 60px; font-weight: 400; margin-bottom: 12px; line-height: 1.1; }
.breadcrumb-banner ul { display: flex; align-items: center; gap: 12px; font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
.breadcrumb-banner li:first-child a::before { content: "\f015"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 8px; }
.breadcrumb-banner li + li::before { content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 12px; font-size: 11px; color: var(--heading); }
.breadcrumb-banner a { color: var(--heading); }
.breadcrumb-banner a:hover { color: var(--primary); }
.breadcrumb-banner li:last-child { color: var(--primary); }
.page-content .section-title .kicker { display: inline-block; background: #d3e9fb; padding: 2px 10px; }

.page-content { padding: 0; }
.page-section { padding: 30px 0; }
.page-section:first-child { padding-top: 100px; }
.page-section:last-child { padding-bottom: 150px; }
.page-section.has-bg { padding: 60px 0; }
.page-section.has-bg:last-child { padding-bottom: 140px; }
.page-section.has-bg + .page-section.has-bg { padding-top: 0; }
.page-section:not(.has-bg) + .page-section.has-bg { margin-top: 30px; }
.page-section.dark { color: rgba(255,255,255,.85); }
.page-section.dark h1, .page-section.dark h2, .page-section.dark h3, .page-section.dark h4, .page-section.dark h5, .page-section.dark .w-heading { color: #fff; }
.page-section[style*="background-image"] { background-size: cover; background-position: center; }
.row { max-width: 1140px; margin: 0 auto; padding: 0 15px; display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; }
.row-inner { width: 100%; }
.row-inner + .row-inner { margin-top: 30px; }
.row-inner > .row { padding: 0; max-width: none; }
.col { min-width: 0; }
.col-100 { flex: 0 0 100%; max-width: 100%; }
.col-75 { flex: 0 0 calc(75% - 8px); max-width: calc(75% - 8px); }
.col-66 { flex: 0 0 calc(66.666% - 10px); max-width: calc(66.666% - 10px); }
.col-60 { flex: 0 0 calc(60% - 12px); max-width: calc(60% - 12px); }
.col-50 { flex: 0 0 calc(50% - 15px); max-width: calc(50% - 15px); }
.col-40 { flex: 0 0 calc(40% - 18px); max-width: calc(40% - 18px); }
.col-33 { flex: 0 0 calc(33.333% - 20px); max-width: calc(33.333% - 20px); }
.col-25 { flex: 0 0 calc(25% - 23px); max-width: calc(25% - 23px); }
.col-20 { flex: 0 0 calc(20% - 24px); max-width: calc(20% - 24px); }
.col-16 { flex: 0 0 calc(16.666% - 25px); max-width: calc(16.666% - 25px); }
.col > * + * { margin-top: 18px; }
.col > .row { margin-top: 0; }
.col > .row + .row { margin-top: 30px; }
.col > .icon-box { margin-top: 24px; }
.col > .icon-box + .w-text-editor { margin-top: 8px; }
.spacer { height: 20px; }
.page-content .section-title h2 { font-size: 46px; font-weight: 500; margin-bottom: 10px; }
.section-title + h2.w-heading { color: var(--primary); font-size: 25px; font-weight: 500; }
.col-33 + .col-66 { padding-left: 30px; }
.page-content .section-title p { margin-top: 10px; }
.w-heading { font-size: 22px; }
h2.w-heading { font-size: 36px; font-weight: 600; }
h1.w-heading { font-size: 34px; }
.w-text-editor p + p, .w-text-editor p + ul, .w-text-editor ul + p, .desc p + p, .desc ul + p, .desc p + ul { margin-top: 12px; }
.w-text-editor ul, .desc ul, .icon-list { list-style: none; }
.w-text-editor ul li, .desc ul li, .icon-list li { position: relative; padding-left: 22px; margin-bottom: 6px; }
.w-text-editor ul li::before, .desc ul li::before, .icon-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--primary); position: absolute; left: 0; top: 0; font-size: 12px; }
.w-text-editor ol { padding-left: 22px; }
.w-text-editor ol li { margin-bottom: 6px; }
.w-text-editor a, .desc a { font-weight: 600; }
.w-text-editor h1, .w-text-editor h2, .w-text-editor h3, .w-text-editor h4, .w-text-editor h5, .w-text-editor h6 { margin: 18px 0 8px; }
.w-text-editor h1:first-child, .w-text-editor h2:first-child, .w-text-editor h3:first-child, .w-text-editor h4:first-child, .w-text-editor h5:first-child { margin-top: 0; }
.w-text-editor h3, .w-text-editor h4 { font-size: 20px; }
.w-text-editor h5, .w-text-editor h6 { font-size: 17px; }
.w-text-editor img, .desc img { border-radius: 6px; margin: 10px 0; }
.w-text-editor iframe { width: 100%; min-height: 400px; border: 0; }
.w-image { border-radius: 0; }
.page-content .icon-box { margin-top: 0; }
.page-content .icon-box h3 { font-size: 20px; }
.page-content .icon-box .icon i { font-size: 26px; }
.page-content .icon-box .icon img { width: 32px; height: 32px; object-fit: contain; }
.page-content .icon-box:not(:has(.icon)) { display: block; }
.page-content .icon-box:not(:has(.icon)) h3 { padding-bottom: 8px; border-bottom: 2px solid var(--primary); display: inline-block; }
.page-content table { width: 100%; border-collapse: collapse; margin: 10px 0; font-size: 14px; }
.page-content th, .page-content td { border: 1px solid #e3e8ee; padding: 10px 14px; text-align: left; vertical-align: top; }
.page-content th { background: var(--light); color: var(--heading); font-family: 'Quicksand', sans-serif; font-weight: 700; }
.page-content tr:nth-child(even) td { background: #fafcfe; }
.page-section.dark table { background: #fff; border-radius: 6px; overflow: hidden; }
.page-section.dark th { background: var(--dark); color: #fff; }
.page-section.dark td { color: var(--text); background: #fff; }
.page-section.dark tr:nth-child(even) td { background: #f3f7fb; }
.page-section.dark td strong { color: var(--heading); }
.page-content hr { border: 0; border-top: 1px solid #e3e8ee; margin: 20px 0; }
.page-content blockquote { border-left: 4px solid var(--primary); padding: 10px 20px; background: var(--light); font-style: italic; }
.map iframe, .w-google_maps iframe { width: 100%; height: 420px; border: 0; border-radius: 8px; }
.w-shortcode iframe, .w-html iframe { width: 100%; min-height: 600px; border: 0; }

/* team cards (GP listing) – photo with overlapping white name box, like the live site */
.page-general-practitioners .section-title { text-align: center; }
.page-general-practitioners .row-inner + .row-inner { margin-top: 30px; }
.w-team { position: relative; text-align: center; padding-bottom: 0; }
.w-team > img { width: 100%; height: auto; border-radius: 3px; display: block; }
.w-team .team-info { position: relative; margin: -30px 8% 0; background: #fff; border-radius: 3px; box-shadow: 0 0 30px rgba(0,20,9,.1); padding: 20px 15px; }
.w-team h5 { font-size: 24px; font-weight: 600; margin: 0; text-transform: capitalize; line-height: 1.35; }
.w-team h5 a { color: var(--heading); }
.w-team h5 a:hover { color: var(--primary); }
.w-team .designation { display: block; color: var(--primary); font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 14px; margin-top: 4px; }
.w-team:hover .team-info { transform: translateY(-4px); transition: transform .3s; }

/* forms (contact / careers) */
.w-form, form.site-form { display: grid; gap: 15px; }
.page-content input:not([type=submit]):not([type=checkbox]):not([type=radio]), .page-content textarea, .page-content select { width: 100%; padding: 12px 15px; border: 1px solid #dfe5ec; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 14px; background: #fff; }
.page-content input:focus, .page-content textarea:focus { outline: 0; border-color: var(--primary); }
.page-content input[type=submit], .page-content button[type=submit] { background: var(--primary); color: #fff; border: 0; padding: 12px 30px; font-family: 'Quicksand', sans-serif; font-weight: 700; text-transform: uppercase; border-radius: 4px; cursor: pointer; }
.page-content input[type=submit]:hover, .page-content button[type=submit]:hover { background: var(--dark); }
.contact-info-card { background: var(--light); border-radius: 8px; padding: 30px; }
.site-form p { margin: 0; }
.site-form .btn { border: 0; cursor: pointer; }
.site-form .btn:disabled { opacity: .6; cursor: default; }
.form-status:empty { display: none; }
.form-status { padding: 12px 15px; border-radius: 4px; font-size: 14px; }
.form-status.ok { background: #e6f6ec; color: #1e7b3a; border: 1px solid #b9e4c7; }
.form-status.err { background: #fdecec; color: #b3261e; border: 1px solid #f3c1c1; }
.form-status a { font-weight: 600; }
.contact-info-card .icon-box + .icon-box { margin-top: 20px; }

/* Booking widget page */
.he-embed { width: 100%; min-height: 800px; border: 0; }

@media (max-width: 991px) {
  .row { gap: 24px; }
  .col-75, .col-66, .col-60, .col-50, .col-40 { flex-basis: 100%; max-width: 100%; }
  .col-33, .col-25 { flex-basis: calc(50% - 12px); max-width: calc(50% - 12px); }
  .col-20, .col-16 { flex-basis: calc(33.333% - 16px); max-width: calc(33.333% - 16px); }
  .breadcrumb-banner { padding: 80px 0; }
  .breadcrumb-banner h1 { font-size: 40px; }
}
@media (max-width: 575px) {
  .col-33, .col-25, .col-20, .col-16 { flex-basis: 100%; max-width: 100%; }
  .breadcrumb-banner h1 { font-size: 28px; }
}

/* ---------- Contact page ---------- */
.contact-cards { padding-bottom: 20px; }
.contact-card { background: #f4f7fb; text-align: center; padding: 60px 30px 55px; height: 100%; }
.contact-card .cicon { width: 80px; height: 80px; margin: 0 auto 22px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; }
.contact-card h3 { font-size: 30px; font-weight: 500; margin-bottom: 8px; }
.contact-card p { line-height: 2; }
.contact-card a { color: var(--text); } .contact-card a:hover { color: var(--primary); }
.contact-form-map { position: relative; padding-top: 60px; }
.contact-form-map .form-card { position: relative; z-index: 3; background: #fff; box-shadow: 0 0 40px rgba(0,0,0,.08); max-width: 910px; margin: 0 auto; padding: 60px 45px 55px; text-align: center; }
.contact-form-map .section-title h2 { font-size: 46px; font-weight: 400; margin-bottom: 30px; }
.contact-form-map .site-form { display: block; text-align: left; }
.contact-form-map .site-form p { margin-bottom: 15px; }
.contact-form-map .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form-map .site-form input:not([type=hidden]), .contact-form-map .site-form textarea { background: #f4f7fb; border: 1px solid #f4f7fb; padding: 16px 18px; }
.contact-form-map .site-form input:focus, .contact-form-map .site-form textarea:focus { border-color: var(--primary); background: #fff; }
.contact-form-map .site-form .btn { padding: 16px 30px; border-radius: 0; }
.contact-form-map .map { margin-top: -110px; }
.contact-form-map .map iframe { width: 100%; height: 620px; border: 0; border-radius: 0; display: block; }
@media (max-width: 991px) {
  .contact-form-map .form-card { margin: 0 15px; padding: 40px 25px; }
  .contact-form-map .section-title h2 { font-size: 34px; }
  }
@media (max-width: 767px) {
  .contact-card { padding: 40px 20px 35px; }
  .contact-card h3 { font-size: 24px; }
  .contact-form-map { padding-top: 20px; }
  .contact-form-map .two-col { grid-template-columns: 1fr; gap: 0; }
  .contact-form-map .map { margin-top: -60px; }
  .contact-form-map .map iframe { height: 420px; }
    }
.contact-cards .row { align-items: stretch; }
.contact-cards .col { display: flex; }
.contact-card { width: 100%; }
/* ---------- Services page: centered title, stacked icon boxes ---------- */
.page-services .section-title { text-align: center; margin: 0 auto 30px; }
.page-services .section-title h2 { font-size: 48px; font-weight: 600; }
.page-services .row { row-gap: 40px; }
.page-services .icon-box { flex-direction: column; align-items: center; text-align: center; gap: 15px; margin: 0; }
.page-services .icon-box .icon { background: none; width: auto; height: auto; flex-basis: auto; border-radius: 0; }
.page-services .icon-box .icon i { font-size: 50px; line-height: 1; }
.page-services .icon-box h3 { font-size: 20px; font-weight: 600; color: #000; }
.page-services .icon-box:not(:has(.icon)) h3 { border: 0; }
@media (max-width: 767px) {
  .page-services .section-title h2 { font-size: 30px; }
  .page-services .col-33 { flex-basis: calc(50% - 11px); max-width: calc(50% - 11px); }
  .page-services .icon-box .icon i { font-size: 40px; }
  .page-services .icon-box h3 { font-size: 16px; }
}

/* ---------- Career page ---------- */
.page-career-with-us h2.w-heading { font-size: 36px; font-weight: 400; color: #636a6f; }
.page-career-with-us .col-40 { padding-top: 10px; }
.page-career-with-us .col-60 { padding-left: 20px; }
@media (max-width: 767px) { .page-career-with-us h2.w-heading { font-size: 26px; } .page-career-with-us .col-60 { padding-left: 0; } }

/* ---------- Services page ---------- */
.page-services .section-title { text-align: center; margin-bottom: 30px; }
.page-services .section-title h2 { font-size: 48px; font-weight: 600; }
.page-services .icon-box { flex-direction: column; align-items: center; text-align: center; gap: 12px; margin: 0 0 60px; }
.page-services .icon-box .icon { width: auto; height: auto; flex-basis: auto; background: none; border-radius: 0; color: var(--primary); }
.page-services .icon-box .icon i { font-size: 50px; }
.page-services .icon-box h3 { font-size: 20px; font-weight: 600; color: #000; }
.page-services .row { align-items: flex-start; }
@media (max-width: 767px) { .page-services .section-title h2 { font-size: 30px; } .page-services .icon-box { margin-bottom: 36px; } .page-services .icon-box .icon i { font-size: 40px; } .page-services .col-33 { flex-basis: calc(50% - 11px); max-width: calc(50% - 11px); } }

/* ======================================================
   Footer (matches live site: feedback box + 2 columns + copyright)
   ====================================================== */
footer { background: var(--dark); color: #fff; font-size: 16px; line-height: 2; }
footer .container { max-width: 1300px; }
.footer-feedback { margin-top: -80px; position: relative; z-index: 3; }
.feedback-box { background: var(--primary); border-radius: 3px; padding: 45px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.feedback-box .left { display: flex; align-items: center; gap: 30px; }
.feedback-box .left img { width: 55px; }
.feedback-box h5 { color: #fff; font-size: 28px; font-weight: 600; text-transform: capitalize; }
.greviews { display: inline-flex; align-items: center; gap: 10px; background: #fff; border-radius: 6px; padding: 12px 22px; box-shadow: 0 5px 15px rgba(0,0,0,.1); color: var(--heading); font-family: Arial, sans-serif; }
.greviews:hover { color: var(--primary); }
.greviews .glogo { font-size: 20px; font-weight: 700; letter-spacing: -.5px; }
.greviews .stars { color: #f6b400; font-size: 15px; letter-spacing: 1px; }
.greviews .rating { font-weight: 700; font-size: 15px; }
.greviews .sep { opacity: .4; margin: 0 4px; }
.footer-top { padding: 70px 0 0; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-top .widget { margin-bottom: 45px; }
.footer-top p { margin-bottom: 30px; }
.footer-top p strong { font-weight: 600; }
.footer-top h6 { color: #fff; font-family: 'Quicksand', sans-serif; font-size: 20px; font-weight: 600; line-height: 1.4; text-transform: capitalize; }
.footer-top h6 + h6 { margin-top: 24px; }
.footer-top h6 a { color: #fff; }
.footer-top h6 a:hover { color: #cfe6ff; }
.footer-top .badges { display: flex; align-items: center; gap: 0; padding: 8px 0; }
.footer-top .badges img:first-child { width: 150px; }
.footer-top .badges img:last-child { width: 300px; }
.footer-logo { height: 70px; width: auto; margin-bottom: 30px; }
.footer-social a { display: inline-flex; width: 50px; height: 50px; align-items: center; justify-content: center; background: rgba(255,255,255,.1); border-radius: 3px; color: #fff; }
.footer-social a:hover { background: var(--primary); }
.footer-title { color: #fff; font-size: 26px; font-weight: 600; text-transform: capitalize; margin-bottom: 30px; }
.footer-menu li { margin-bottom: 12px; }
.footer-menu a { color: #fff; text-transform: capitalize; padding-left: 15px; position: relative; display: inline-block; }
.footer-menu a::before { content: "\F105"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 0; font-size: 13px; }
.footer-menu a:hover { color: #cfe6ff; padding-left: 20px; }
.acknowledge { display: flex; gap: 20px; align-items: flex-start; }
.acknowledge img { width: 40px; flex: none; margin-top: 8px; }
.acknowledge p { margin: 0; }
.copyright { padding: 15px 0; text-align: center; border-top: 1px solid rgba(255,255,255,.08); }
@media (max-width: 991px) {
  .footer-cols { grid-template-columns: 1fr; gap: 0; }
  .feedback-box { padding: 30px; }
  .feedback-box h5 { font-size: 24px; }
}
@media (max-width: 767px) {
  footer { font-size: 15px; line-height: 1.8; }
  .footer-feedback { margin-top: -50px; }
  .feedback-box { padding: 25px 20px; justify-content: center; text-align: center; }
  .feedback-box .left { gap: 15px; }
  .feedback-box h5 { font-size: 22px; }
  .footer-top { padding-top: 45px; }
  .footer-top .widget { margin-bottom: 30px; }
  .footer-top .badges { flex-wrap: wrap; gap: 10px; }
  .footer-top .badges img:last-child { width: 220px; }
  .footer-title { font-size: 22px; }
  .acknowledge { font-size: 13px; }
}

/* ---------- Private Fees page (boxed blue container, bordered transparent tables like the live site) ---------- */
.page-private-fees .page-section.has-bg { max-width: 1300px; margin: 0 auto; padding: 20px 10px 40px; }
.page-private-fees .page-section.has-bg:last-child { padding-bottom: 120px; }
.page-private-fees .page-section.has-bg .row { max-width: 1140px; }
.page-private-fees .page-section h2.w-heading, .page-private-fees .page-section .w-heading { color: #fff; font-size: 24px; font-weight: 600; text-transform: capitalize; margin-bottom: 15px; }
.page-private-fees .col > * + * { margin-top: 20px; }
.page-private-fees .page-section.dark table, .page-private-fees table { background: transparent; border-radius: 0; border-collapse: collapse; width: 100%; margin: 0 0 20px; font-size: 16px; font-family: "Segoe UI", Montserrat, sans-serif; overflow: visible; }
.page-private-fees .page-section.dark th, .page-private-fees .page-section.dark td, .page-private-fees th, .page-private-fees td { background: transparent; color: #fff; border: 1px solid #24a5eb; padding: 8px; font-weight: 400; font-family: inherit; }
.page-private-fees .page-section.dark tr:nth-child(even) td { background: transparent; }
.page-private-fees .page-section.dark td strong { color: #fff; }
@media (max-width: 767px) {
  .page-private-fees .page-section.has-bg { padding: 15px 0 30px; }
  .page-private-fees .page-section.dark table, .page-private-fees table { font-size: 12px; display: block; overflow-x: auto; }
  .page-private-fees .page-section.dark th, .page-private-fees .page-section.dark td, .page-private-fees th, .page-private-fees td { padding: 6px; }
}
.page-private-fees .page-section h6.w-heading { font-family: 'Quicksand', sans-serif; font-size: 24px; font-weight: 600; color: #fff; }
.page-private-fees .page-section h6.w-heading strong { font-weight: 600; }

/* ---------- About page ---------- */
.page-content .section-title h2 { font-size: 48px; font-weight: 600; }
.page-about-us .col-50 + .col-50 { padding-left: 30px; }
.page-content .icon-box { align-items: center; gap: 15px; margin-top: 0; }
.page-content .icon-box .icon { font-size: 44px; }
.page-content .icon-box .icon i { font-size: 44px; }
.page-content .icon-box h3 { font-size: 20px; font-weight: 700; color: #000; margin: 0; }
.page-content .icon-box:not(:has(.icon)) { display: flex; }
.page-content .icon-box:not(:has(.icon)) h3 { padding: 0; border: 0; display: block; }
.page-content .icon-box + .w-text-editor { margin-top: 20px; }
.phone-box { margin-top: 30px; }
.phone-box h3 { font-size: 24px; font-weight: 600; margin-bottom: 0; }
.phone-box h3 a { color: var(--heading); }
.phone-box p { color: var(--primary); line-height: 1.5; }
@media (max-width: 767px) { .page-about-us .col-50 + .col-50 { padding-left: 0; } .page-content .section-title h2 { font-size: 30px; } }
