    
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --green: #dd0000;
        --green-light: #fff3c4;
        --green-dark: #050505;
        --amber: #ffce00;
        --amber-light: #fff5cc;
        --text: #1f1f1f;
        --text-muted: #5e5b55;
        --border: rgba(0, 0, 0, 0.12);
        --bg: #fffdf5;
        --white: #ffffff;
        --radius: 14px;
        --radius-sm: 8px;
      }
      html,
      body {
        width: 100%;
        overflow-x: hidden;
      }
      body {
        font-family: "DM Sans", sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.6;
      }
      h1,
      h2,
      h3,
      h4 {
        font-family: "Fraunces", serif;
        font-weight: 600;
      }
      nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.65rem 4rem;
        background: var(--white);
        border-bottom: 0.5px solid var(--border);
        position: sticky;
        top: 0;
        z-index: 100;
        width: 100%;
      }
      .logo {
        display: flex;
        align-items: center;
        white-space: nowrap;
      }
      .logo img {
        height: 62px;
        width: auto;
        display: block;
      }
      .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--green);
      }
      .nav-cta,
      .btn-primary,
      .book-btn,
      .submit-btn {
        background: var(--green);
        color: white;
        border: none;
        border-radius: 50px;
        font-family: "DM Sans", sans-serif;
        cursor: pointer;
        font-weight: 500;
        transition:
          background 0.2s,
          transform 0.15s;
      }
      .nav-cta {
        padding: 0.55rem 1.4rem;
        font-size: 0.9rem;
        white-space: nowrap;
      }
      .nav-cta:hover,
      .btn-primary:hover,
      .book-btn:hover,
      .submit-btn:hover {
        background: var(--green-dark);
      }
      .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        min-height: 92vh;
      }
      .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 5rem 4rem 4rem;
      }
      .hero-badge {
        display: inline-block;
        background: var(--amber-light);
        color: var(--green-dark);
        font-size: 0.78rem;
        font-weight: 500;
        padding: 0.28rem 0.9rem;
        border-radius: 50px;
        margin-bottom: 1.3rem;
        width: fit-content;
      }
      .hero h1 {
        font-size: 3.2rem;
        line-height: 1.12;
        color: var(--green-dark);
        margin-bottom: 1.1rem;
      }
      .hero h1 em {
        color: var(--amber);
        font-style: italic;
      }
      .hero-desc {
        font-size: 1.05rem;
        color: var(--text-muted);
        max-width: 460px;
        margin-bottom: 2rem;
      }
      .hero-actions {
        display: flex;
        gap: 0.9rem;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
      }
      .btn-primary,
      .btn-outline {
        padding: 0.78rem 2rem;
        font-size: 0.95rem;
      }
      .btn-primary:hover {
        transform: translateY(-1px);
      }
      .btn-outline {
        background: transparent;
        color: var(--green-dark);
        border: 1.5px solid var(--green);
        border-radius: 50px;
        font-family: "DM Sans", sans-serif;
        cursor: pointer;
        font-weight: 500;
        transition: background 0.2s;
      }
      .btn-outline:hover {
        background: var(--green-light);
      }
      .hero-stats {
        display: flex;
        gap: 2.5rem;
      }
      .stat-num {
        font-family: "Fraunces", serif;
        font-size: 2rem;
        color: var(--green-dark);
        font-weight: 600;
      }
      .stat-label {
        font-size: 0.78rem;
        color: var(--text-muted);
      }
      .hero-panel {
        background: var(--green-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem;
        gap: 1.1rem;
        position: relative;
        overflow: hidden;
      }
      .hero-panel::before,
      .hero-panel::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.06);
      }
      .hero-panel::before {
        width: 320px;
        height: 320px;
        top: -80px;
        right: -80px;
      }
      .hero-panel::after {
        width: 200px;
        height: 200px;
        bottom: -40px;
        left: -40px;
      }
      .uni-pill {
        background: rgba(255, 255, 255, 0.09);
        border: 0.5px solid rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        padding: 1.1rem 1.6rem;
        color: white;
        width: 100%;
        max-width: 340px;
        transition: background 0.2s;
      }
      .uni-pill:hover {
        background: rgba(255, 255, 255, 0.14);
      }
      .uni-pill .city {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.55);
        letter-spacing: 0.09em;
        text-transform: uppercase;
        margin-bottom: 0.25rem;
      }
      .uni-pill .uname {
        font-family: "Fraunces", serif;
        font-size: 1.05rem;
        color: white;
        margin-bottom: 0.2rem;
      }
      .uni-pill .ufee {
        font-size: 0.8rem;
        color: var(--amber);
      }
      .uni-pill.featured {
        background: rgba(221, 0, 0, 0.28);
        border-color: rgba(221, 0, 0, 0.55);
      }
      .float-tag {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: var(--amber);
        color: var(--green-dark);
        font-size: 0.72rem;
        font-weight: 500;
        padding: 0.35rem 0.8rem;
        border-radius: 50px;
        z-index: 2;
      }
      .stats-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: var(--green-dark);
        padding: 2.5rem 4rem;
        gap: 1rem;
      }
      .big-stat {
        text-align: center;
      }
      .big-stat .num {
        font-family: "Fraunces", serif;
        font-size: 2.6rem;
        color: white;
        font-weight: 600;
      }
      .big-stat .lbl {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 0.2rem;
      }
      .section-label {
        font-size: 0.74rem;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: var(--green);
        font-weight: 500;
        margin-bottom: 0.4rem;
      }
      .section-title {
        font-size: 2rem;
        color: var(--green-dark);
        margin-bottom: 0.6rem;
        line-height: 1.2;
      }
      .section-sub {
        color: var(--text-muted);
        font-size: 0.93rem;
      }
      .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        min-height: 480px;
      }
      .split.rev {
        direction: rtl;
      }
      .split.rev > * {
        direction: ltr;
      }
      .split-img {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        min-height: 420px;
      }
      .split-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3.5rem 4rem;
      }
      .consult-bg {
        background: var(--green-dark);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3rem;
      }
      .consult-card {
        background: rgba(255, 255, 255, 0.1);
        border: 0.5px solid rgba(255, 255, 255, 0.18);
        border-radius: 16px;
        padding: 1.8rem 2rem;
        color: white;
        width: 100%;
        max-width: 300px;
      }
      .consult-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--amber);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Fraunces", serif;
        font-weight: 600;
        font-size: 1.2rem;
        color: var(--green-dark);
        margin-bottom: 1rem;
      }
      .consult-card h4 {
        font-size: 1.05rem;
        color: white;
        margin-bottom: 0.3rem;
      }
      .consult-card p {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 1rem;
      }
      .c-step {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.5rem 0;
        border-top: 0.5px solid rgba(255, 255, 255, 0.1);
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.8);
      }
      .c-check {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: white;
        flex-shrink: 0;
      }
      .map-bg {
        background: #fff3c4;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        min-height: 420px;
      }
      .map-pin {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .pin-dot {
        width: 13px;
        height: 13px;
        background: var(--green);
        border-radius: 50%;
        border: 2.5px solid white;
        position: relative;
        z-index: 2;
      }
      .pin-label {
        background: white;
        border: 0.5px solid var(--border);
        border-radius: 6px;
        padding: 0.2rem 0.55rem;
        font-size: 0.7rem;
        font-weight: 500;
        color: var(--green-dark);
        margin-top: 5px;
        white-space: nowrap;
      }
      .pin-pulse {
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: rgba(221, 0, 0, 0.25);
        position: absolute;
        top: 0;
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 0.8;
        }
        100% {
          transform: scale(3.5);
          opacity: 0;
        }
      }
      .steps-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
      }
      .step-item {
        display: flex;
        gap: 0.9rem;
        align-items: flex-start;
      }
      .step-num {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Fraunces", serif;
        font-weight: 600;
        font-size: 0.9rem;
        flex-shrink: 0;
      }
      .step-num.green {
        background: var(--green-light);
        color: var(--green-dark);
      }
      .step-num.amber {
        background: var(--amber-light);
        color: var(--green-dark);
      }
      .step-body strong {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.15rem;
      }
      .step-body p {
        font-size: 0.83rem;
        color: var(--text-muted);
      }
      .why-pill {
        border-radius: 10px;
        padding: 0.75rem 1rem;
        font-size: 0.87rem;
        margin-bottom: 0.6rem;
      }
      .why-pill.g {
        background: var(--green-light);
        color: var(--green-dark);
      }
      .why-pill.a {
        background: var(--amber-light);
        color: var(--green-dark);
      }
      .uni-section {
        padding: 4rem;
        background: var(--white);
        width: 100%;
      }
      .filter-bar {
        display: flex;
        gap: 0.6rem;
        margin: 1.5rem 0;
        flex-wrap: wrap;
        align-items: center;
      }
      .filter-bar input {
        flex: 1;
        min-width: 220px;
        padding: 0.55rem 1rem;
        border: 0.5px solid var(--border);
        border-radius: 50px;
        font-family: "DM Sans", sans-serif;
        font-size: 0.88rem;
        background: var(--bg);
        color: var(--text);
        outline: none;
      }
      .filter-bar input:focus {
        border-color: var(--green);
      }
      .filter-btn {
        padding: 0.45rem 1rem;
        border-radius: 50px;
        border: 0.5px solid var(--border);
        background: var(--bg);
        font-family: "DM Sans", sans-serif;
        font-size: 0.82rem;
        cursor: pointer;
        color: var(--text-muted);
        transition: all 0.15s;
      }
      .filter-btn.active,
      .filter-btn:hover {
        background: var(--green-light);
        color: var(--green-dark);
        border-color: var(--green);
      }
      .uni-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.1rem;
      }
      .uni-card {
        background: var(--bg);
        border: 0.5px solid var(--border);
        border-radius: var(--radius);
        padding: 1.2rem;
        transition:
          box-shadow 0.2s,
          transform 0.15s;
        cursor: pointer;
      }
      .uni-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
        transform: translateY(-2px);
      }
      .uni-card-top {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
      }
      .uni-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--green-light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Fraunces", serif;
        font-weight: 600;
        color: var(--green-dark);
        font-size: 0.95rem;
        flex-shrink: 0;
      }
      .uni-name {
        font-weight: 500;
        font-size: 0.92rem;
        color: var(--text);
      }
      .uni-city {
        font-size: 0.78rem;
        color: var(--text-muted);
      }
      .uni-tags {
        display: flex;
        gap: 0.35rem;
        flex-wrap: wrap;
        margin-bottom: 0.8rem;
      }
      .tag {
        font-size: 0.72rem;
        padding: 0.18rem 0.55rem;
        border-radius: 50px;
        background: var(--green-light);
        color: var(--green-dark);
      }
      .tag.amber {
        background: var(--amber-light);
        color: var(--green-dark);
      }
      .uni-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .uni-rank {
        font-size: 0.78rem;
        color: var(--text-muted);
      }
      .uni-rank strong {
        color: var(--green-dark);
      }
      .learn-btn {
        font-size: 0.8rem;
        color: var(--green);
        background: none;
        border: none;
        cursor: pointer;
        font-family: "DM Sans", sans-serif;
        font-weight: 500;
        padding: 0;
        text-decoration: none;
      }
      .learn-btn:hover {
        color: var(--green-dark);
      }
      .booking-section {
        background: var(--green-light);
        padding: 4rem;
      }
      .booking-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        align-items: start;
      }
      .calendar-card {
        background: var(--white);
        border-radius: var(--radius);
        border: 0.5px solid var(--border);
        overflow: hidden;
      }
      .cal-header {
        background: var(--green-dark);
        color: white;
        padding: 0.9rem 1.1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .cal-header h3 {
        font-size: 1rem;
      }
      .cal-nav button {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 26px;
        height: 26px;
        border-radius: 6px;
        cursor: pointer;
        margin-left: 4px;
      }
      .cal-days-header,
      .cal-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 3px;
      }
      .cal-days-header {
        padding: 0.6rem 0.9rem 0.2rem;
      }
      .cal-days-header span {
        text-align: center;
        font-size: 0.7rem;
        color: var(--text-muted);
        font-weight: 500;
      }
      .cal-grid {
        padding: 0.3rem 0.9rem 0.9rem;
      }
      .cal-day {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        font-size: 0.82rem;
        cursor: pointer;
        color: var(--text-muted);
        transition: background 0.15s;
      }
      .cal-day:hover:not(.empty):not(.disabled) {
        background: var(--green-light);
        color: var(--green-dark);
      }
      .cal-day.selected {
        background: var(--green);
        color: white;
        font-weight: 500;
      }
      .cal-day.disabled {
        color: #d3d1c7;
        cursor: default;
      }
      .cal-day.available {
        color: var(--text);
      }
      .time-slots {
        padding: 0.7rem 0.9rem 0.9rem;
        border-top: 0.5px solid var(--border);
      }
      .time-slots h4 {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
      }
      .slots-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.45rem;
      }
      .slot {
        padding: 0.35rem;
        text-align: center;
        border: 0.5px solid var(--border);
        border-radius: var(--radius-sm);
        font-size: 0.76rem;
        cursor: pointer;
        color: var(--text-muted);
        transition: all 0.15s;
      }
      .slot:hover {
        border-color: var(--green);
        color: var(--green-dark);
        background: var(--green-light);
      }
      .slot.picked {
        background: var(--green);
        color: white;
        border-color: var(--green);
      }
      .booking-form h3 {
        font-size: 1.6rem;
        color: var(--green-dark);
        margin-bottom: 0.4rem;
      }
      .booking-form > p {
        font-size: 0.88rem;
        color: var(--text-muted);
        margin-bottom: 1.2rem;
      }
      .form-group {
        margin-bottom: 0.85rem;
      }
      .form-group label {
        display: block;
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--text);
        margin-bottom: 0.3rem;
      }
      .form-group input,
      .form-group select,
      .form-group textarea {
        width: 100%;
        padding: 0.58rem 0.85rem;
        border: 0.5px solid var(--border);
        border-radius: var(--radius-sm);
        font-family: "DM Sans", sans-serif;
        font-size: 0.88rem;
        background: var(--white);
        color: var(--text);
        outline: none;
        transition: border-color 0.15s;
      }
      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        border-color: var(--green);
      }
      .form-group textarea {
        height: 70px;
        resize: vertical;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
      }
      .book-btn {
        width: 100%;
        padding: 0.78rem;
        font-size: 0.92rem;
        margin-top: 0.4rem;
      }
      .sel-info {
        background: var(--green-light);
        border-radius: var(--radius-sm);
        padding: 0.5rem 0.85rem;
        font-size: 0.82rem;
        color: var(--green-dark);
        margin-bottom: 0.8rem;
        display: none;
      }
      .sel-info.visible {
        display: block;
      }
      .contact-section {
        padding: 4rem;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: start;
      }
      .contact-info h2 {
        font-size: 2rem;
        color: var(--green-dark);
        margin-bottom: 0.5rem;
      }
      .contact-info > p {
        color: var(--text-muted);
        margin-bottom: 1.8rem;
        font-size: 0.92rem;
      }
      .c-detail {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.9rem;
      }
      .c-icon {
        width: 36px;
        height: 36px;
        background: var(--green-light);
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0.88rem;
      }
      .c-detail-text span {
        display: block;
        font-size: 0.75rem;
        color: var(--text-muted);
      }
      .c-detail-text strong {
        font-size: 0.88rem;
        color: var(--text);
      }
      .contact-form-card {
        background: var(--white);
        border-radius: var(--radius);
        border: 0.5px solid var(--border);
        padding: 2rem;
      }
      .submit-btn {
        padding: 0.75rem 2rem;
        font-size: 0.92rem;
      }
      footer {
        background: var(--green-dark);
        color: rgba(255, 255, 255, 0.6);
        padding: 2rem 4rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .footer-logo img {
        height: 58px;
        width: auto;
        display: block;
        background: white;
        border-radius: 8px;
      }
      footer p {
        font-size: 0.82rem;
      }
      footer a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
      }
      .success-msg {
        display: none;
        background: var(--green-light);
        color: var(--green-dark);
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
        font-size: 0.86rem;
        font-weight: 500;
        margin-top: 0.5rem;
        text-align: center;
      }
      .success-msg.show {
        display: block;
      }
      .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition:
          opacity 0.65s ease,
          transform 0.65s ease;
      }
      .reveal.from-left {
        transform: translateX(-55px);
      }
      .reveal.from-right {
        transform: translateX(55px);
      }
      .reveal.visible {
        opacity: 1;
        transform: translate(0, 0);
      }
      @media (max-width: 900px) {
        .hero,
        .split,
        .booking-wrap,
        .contact-section {
          grid-template-columns: 1fr;
        }
        .hero h1 {
          font-size: 2.2rem;
        }
        nav {
          padding: 0.7rem 1.5rem;
        }
        .logo img {
          height: 50px;
        }
        .nav-links {
          display: none;
        }
        .stats-bar {
          grid-template-columns: repeat(2, 1fr);
        }
        .uni-section,
        .booking-section,
        .contact-section {
          padding: 2.5rem 1.5rem;
        }
        .split-text {
          padding: 2.5rem 1.5rem;
        }
        .hero-text {
          padding: 3rem 1.5rem;
        }
        .hero-panel {
          padding: 2rem 1.5rem;
        }
        .hero-stats {
          gap: 1.2rem;
          flex-wrap: wrap;
        }
        footer {
          padding: 2rem 1.5rem;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
      }
    

      .slogan {
        color: var(--green);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.7rem;
      }
      .hero h1 {
        max-width: 680px;
      }
      .hero-desc {
        max-width: 590px;
      }
      .hero-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
        margin: -1.2rem 0 2rem;
        max-width: 620px;
      }
      .hero-trust span {
        background: var(--white);
        border: 0.5px solid var(--border);
        border-radius: 999px;
        color: var(--green-dark);
        font-size: 0.78rem;
        font-weight: 500;
        padding: 0.35rem 0.75rem;
      }
      .panel-title {
        width: 100%;
        max-width: 340px;
        color: white;
        position: relative;
        z-index: 1;
      }
      .panel-title span {
        color: var(--amber);
        display: block;
        font-size: 0.74rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 0.2rem;
      }
      .panel-title strong {
        display: block;
        font-family: "Fraunces", serif;
        font-size: 1.35rem;
        line-height: 1.12;
      }
      .home-section {
        padding: 4.5rem 4rem;
      }
      .promise-section {
        background: var(--white);
      }
      .promise-section > .section-sub {
        max-width: 720px;
        margin-bottom: 1.6rem;
      }
      .promise-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
      }
      .promise-card {
        background: var(--bg);
        border: 0.5px solid var(--border);
        border-radius: var(--radius);
        padding: 1.4rem;
        min-height: 220px;
      }
      .card-mark {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--green-dark);
        color: var(--amber);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Fraunces", serif;
        font-weight: 600;
        margin-bottom: 1rem;
      }
      .promise-card h3 {
        color: var(--green-dark);
        font-size: 1.25rem;
        margin-bottom: 0.45rem;
      }
      .promise-card p {
        color: var(--text-muted);
        font-size: 0.92rem;
      }
      .journey-section {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 3rem;
        align-items: center;
        background: var(--green-light);
      }
      .journey-copy .section-sub {
        margin-bottom: 1.4rem;
      }
      .journey-list {
        display: grid;
        gap: 0.8rem;
      }
      .journey-item {
        background: var(--white);
        border: 0.5px solid var(--border);
        border-radius: var(--radius);
        padding: 1rem 1.1rem;
      }
      .journey-item strong {
        display: block;
        color: var(--green-dark);
        margin-bottom: 0.25rem;
      }
      .journey-item span {
        color: var(--text-muted);
        font-size: 0.9rem;
      }
      .cta-band {
        margin: 0;
        padding: 3.2rem 4rem;
        background: var(--green-dark);
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
      }
      .cta-band .section-label {
        color: var(--amber);
      }
      .cta-band h2 {
        font-size: 2rem;
        line-height: 1.15;
        max-width: 680px;
      }


      @media (max-width: 900px) {
        .slogan {
          font-size: 0.98rem;
        }
        .hero-trust {
          margin-top: -0.8rem;
        }
        .promise-grid,
        .journey-section {
          grid-template-columns: 1fr;
        }
        .home-section {
          padding: 3rem 1.5rem;
        }
        .cta-band {
          padding: 3rem 1.5rem;
          align-items: flex-start;
          flex-direction: column;
        }
        .cta-band h2 {
          font-size: 1.6rem;
        }
      }
.yellow-word {
  color: #ffce00;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Mobile polish for Public Uni Guide */
@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  nav {
    min-height: 70px;
    gap: 0.75rem;
  }

  .logo img {
    height: 44px;
    max-width: 150px;
    object-fit: contain;
  }

  .nav-cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-text {
    padding: 2.4rem 1.25rem;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .hero-desc {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    margin: -0.6rem 0 1.4rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .stat {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
  }

  .stat-num {
    font-size: 1.45rem;
  }

  .hero-panel {
    padding: 2.2rem 1.25rem;
  }

  .float-tag {
    top: 1rem;
    right: 1rem;
  }

  .uni-pill {
    max-width: 100%;
    padding: 0.95rem 1rem;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1.25rem;
  }

  .big-stat .num {
    font-size: 1.8rem;
  }

  .promise-card {
    min-height: auto;
  }

  .journey-section {
    gap: 1.6rem;
  }

  footer {
    text-align: left;
  }

  .footer-logo img {
    height: 44px;
  }
}
/* Visible mobile navigation */
@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem 0.85rem;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo img {
    height: 44px;
    max-width: min(58vw, 190px);
    object-fit: contain;
  }

  .nav-cta {
    order: 2;
    flex: 0 0 auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex !important;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0.35rem 0 0.05rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links li {
    flex: 0 0 auto;
  }

  .nav-links a {
    display: block;
    white-space: nowrap;
    border: 0.5px solid var(--border);
    border-radius: 999px;
    background: var(--bg);
    color: var(--green-dark);
    padding: 0.45rem 0.72rem;
    font-size: 0.82rem;
    line-height: 1;
    text-decoration: none;
  }
}


/* Visible mobile navigation */
@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem 0.85rem;
  }
  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }
  .logo img {
    height: 44px;
    max-width: min(58vw, 190px);
    object-fit: contain;
  }
  .nav-cta {
    order: 2;
    flex: 0 0 auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }
  .nav-links {
    order: 3;
    width: 100%;
    display: flex !important;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0.35rem 0 0.05rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  .nav-links li {
    flex: 0 0 auto;
  }
  .nav-links a {
    display: block;
    white-space: nowrap;
    border: 0.5px solid var(--border);
    border-radius: 999px;
    background: var(--bg);
    color: var(--green-dark);
    padding: 0.45rem 0.72rem;
    font-size: 0.82rem;
    line-height: 1;
  }
}

.uni-page {
  padding: 0;
}
.uni-hero {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: end;
  background: var(--green-dark);
  color: white;
  padding: 4rem;
}
.uni-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.uni-hero p {
  color: rgba(255,255,255,.72);
  max-width: 820px;
}
.uni-source-card {
  background: rgba(255,255,255,.1);
  border: .5px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: grid;
  gap: .3rem;
}
.uni-source-card strong {
  color: var(--amber);
  font-family: "Fraunces", serif;
  font-size: 2rem;
}
.uni-source-card span {
  color: rgba(255,255,255,.72);
  margin-bottom: .5rem;
}
.uni-controls {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: .75rem;
  background: var(--white);
  border-bottom: .5px solid var(--border);
  padding: 1.25rem 4rem;
}
.uni-controls input,
.uni-controls select {
  width: 100%;
  border: .5px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  padding: .72rem 1rem;
}
.uni-result-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 4rem 0;
  color: var(--text-muted);
  font-size: .86rem;
}
.uni-grid.large {
  padding: 1.25rem 4rem 4rem;
}
.large-card {
  cursor: default;
}
.uni-meta {
  display: grid;
  gap: .45rem;
  color: var(--text-muted);
  font-size: .82rem;
  margin-bottom: .8rem;
}
.uni-meta strong,
.uni-meta b.ranked {
  color: var(--green-dark);
}
.uni-meta b.muted {
  color: var(--text-muted);
  font-weight: 500;
}
.official-link {
  color: var(--green);
  font-weight: 600;
  font-size: .82rem;
  text-decoration: none;
}
.official-link:hover {
  color: var(--green-dark);
}
.uni-empty {
  display: none;
  margin: 0 4rem 4rem;
  background: var(--white);
  border: .5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .uni-hero,
  .uni-controls {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
  }
  .uni-result-row {
    display: block;
    padding: 1rem 1.25rem 0;
  }
  .uni-grid.large {
    padding: 1rem 1.25rem 3rem;
  }
  .uni-empty {
    margin: 0 1.25rem 3rem;
  }
}

/* Wide-screen polish and progressive university loading */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
  min-height: 130px;
}

.menu-toggle {
  display: none;
}

nav {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: center;
  padding: 0.85rem clamp(2rem, 4vw, 4.5rem);
  min-height: 108px;
}

.logo {
  justify-self: start;
}

.logo img {
  height: 78px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav-links {
  justify-self: center;
  align-items: center;
  gap: clamp(2rem, 3.2vw, 4.5rem);
}

.nav-links a {
  font-size: 0.95rem;
}

.nav-cta {
  justify-self: end;
}

.hero {
  min-height: clamp(660px, 74vh, 820px);
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
}

.hero-text {
  justify-content: center;
  padding: clamp(3rem, 6vh, 5rem) clamp(2.5rem, 5vw, 5rem);
}

.hero-panel {
  justify-content: flex-start;
  padding: clamp(3rem, 6vh, 5rem) clamp(2rem, 5vw, 4rem);
  overflow-y: auto;
}

.hero-panel .uni-pill {
  max-width: 360px;
}

.split,
.contact-section,
.booking-section {
  min-height: calc(100vh - 238px);
}

.split {
  align-items: stretch;
}

.split-text,
.split-img,
.contact-section {
  align-content: center;
}

.consult-bg,
.map-bg {
  min-height: 100%;
}

.home-section,
.cta-band,
.uni-hero,
.uni-controls,
.uni-result-row,
.uni-grid.large,
.contact-section,
.booking-section,
.split-text {
  padding-left: clamp(2rem, 4vw, 4.5rem);
  padding-right: clamp(2rem, 4vw, 4.5rem);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 0 4rem 4rem;
}

.load-more-btn {
  min-width: 230px;
  padding: 0.8rem 1.6rem;
}

@media (min-width: 1500px) {
  .hero h1 {
    font-size: clamp(3.2rem, 3.6vw, 4.3rem);
  }

  .hero-desc {
    font-size: 1.08rem;
  }
}

@media (max-width: 1050px) {
  nav {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
  }

  .logo img {
    height: 58px;
    max-width: 180px;
  }
}

@media (max-width: 900px) {
  body {
    display: block;
  }

  nav {
    display: flex;
    padding: 0.75rem 1rem 0.85rem;
  }

  .logo img {
    height: 52px;
    max-width: 170px;
  }

  .hero,
  .split,
  .contact-section,
  .booking-section {
    min-height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    overflow-y: visible;
  }

  .load-more-wrap {
    padding: 0 1.25rem 3rem;
  }
}

/* Basic Germany application chatbot */
.nav-question {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-question:hover {
  color: var(--green);
}

.pug-chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 9999;
  font-family: "DM Sans", sans-serif;
}

.pug-chat-widget.dismissed {
  display: none;
}

.pug-chat-launcher {
  position: relative;
  display: inline-flex;
}

.pug-chat-toggle {
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: white;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1.08;
  padding: 0.9rem;
  text-align: center;
}

.pug-chat-dismiss {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.pug-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.8rem);
  width: min(380px, calc(100vw - 2rem));
  max-height: min(650px, calc(100vh - 7rem));
  display: none;
  overflow: hidden;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.pug-chat-widget.open .pug-chat-panel {
  display: flex;
  flex-direction: column;
}

.pug-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: var(--green-dark);
  color: white;
  padding: 1rem;
}

.pug-chat-header strong,
.pug-chat-header span {
  display: block;
}

.pug-chat-header strong {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
}

.pug-chat-header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.pug-chat-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.pug-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow-y: auto;
  padding: 1rem;
  min-height: 240px;
}

.pug-chat-message {
  max-width: 90%;
  border-radius: 12px;
  padding: 0.78rem 0.9rem;
  font-size: 0.86rem;
  line-height: 1.45;
}

.pug-chat-message ul {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
}

.pug-chat-message.bot {
  align-self: flex-start;
  background: var(--green-light);
  color: var(--green-dark);
}

.pug-chat-message.user {
  align-self: flex-end;
  background: var(--green);
  color: white;
}

.pug-chat-thinking {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-width: 62px;
}

.pug-chat-thinking span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-dark);
  opacity: 0.35;
  animation: pugChatPulse 1s infinite ease-in-out;
}

.pug-chat-thinking span:nth-child(2) {
  animation-delay: 0.15s;
}

.pug-chat-thinking span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes pugChatPulse {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-4px);
    opacity: 0.9;
  }
}

.pug-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.pug-chat-actions a {
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
}

.pug-chat-chips {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0 1rem 0.85rem;
  scrollbar-width: none;
}

.pug-chat-chips::-webkit-scrollbar {
  display: none;
}

.pug-chat-chips button {
  flex: 0 0 auto;
  border: 0.5px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  padding: 0.45rem 0.7rem;
}

.pug-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  border-top: 0.5px solid var(--border);
  padding: 0.85rem;
}

.pug-chat-form input {
  min-width: 0;
  border: 0.5px solid var(--border);
  border-radius: 999px;
  font: inherit;
  padding: 0.68rem 0.85rem;
}

.pug-chat-form button {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0.65rem 0.9rem;
}

@media (max-width: 700px) {
  .pug-chat-widget {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .pug-chat-toggle {
    width: 76px;
    height: 76px;
    font-size: 0.82rem;
  }

  .pug-chat-panel {
    width: calc(100vw - 1.7rem);
    max-height: calc(100vh - 6rem);
  }
}

/* University predictor */
.predictor-page {
  background: var(--bg);
}

.predictor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 2rem;
  align-items: end;
  background: var(--green-dark);
  color: white;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4.5rem);
}

.predictor-hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.predictor-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.predictor-note {
  border: 0.5px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
}

.predictor-note strong {
  display: block;
  color: var(--amber);
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.predictor-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
  padding: 3rem clamp(2rem, 4vw, 4.5rem) 4rem;
}

.predictor-copy h2 {
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.predictor-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.predictor-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.predictor-list span {
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.65rem 0.85rem;
  font-weight: 600;
}

.predictor-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.5rem;
}

.predictor-form {
  display: grid;
  gap: 1.25rem;
}

.predictor-step {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: var(--bg);
}

.predictor-step h3 {
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.predictor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.predictor-grid label {
  display: grid;
  gap: 0.3rem;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
}

.predictor-grid input,
.predictor-grid select {
  width: 100%;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  font: inherit;
  padding: 0.68rem 0.8rem;
}

.predictor-result {
  display: none;
  margin-top: 1.2rem;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: white;
  padding: 1.3rem;
}

.predictor-result.visible {
  display: block;
}

.predictor-result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.predictor-result-grid div {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.9rem;
}

.predictor-result-grid strong,
.predictor-result-grid span {
  display: block;
}

.predictor-result-grid strong {
  color: var(--amber);
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
}

.predictor-result-grid span,
.predictor-result p {
  color: rgba(255, 255, 255, 0.72);
}

.predictor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.predictor-actions a,
.predictor-actions button {
  text-decoration: none;
}

.predictor-actions .btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .nav-question {
    display: block;
    white-space: nowrap;
    border: 0.5px solid var(--border);
    border-radius: 999px;
    background: var(--bg);
    color: var(--green-dark);
    padding: 0.45rem 0.72rem;
    font-size: 0.82rem;
    line-height: 1;
  }

  .predictor-hero,
  .predictor-wrap,
  .predictor-result-grid,
  .predictor-grid {
    grid-template-columns: 1fr;
  }

  .predictor-wrap {
    padding: 2rem 1.25rem 3rem;
  }
}
