/* ===========================
   Granada StudentHouse - CSS
   =========================== */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Nav Links */
.navbar-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #9a9a9a;
  letter-spacing: 0.5px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.nav-link:hover {
  color: #013d86;
  border-bottom: 2px solid #013d86;
}

.nav-link.active {
  color: #013d86;
  font-weight: 600;
  border-bottom: 2px solid #013d86;
}

/* ===========================
   HERO SECTION
   =========================== */
#hero {
  background: linear-gradient(to right, #1f5ea1 40%, #204281 60%);
  border-radius: 30px;
  margin: 24px 24px 20px;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: stretch;
  max-height: 410px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

/* Kiri - Konten */
.hero-content {
  flex: 0 0 45%;
  padding: 24px 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

/* Brand / Logo + Tagline */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-divider {
  width: 2px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-tagline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
}

.hero-tagline strong {
  font-weight: 700;
}

/* Judul */
.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #f5c518;
  line-height: 1.3;
}

/* Deskripsi */
.hero-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8;
  max-width: 620px;
}

/* CTA Button */
.hero-btn {
  display: inline-block;
  padding: 12px 32px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(to right, #1f5ea1, #204281);
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition:
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-btn:hover {
  opacity: 0.9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Kanan - Gambar */
.hero-image {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #1f5ea1 0%, transparent 40%);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===========================
   ABOUT SECTION
   =========================== */
#about {
    padding: 60px 24px;
    margin: 0 16px;
}

.about-container {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* Kiri */
.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-label {
    font-size: 24px;
    font-weight: 500;
    color: #9A9A9A;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    color: #013D86;
    line-height: 1.3;
}

.about-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background-color: #204383;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 18px;
    color: #ffffff;
}

.feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #013D86;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12px;
    color: #666;
    line-height: 1.7;
}

.about-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    background: linear-gradient(to right, #1F5EA1, #204281);
    border: 1px solid #1F5EA1;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    width: fit-content;
    margin-top: 8px;
    transition: opacity 0.2s ease;
}

.about-btn:hover {
    opacity: 0.85;
}

/* Kanan - Gambar */
.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-img-top img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.about-img-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-img-bottom img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
}

.about-img-full img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
}

/* Responsive About */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   ROOMS / TYPE UNIT SECTION
   =========================== */
#rooms {
    padding: 60px 24px;
    margin: 32px 0 0;
    background-color: #F4F6FA;
}

.rooms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rooms-header {
    text-align: center;
    margin-bottom: 40px;
}

.rooms-title {
    font-size: 32px;
    font-weight: 800;
    color: #013D86;
    letter-spacing: 1px;
}

.rooms-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #013D86;
    letter-spacing: 2px;
    margin-top: 6px;
}

/* Grid Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.room-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.room-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.room-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.room-name {
    font-size: 18px;
    font-weight: 800;
    color: #013D86;
}

.room-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}

/* Specs */
.room-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 8px 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #F4F6FA;
    padding: 8px 10px;
    border-radius: 8px;
}

.spec-item i {
    font-size: 14px;
    color: #013D86;
}

.spec-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    background-color: #204383;
    border-radius: 6px;
    padding: 5px;
}

.spec-item span {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

/* Button */
.room-btn {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 50px;
    background: linear-gradient(to right, #1F5EA1, #204281);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    width: fit-content;
    margin-top: 4px;
    transition: opacity 0.2s ease;
}

.room-btn:hover {
    opacity: 0.85;
}

/* Responsive Rooms */
@media (max-width: 900px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   KONSEP KAWASAN SECTION
   =========================== */
#facilities {
    background: linear-gradient(to right, #1F5EA1 40%, #204281 60%);
    margin: 0;
    padding: 48px 40px;
}

.kawasan-container {
    max-width: 1200px;
    margin: 0 auto;
}

.kawasan-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #F5C518;
    margin-bottom: 32px;
}

.kawasan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.kawasan-img {
    border-radius: 16px;
    overflow: hidden;
}

.kawasan-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.kawasan-img:hover img {
    transform: scale(1.04);
}

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

@media (max-width: 640px) {
    .kawasan-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   ASET SECTION
   =========================== */
#aset {
    margin: 32px 16px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    background-image: url('../images/bg-10.png');
    background-size: cover;
    background-position: center;
}

#aset::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.aset-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
}

.aset-left {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.aset-overlay {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aset-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.aset-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    max-width: 400px;
}

.aset-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(to right, #1F5EA1, #204281);
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.2s ease;
}

.aset-btn:hover {
    opacity: 0.85;
}

.aset-right {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maps-iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 16px;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Responsive Aset */
@media (max-width: 900px) {
    .aset-container {
        grid-template-columns: 1fr;
    }

    .aset-left {
        padding: 32px 24px;
    }

    .aset-right {
        padding: 0 24px 32px;
    }

    .aset-right iframe {
        height: 220px;
    }
}

/* ===========================
   SLIDER KONSULTASI SECTION
   =========================== */
#testimonials {
    padding: 48px 40px;
    margin: 0 16px 32px;
}

.slider-section {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Kiri */
.slider-left {
    background-image: linear-gradient(135deg, rgba(31,94,161,0.85), rgba(32,66,129,0.85)), url('../assets/images/bg-kusntasli.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 24px 0 0 24px;
}

.slider-tag {
    font-size: 12px;
    font-weight: 600;
    color: #F5C518;
    letter-spacing: 1px;
}

.slider-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.slider-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.slider-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.slider-list li {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-list li i {
    color: #F5C518;
    font-size: 16px;
}

.slider-list li img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Kanan */
.slider-right {
    padding: 32px 32px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-konsul-label {
    font-size: 16px;
    font-weight: 700;
    color: #013D86;
}

.slider-konsul-sub {
    font-size: 13px;
    color: #777;
}

.slider-divider {
    width: 100%;
    height: 1px;
    background-color: #e8e8e8;
    margin: 8px 0;
}

/* Slider */
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.slider-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide-item {
    min-width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.slide-item img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 16px;
    background-color: #f4f6fa;
}

.slide-name {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.45);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.slide-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #1F5EA1, #204281);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #013D86;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: background 0.2s ease;
}

.slider-btn:hover {
    background: #ffffff;
    color: #013D86;
}

.slider-btn:active,
.slider-btn:focus {
    outline: none;
    background: #ffffff;
}

.slider-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dot.active {
    background-color: #013D86;
    width: 20px;
    border-radius: 4px;
}

/* Responsive Slider */
@media (max-width: 900px) {
    .slider-section {
        grid-template-columns: 1fr;
    }

    .slider-left {
        border-radius: 24px 24px 0 0;
    }

    .slider-right {
        padding: 24px;
    }
}

/* ===========================
   CONTACT / KONSULTASI SECTION
   =========================== */
#contact {
    padding: 60px 40px;
    margin: 40px 16px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.consult-label {
    font-size: 13px;
    font-weight: 500;
    color: #9A9A9A;
    margin-bottom: 8px;
}

.consult-title {
    font-size: 26px;
    font-weight: 700;
    color: #013D86;
    line-height: 1.3;
    margin-bottom: 14px;
}

.consult-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Phone Box */
.consult-phone {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #F4F6FA;
    padding: 16px 20px;
    border-radius: 14px;
    width: fit-content;
}

.phone-icon {
    width: 44px;
    height: 44px;
    background-color: #204383;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon i {
    font-size: 18px;
    color: #ffffff;
}

.phone-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-text span {
    font-size: 12px;
    color: #777;
}

.phone-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #013D86;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.why-icon {
    width: 52px;
    height: 52px;
    background-color: #204383;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 20px;
    color: #ffffff;
}

.why-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.why-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: #013D86;
    line-height: 1.4;
}

.why-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: linear-gradient(to right, #1F5EA1, #204281);
}

.footer-main {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 32px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.social-btn:hover {
    background: rgba(255,255,255,0.3);
}

.social-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding: 16px 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* ===========================
   HAMBURGER MENU
   =========================== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #013d86;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Tablet */
@media (max-width: 900px) {
  .navbar-nav ul {
    gap: 20px;
  }

  .nav-link {
    font-size: 11px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-content {
    padding: 36px 32px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hamburger {
    display: flex;
  }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
  }

  .navbar-nav.open {
    display: block;
  }

  .navbar-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 24px;
  }

  .navbar-nav ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-nav ul li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: none;
  }

  .nav-link.active {
    border-bottom: none;
    border-left: 3px solid #013d86;
    padding-left: 12px;
    color: #013d86;
  }

  .nav-link:hover {
    border-bottom: none;
    border-left: 3px solid #013d86;
    padding-left: 12px;
    color: #013d86;
  }

  /* Hero mobile */
  #hero {
    margin: 12px;
    border-radius: 16px;
  }

  .hero-container {
    flex-direction: column;
    max-height: none;
  }

  .hero-content {
    padding: 32px 24px 20px;
    gap: 16px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-image {
    width: 100%;
    height: 220px;
    flex: unset;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 16px 16px;
  }
}
