* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'open sans';
    font-size: 12px;
}

/* ── Centered Container ── */
.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Top Utility Bar ── */
.top-bar {
    background: linear-gradient(135deg, #010f36 0%, #010f36 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.ticker-strip {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 10px;
}

.ticker-item .label {
    color: rgba(255, 255, 255, 0.6);
}

.ticker-item .price {
    color: #fff;
    font-weight: 700;
    font-size: 10px;
}

.ticker-item svg {
    width: 14px;
    height: 14px;
}

.ticker-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.top-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 10px;
    height: 38px;
    display: flex;
    align-items: center;
    transition: color 0.2s, background 0.2s;
}

.top-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 4px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}

.social-icons a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.social-icons svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.search-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s, color 0.2s;
    margin-left: 4px;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.search-btn svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Main Navigation Bar ── */
.main-nav {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 100;
}

.main-nav .header-container {
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #0a1628;
}

.logo img {
    width: 200px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #142244 0%, #1a3060 50%, #0a1628 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    clip-path: polygon(50% 0%, 61% 35%, 100% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 0% 35%, 39% 35%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text .company {
    font-size: 22px;
    font-weight: 700;
    color: #0a1628;
    letter-spacing: -0.5px;
}

.logo-text .sub {
    font-size: 13px;
    font-weight: 500;
    color: #5a6a80;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.nav-links a {
    text-decoration: none;
    color: #010f36;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0 15px;
    height: 72px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 22px;
    right: 22px;
    height: 3px;
    background: #1a5fcc;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #1a5fcc;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* ── Hamburger Menu Toggle ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #010f36;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Page Header / Breadcrumb ── */
.page-header {
    background-image: url('assets/slider/1.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom: 1px solid #e0e2e6;
    box-shadow: inset 0 0 0 2000px rgba(1, 55, 126, 0.829);
}

.page-header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 40px 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #f7f7f7;
}

.breadcrumb-sep {
    color: #ff0000;
    font-size: 13px;
    user-select: none;
}

.breadcrumb-current {
    color: #dddfe2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.page-title {
    font-size: 25px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* ── About Section ── */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    min-width: 0;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.about-text {
    flex: 1;
    min-width: 0;
}

.about-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-heading {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 13.2px;
    color: #3d3e3f;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px solid #eef0f3;

}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #0a1628;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: #5a6a80;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 6px;
    text-transform: uppercase;
}

.about-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #0a1628, #142244);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background 0.3s, transform 0.15s, box-shadow 0.3s;
}

.about-btn:hover {
    background: linear-gradient(135deg, #142244, #1a3060);
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.3);
    transform: translateY(-1px);
}

/* ── Vertical Tabs Section ── */
.tabs-section {
    padding: 100px 0 150px;
    background: #f7f8f9;
    min-height: 100vh;
}

.tabs-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.tabs-header {
    text-align: center;
    margin-bottom: 50px;
}

.tabs-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tabs-heading {
    font-size: 32px;
    font-weight: 700;
    color: #0a1628;
    line-height: 1.3;
}

.tabs-layout {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.tabs-image {
    flex: 1;
    min-width: 0;
    position: sticky;
    top: 120px;
}

.tabs-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.vertical-tabs {
    flex: 1;
    min-width: 0;
}

/* Individual Tab */
.v-tab {
    background: #fff;
    border: 1px solid #e0e2e6;
    border-right: 2px solid transparent;
    margin-bottom: 0px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-right-color 0.3s ease;
}

.v-tab.v-tab-open {
    border-right: 2px solid #ff0000;
}

.v-tab.v-tab-visible {
    opacity: 1;
    transform: translateY(0);
}

.v-tab-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 28px;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
}

.v-tab-header:hover {
    background: #fafbfc;
}

.v-tab-number {
    font-size: 14px;
    font-weight: 700;
    color: #ff0000;
    min-width: 30px;
}

.v-tab-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    flex: 1;
}

.v-tab-icon {
    color: #8a95a5;
    transition: transform 0.35s ease, color 0.2s;
    display: flex;
    align-items: center;
}

/* Content Panel */
.v-tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 28px;
}

.v-tab-content p {
    font-size: 13px;
    color: #3d3e3f;
    line-height: 1.8;
    font-weight: 500;
    padding-top: 10px;
}

/* Open State */
.v-tab.v-tab-open .v-tab-content {
    max-height: 500px;
    padding: 0 28px 28px;
}

.v-tab.v-tab-open .v-tab-icon {
    transform: rotate(45deg);
    color: #ff0000;
}

.v-tab.v-tab-open .v-tab-header {
    border-bottom: 1px solid #eef0f3;
}

/* Values Grid inside Tab 3 */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 13px;
    margin: 0;
}

/* ── Contact Section ── */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-wrapper {
    flex: 1.4;
    background: #fff;
    border: 1px solid #e0e2e6;
    border-radius: 8px;
    padding: 40px;
}

.form-heading {
    font-size: 14px;
    font-weight: 700;
    color: #8aad2a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-form .form-row .form-group {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1a2a40;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact-form .required {
    color: #c0392b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #1a2a40;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0a8b4;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #8aad2a;
    box-shadow: 0 0 0 3px rgba(138, 173, 42, 0.12);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #010f36, #010f36);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.15s, box-shadow 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #8aad2a, #769a1e);
    box-shadow: 0 4px 14px rgba(138, 173, 42, 0.35);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ── Contact Info ── */
.contact-info {
    flex: 1;
}

.info-heading {
    font-size: 14px;
    font-weight: 700;
    color: #0a1628;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #eef0f3;
}

.info-card:last-child {
    border-bottom: none;
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #010f36, #010f36);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.info-icon svg {
    width: 18px;
    height: 18px;
}

.info-content h3 {
    font-size: 13px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.info-content p {
    font-size: 13px;
    color: #5a6a80;
    line-height: 1.6;
}

/* ── Services Section ── */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #edf2f6;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card-image {
    width: 100%;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 28px 28px 24px;
}

.service-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.service-card-desc {
    font-size: 13px;
    color: #3d3e3f;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #0a1628;
    font-size: 18px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-card-link:hover {
    color: #1a5fcc;
    transform: translateX(4px);
}

/* ── Student Hero Section ── */
.student-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 460px;
    overflow: hidden;
}

.student-hero>.student-hero-bg {
    display: none;
}

.student-hero-left {
    position: relative;
    z-index: 1;
    background: #010f36;
}

.student-hero-overlay {
    display: none;
}

.student-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 60px 80px;
}

.student-hero-content h1 {
    font-family: 'inter';
    font-size: 44px;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 30px 0;
}

.student-hero-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 36px;
    background: #fff;
    color: #0a1628;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.3s, transform 0.15s, box-shadow 0.3s;
}

.student-hero-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.student-hero-right {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.student-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.student-hero-slide.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .student-hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .student-hero-right {
        height: 250px;
        order: -1;
    }
}

/* ── Student Intro Section ── */
.student-intro {
    padding: 60px 0;
    background: #f5f6f7;
    border-bottom: 1px solid #e8eaed;
}

.student-intro-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.student-intro-text {
    flex: 1;
}

.student-intro-text h2 {
    font-family: 'inter';
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.25;
}

.student-intro-text p {
    font-family: 'open sans';
    font-size: 13px;
    color: #3d3e3f;
    line-height: 1.85;
    font-weight: 400;
    margin: 0 0 30px 0;
    max-width: 820px;
}

.student-apply-btn {
    display: inline-block;
    padding: 13px 32px;
    background: #010f36;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.15s, box-shadow 0.3s;
}

.student-apply-btn:hover {
    background: #010f36;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(2, 10, 7, 0.35);
}

/* Student Intro Logo */
.student-intro-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.student-intro-logo .logo-top {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #1a2a40;
}

.logo-h-letter {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #00acc1 0%, #d4a017 40%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1a2a40;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .student-intro {
        padding: 30px 0;
    }

    .student-intro-container {
        flex-direction: column;
        padding: 0 16px;
        gap: 20px;
    }

    .student-intro-text h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .student-intro-text p {
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .student-apply-btn {
        padding: 10px 24px;
        font-size: 11px;
    }

    .student-intro-logo {
        display: none;
    }

    /* Available Rooms Section */
    .avail-rooms-section {
        padding: 30px 0;
    }

    .avail-rooms-container {
        padding: 0 16px;
    }

    .avail-rooms-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .avail-rooms-title h2 {
        font-size: 24px;
    }

    .avail-rooms-title .title-sub {
        font-size: 20px;
    }

    .avail-nav-btn {
        width: 36px;
        height: 36px;
    }

    .avail-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .avail-rooms-track {
        gap: 12px;
        padding-right: 16px;
    }

    .avail-room-card {
        min-width: 240px;
        max-width: 240px;
    }

    .avail-room-img-wrap {
        height: 160px;
    }

    .avail-room-info {
        padding: 14px 16px 16px;
    }

    .avail-room-name {
        font-size: 14px;
    }

    .avail-room-desc {
        font-size: 11px;
    }

    .avail-room-actions {
        gap: 8px;
    }

    .avail-info-link {
        font-size: 10px;
    }

    .avail-waitlist-btn,
    .avail-reserve-btn {
        padding: 6px 14px;
        font-size: 10px;
    }

    /* Reservation Modal */
    .reserve-modal {
        width: 95%;
        max-height: 85vh;
        border-radius: 16px;
    }

    .reserve-modal-title {
        font-size: 18px;
        padding: 20px 20px 0;
    }

    .reserve-modal-subtitle {
        font-size: 12px;
        padding: 0 20px 14px;
    }

    .reserve-modal-form {
        padding: 0 20px 20px;
    }

    .reserve-field label {
        font-size: 11px;
    }

    .reserve-field input,
    .reserve-field select {
        padding: 9px 12px;
        font-size: 12px;
    }

    /* Hero adjustments */
    .student-hero-left {
        min-height: 260px;
    }

    .student-hero-content {
        padding: 30px 20px;
    }

    .student-hero-content h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .student-hero-btn {
        padding: 10px 28px;
        font-size: 12px;
    }
}

/* ── Available Rooms Section ── */
.avail-rooms-section {
    padding: 60px 0;
    background: #fff;
}

.avail-rooms-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.avail-rooms-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.avail-rooms-title h2 {
    font-family: 'inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.avail-rooms-title .title-highlight {
    color: #010f36;
}

.avail-rooms-title .title-sub {
    font-weight: 400;
    color: #3d3e3f;
    font-size: 32px;
}

.avail-rooms-note {
    font-family: 'open sans', sans-serif;
    font-size: 12px;
    color: #8a95a5;
    margin: 6px 0 0 0;
    font-style: italic;
}

.avail-rooms-nav {
    display: flex;
    gap: 10px;
}

.avail-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #010f36;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
}

.avail-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #010f36;
}

.avail-nav-btn:hover {
    background: rgba(0, 172, 193, 0.1);
    transform: scale(1.05);
}

/* Scrollable track */
.avail-rooms-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    padding-right: 40px;
    scrollbar-width: none;
}

.avail-rooms-track::-webkit-scrollbar {
    display: none;
}

.avail-rooms-loading {
    padding: 40px;
    color: #8a95a5;
    font-family: 'open sans', sans-serif;
    font-size: 14px;
}

/* Room Card */
.avail-room-card {
    min-width: 280px;
    max-width: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.avail-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.avail-room-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.avail-room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.avail-room-card:hover .avail-room-img-wrap img {
    transform: scale(1.05);
}

/* Badge */
.avail-room-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.avail-room-badge.booked {
    background: #e74c3c;
    color: #fff;
}

.avail-room-badge.available {
    background: #010f36;
    color: #fff;
}

/* Price tag */
.avail-room-price {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

/* Info section */
.avail-room-info {
    padding: 18px 20px 20px;
}

.avail-room-name {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a40;
    margin: 0 0 6px 0;
}

.avail-room-desc {
    font-family: 'open sans', sans-serif;
    font-size: 13px;
    color: #5a6a80;
    margin: 0 0 16px 0;
}

.avail-room-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avail-info-link {
    font-family: 'open sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a2a40;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.avail-info-link:hover {
    color: #00acc1;
}

.avail-waitlist-btn,
.avail-reserve-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: capitalize;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.avail-waitlist-btn {
    background: #e74c3c;
    color: #fff;
}

.avail-waitlist-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.avail-reserve-btn {
    background: #010f36;
    color: #fff;
}

.avail-reserve-btn:hover {
    background: #0a1e4a;
    transform: translateY(-1px);
}

/* ── Reservation Modal ── */
.reserve-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.reserve-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.reserve-modal {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 92%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reserve-modal-backdrop.active .reserve-modal {
    transform: translateY(0) scale(1);
}

.reserve-modal::-webkit-scrollbar {
    width: 6px;
}

.reserve-modal::-webkit-scrollbar-track {
    background: transparent;
}

.reserve-modal::-webkit-scrollbar-thumb {
    background: #d0d5dd;
    border-radius: 3px;
}

/* ── Modal Close Button ── */
.reserve-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f4f7;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    color: #5a6a80;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    z-index: 2;
    line-height: 1;
}

.reserve-modal-close:hover {
    background: #e8eaed;
    color: #1a2a40;
    transform: rotate(90deg);
}

/* ── Modal Title & Subtitle ── */
.reserve-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a40;
    margin: 0 0 6px;
    padding: 28px 28px 0;
}

.reserve-modal-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    padding: 0 28px 20px;
    line-height: 1.5;
}

/* ── Modal Form ── */
.reserve-modal-form {
    padding: 0 28px 28px;
}

.reserve-field {
    margin-bottom: 18px;
}

.reserve-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1a2a40;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.reserve-field input,
.reserve-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-family: 'Montserrat', 'open sans', sans-serif;
    font-size: 13px;
    color: #1a2a40;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.reserve-field input:focus {
    border-color: #8aad2a;
    box-shadow: 0 0 0 3px rgba(138, 173, 42, 0.12);
}

.reserve-field input::placeholder {
    color: #a0a8b4;
}

.reserve-field-row {
    display: flex;
    gap: 16px;
}

.reserve-field-row .reserve-field {
    flex: 1;
}

/* ── Room Type Boxes (in modal) ── */
.room-type-boxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.room-type-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1.5px solid #e0e2e6;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.room-type-box:hover:not(.room-unavailable) {
    border-color: #8aad2a;
    background: #fafdf5;
}

.room-type-box.selected {
    border-color: #8aad2a;
    background: linear-gradient(135deg, #f8fdf0 0%, #f2f9e8 100%);
    box-shadow: 0 0 0 3px rgba(138, 173, 42, 0.12);
}

.room-type-box.room-unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9fafb;
}

.room-type-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.room-type-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a2a40;
    letter-spacing: 0.2px;
}

.room-type-price {
    font-size: 12px;
    font-weight: 600;
    color: #8aad2a;
}

.room-type-lock {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-type-lock svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.room-type-lock .icon-unlocked {
    color: #8aad2a;
}

.room-type-lock .icon-locked {
    color: #b43232;
}

.room-status-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #6b7280;
}

.room-type-box.selected .room-status-text {
    color: #8aad2a;
}

.room-type-box.room-unavailable .room-status-text {
    color: #b43232;
}

/* ── Submit Button ── */
.reserve-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0a1628, #142244);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', 'open sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.15s, box-shadow 0.3s;
    margin-top: 8px;
}

.reserve-submit-btn:hover {
    background: linear-gradient(135deg, #8aad2a, #769a1e);
    box-shadow: 0 4px 14px rgba(138, 173, 42, 0.35);
    transform: translateY(-1px);
}

.reserve-submit-btn:active {
    transform: translateY(0);
}

.reserve-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Modal Header */
.reserve-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.reserve-modal-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a2a40;
    margin: 0;
}

.reserve-modal-header .reserve-close-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f4f7;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #5a6a80;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.reserve-modal-header .reserve-close-btn:hover {
    background: #e8eaed;
    color: #1a2a40;
    transform: rotate(90deg);
}

/* Property badge in modal */
.reserve-prop-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 18px 28px 0;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f8fafb 0%, #eef1f5 100%);
    border-radius: 12px;
    border: 1px solid #e8eaed;
}

.reserve-prop-badge .rpb-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00acc1, #0097a7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.reserve-prop-badge .rpb-icon svg {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    fill: #fff;
}

.reserve-prop-badge .rpb-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reserve-prop-badge .rpb-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a2a40;
}

.reserve-prop-badge .rpb-price {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #00897b;
    font-weight: 600;
}

/* Step indicator */
.reserve-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 20px 28px 0;
}

.reserve-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.reserve-step::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e4ea;
    z-index: 0;
}

.reserve-step:last-child::after {
    display: none;
}

.reserve-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0e4ea;
    color: #8a95a5;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.reserve-step.active .reserve-step-num {
    background: #00acc1;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 172, 193, 0.35);
}

.reserve-step.done .reserve-step-num {
    background: #27ae60;
    color: #fff;
}

.reserve-step.done::after {
    background: #27ae60;
}

.reserve-step-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: #8a95a5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.reserve-step.active .reserve-step-label {
    color: #00acc1;
}

.reserve-step.done .reserve-step-label {
    color: #27ae60;
}

/* Modal body panels */
.reserve-modal-body {
    padding: 20px 28px 28px;
}

.reserve-panel {
    display: none;
}

.reserve-panel.active {
    display: block;
    animation: reserveFadeIn 0.3s ease;
}

@keyframes reserveFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Room selection grid */
.reserve-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a2a40;
    margin-bottom: 12px;
}

.reserve-room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.reserve-room-btn {
    padding: 14px 10px;
    background: #f8fafb;
    border: 2px solid #e0e4ea;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
}

.reserve-room-btn:hover:not(.disabled) {
    border-color: #00acc1;
    background: #f0fbfc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 172, 193, 0.15);
}

.reserve-room-btn.selected {
    border-color: #00acc1;
    background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
    box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.15);
}

.reserve-room-btn.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f0f0f0;
}

.reserve-room-btn .rrb-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.reserve-room-btn .rrb-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1a2a40;
    display: block;
}

.reserve-room-btn .rrb-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: #5a6a80;
    display: block;
    margin-top: 2px;
}

.reserve-room-btn.selected .rrb-sub {
    color: #00897b;
}

/* Bed space grid */
.reserve-bed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.reserve-bed-btn {
    padding: 16px 10px;
    background: #f8fafb;
    border: 2px solid #e0e4ea;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.reserve-bed-btn:hover:not(.booked) {
    border-color: #00acc1;
    background: #f0fbfc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 172, 193, 0.15);
}

.reserve-bed-btn.selected {
    border-color: #00acc1;
    background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
    box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.15);
}

.reserve-bed-btn.booked {
    opacity: 0.5;
    cursor: not-allowed;
    background: #fef2f2;
    border-color: #fecaca;
}

.reserve-bed-btn .rbb-icon {
    font-size: 26px;
}

.reserve-bed-btn .rbb-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a2a40;
}

.reserve-bed-btn .rbb-status {
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 10px;
}

.reserve-bed-btn .rbb-status.status-available {
    background: #dcfce7;
    color: #16a34a;
}

.reserve-bed-btn .rbb-status.status-booked {
    background: #fef2f2;
    color: #dc2626;
}

/* Form fields */
.reserve-field {
    margin-bottom: 16px;
}

.reserve-field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3d4f60;
    margin-bottom: 6px;
}

.reserve-field input,
.reserve-field select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e4ea;
    border-radius: 10px;
    background: #f8fafb;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #1a2a40;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.reserve-field input:focus,
.reserve-field select:focus {
    border-color: #00acc1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.12);
}

.reserve-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Summary */
.reserve-summary {
    background: #f8fafb;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e0e4ea;
    margin-bottom: 20px;
}

.reserve-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eef1f5;
}

.reserve-summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reserve-summary-row .rsr-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #5a6a80;
}

.reserve-summary-row .rsr-value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a2a40;
}

.reserve-summary-row.total-row {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid #e0e4ea;
    border-bottom: none;
}

.reserve-summary-row.total-row .rsr-label {
    font-weight: 700;
    color: #1a2a40;
    font-size: 14px;
}

.reserve-summary-row.total-row .rsr-value {
    font-size: 18px;
    color: #00897b;
}

/* Actions */
.reserve-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.reserve-back-btn {
    flex: 0 0 auto;
    padding: 12px 24px;
    border-radius: 12px;
    border: 2px solid #e0e4ea;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #5a6a80;
    cursor: pointer;
    transition: all 0.2s;
}

.reserve-back-btn:hover {
    border-color: #c0c8d4;
    color: #1a2a40;
}

.reserve-next-btn,
.reserve-submit-btn {
    flex: 1;
    padding: 13px 24px;
    border-radius: 12px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}

.reserve-next-btn {
    background: linear-gradient(135deg, #00acc1, #0097a7);
    color: #fff;
}

.reserve-next-btn:hover {
    background: linear-gradient(135deg, #0097a7, #00838f);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 172, 193, 0.35);
}

.reserve-submit-btn {
    background: linear-gradient(135deg, #27ae60, #1e9450);
    color: #fff;
}

.reserve-submit-btn:hover {
    background: linear-gradient(135deg, #1e9450, #1a8547);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.35);
}

.reserve-next-btn:disabled,
.reserve-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success state */
.reserve-success {
    text-align: center;
    padding: 40px 20px;
}

.reserve-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    animation: reserveSuccessPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes reserveSuccessPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.reserve-success h4 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a2a40;
    margin: 0 0 8px;
}

.reserve-success p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #5a6a80;
    line-height: 1.6;
    margin: 0 0 24px;
}

.reserve-done-btn {
    padding: 12px 32px;
    border-radius: 12px;
    border: none;
    background: #00acc1;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.reserve-done-btn:hover {
    background: #0097a7;
    transform: translateY(-1px);
}

/* Loading spinner */
.reserve-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: reserveSpin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes reserveSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Bed space type hint */
.reserve-hint {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: #fef9f0;
    border-radius: 10px;
    border: 1px solid #fde68a;
}

.reserve-hint-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    color: #5a6a80;
    font-weight: 600;
}

.reserve-hint-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.reserve-hint-dot.available-dot {
    background: #22c55e;
}

.reserve-hint-dot.booked-dot {
    background: #ef4444;
}

/* Error message */
.reserve-error {
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    margin-bottom: 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #dc2626;
    display: none;
}

.reserve-error.visible {
    display: block;
    animation: reserveFadeIn 0.3s ease;
}

@media (max-width: 768px) {
    .avail-rooms-section {
        padding: 40px 0;
    }

    .avail-rooms-container {
        padding: 0 20px;
    }

    .avail-rooms-title h2 {
        font-size: 28px;
    }

    .avail-rooms-title .title-sub {
        font-size: 22px;
    }

    .avail-room-card {
        min-width: 260px;
        max-width: 260px;
    }
}

/* ── Hero Mosaic Grid ── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #0a1628;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.35);
    z-index: 2;
    pointer-events: none;
}

/* Mosaic Grid Layout */
.mosaic-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4px;
    width: 100%;
    height: 100%;
}

.mosaic-main {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.mosaic-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.mosaic-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    height: 100%;
}

.mosaic-cell {
    position: relative;
    overflow: hidden;
}

.mosaic-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.mosaic-img.active {
    opacity: 1;
}

/* Center text overlay */
.slider-center-text {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 5;
    text-align: left;
}

.slider-center-text h1 {
    font-family: 'Inter';
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.slider-subtitle {
    display: block;
    font-family: 'open sans';
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Bottom overlay bar */
.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    z-index: 5;
}

.slider-caption {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.slider-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    min-width: 50px;
    justify-content: center;
}

.counter-current {
    font-weight: 700;
}

.counter-sep {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 2px;
}

.counter-total {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Booking Search Form Section ── */
.booking-section {
    background: #010f36;
    padding: 30px 0;
}

.booking-section-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.booking-note {
    font-size: 13px;
    font-weight: 500;
    color: #d4c97a;
    margin-bottom: 10px;
    font-style: italic;
}

.booking-form {
    display: flex;
    align-items: flex-end;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-field {
    flex: 1;
    padding: 0 12px;
}

.booking-field-small {
    flex: 0.6;
}

.booking-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.booking-field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccd5db;
    background: #fff;
    font-family: 'open sans', sans-serif;
    font-size: 13px;
    color: #1a2a40;
    outline: none;
    transition: border-color 0.2s;
}

.booking-field input:focus {
    border-color: #8aad2a;
}

.booking-search-btn {
    padding: 10px 40px;
    background: #8a9bae;
    color: #fff;
    border: none;
    font-family: 'open sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.2s;
    margin-left: 12px;
    align-self: flex-end;
}

.booking-search-btn:hover {
    background: #6e8295;
}

/* ── What Is Section ── */
.what-is-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
}

.what-is-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.what-is-heading {
    font-size: 24px;
    font-weight: 700;
    color: #3d3e3f;
    line-height: 1.35;
    letter-spacing: 0.5px;
    min-width: 240px;
    flex-shrink: 0;
}

.what-is-desc {
    font-size: 13.3px;
    color: #000000;
    line-height: 1.8;
    font-weight: 500;
    font-family: 'open sans';
}

/* ── Apartment Tabs Section ── */
.apt-tabs-section {
    padding: 80px 0;
    background: #fff;
}

.apt-tabs-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Tab Buttons */
.apt-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.apt-tab-btn {
    padding: 16px 40px;
    background: transparent;
    border: 1px solid #c0c4c8;
    font-family: 'open sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #5a6a80;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
}

.apt-tab-btn:hover {
    border-color: #0a1628;
    color: #0a1628;
}

.apt-tab-btn.active {
    border-color: #0a1628;
    color: #0a1628;
    background: #f5f6f7;
}

/* Tab Panels */
.apt-tab-panel {
    display: none;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.apt-tab-panel.active {
    display: flex;
    animation: tabFadeIn 0.6s ease forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.apt-panel-image {
    width: 440px;
    min-width: 440px;
    position: relative;
    overflow: hidden;
    height: 440px;
}

.apt-panel-image img.panel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.apt-panel-image img.panel-slide.active {
    opacity: 1;
}



.apt-panel-info {
    flex: 1;
    min-width: 0;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apt-panel-title {
    font-size: 42px;
    font-weight: 300;
    color: #2c2c2c;
    line-height: 1.15;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.apt-panel-desc {
    font-size: 13.5px;
    color: #3d3e3f;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'open sans', sans-serif;
}

.apt-panel-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apt-panel-specs li {
    font-size: 12px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'open sans', sans-serif;
}

/* ── Reserve Button ── */
.apt-reserve-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 9px 18px;
    align-self: flex-start;
    background: #0a1628;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.15s, box-shadow 0.3s;
}

.apt-reserve-btn:hover {
    background: #1a2a40;
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.35);
    transform: translateY(-2px);
}

.apt-reserve-btn:active {
    transform: translateY(0);
}

/* ── Dynamic Rooms Section ── */
.rooms-section {
    padding: 90px 0;
    background: #f7f8fa;
}

.rooms-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.rooms-header {
    text-align: center;
    margin-bottom: 56px;
}

.rooms-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #ff0000;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rooms-heading {
    font-size: 38px;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 2px;
    line-height: 1.2;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 14px;
}

.rooms-subtext {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Room Card */
.room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    animation: roomCardIn 0.6s ease forwards;
    opacity: 0;
}

@keyframes roomCardIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.room-card-unavailable {
    opacity: 0.7;
}

/* Card Image */
.room-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.room-card-image img.room-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.room-card-image img.room-slide.active {
    opacity: 1;
}

/* Availability Badge */
.room-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 2;
}

.room-badge-available {
    background: rgba(138, 173, 42, 0.92);
    color: #fff;
    backdrop-filter: blur(4px);
}

.room-badge-booked {
    background: rgba(180, 50, 50, 0.88);
    color: #fff;
    backdrop-filter: blur(4px);
}

/* Price Tag */
.room-card-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(10, 22, 40, 0.85);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.room-card-price small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
}

/* Card Body */
.room-card-body {
    padding: 24px 24px 28px;
}

.room-card-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a2a40;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.room-card-desc {
    font-size: 13px;
    color: #5a6a80;
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Specs Row */
.room-card-specs {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #eef0f3;
    margin-bottom: 20px;
}

.room-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5a6a80;
    font-size: 12px;
    font-weight: 600;
}

.room-spec svg {
    width: 16px;
    height: 16px;
    color: #ff0000;
    flex-shrink: 0;
}

/* Sold Out label */
.room-card-soldout {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #b43232;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Empty state */
.rooms-empty {
    text-align: center;
    padding: 60px 20px;
}

.rooms-empty p {
    font-size: 15px;
    color: #8a95a5;
    font-weight: 500;
}

/* ── Loading Skeletons ── */
.skeleton-card {
    pointer-events: none;
}

.skeleton-img {
    width: 100%;
    height: 240px;
    background: #e8eaed;
    border-radius: 12px 12px 0 0;
}

.skeleton-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-line {
    height: 14px;
    border-radius: 8px;
    background: #e8eaed;
}

.skeleton-line.w60 {
    width: 60%;
}

.skeleton-line.w90 {
    width: 90%;
}

.skeleton-line.w40 {
    width: 40%;
}

/* Shimmer animation */
.shimmer {
    background: linear-gradient(90deg, #e8eaed 25%, #f4f5f6 50%, #e8eaed 75%);
    background-size: 200% 100%;
    animation: shimmerAnim 1.5s ease-in-out infinite;
}

@keyframes shimmerAnim {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


/* ── Responsive ── */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-links a {
        padding: 0 14px;
        font-size: 12px;
    }

    .ticker-item {
        font-size: 10.5px;
    }

    .ticker-strip {
        gap: 12px;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .about-container {
        padding: 0 20px;
        gap: 40px;
    }

    .tabs-container {
        padding: 0 20px;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-slider {
        height: 520px;
    }

    .rooms-container {
        padding: 0 20px;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }

    .mosaic-grid {
        grid-template-columns: 1fr;
    }

    .mosaic-side {
        display: none;
    }

    .slider-center-text h1 {
        font-size: 32px;
    }

    .slider-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .slider-overlay {
        padding: 16px 20px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .slider-caption {
        font-size: 12px;
    }

    .booking-section-container {
        padding: 0 16px;
    }

    .booking-form {
        flex-direction: column;
        gap: 16px;
        padding: 18px;
    }

    .booking-field {
        padding: 0;
        width: 100%;
    }

    .booking-field-small {
        flex: 1;
    }

    .booking-search-btn {
        width: 100%;
        margin-left: 0;
        padding: 12px;
    }

    .what-is-container {
        flex-direction: column;
        padding: 0 16px;
        gap: 20px;
    }

    .what-is-heading {
        min-width: unset;
        font-size: 20px;
    }

    .apt-tabs-container {
        padding: 0 16px;
    }

    .rooms-container {
        padding: 0 16px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rooms-heading {
        font-size: 28px;
    }

    .apt-tab-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .apt-tab-btn {
        padding: 14px 20px;
        font-size: 11px;
    }

    .apt-tab-panel.active {
        flex-direction: column;
    }

    .apt-panel-image {
        height: 280px;
    }

    .apt-panel-info {
        padding: 30px 20px;
    }

    .apt-panel-title {
        font-size: 28px;
    }

    .top-bar {
        display: none;
    }

    /* ── Hamburger Button ── */
    .hamburger {
        display: flex;
    }

    .main-nav {
        height: 60px;
        position: relative;
        background: #fff;
        z-index: 1000;
    }

    .main-nav .header-container {
        padding: 0 16px;
        height: 60px;
    }

    .logo img {
        width: 120px;
    }

    /* ── Mobile Nav Links ── */
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        height: auto !important;
        background-color: #ffffff !important;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        border-top: 1px solid #e8ecf1;
        opacity: 1 !important;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        height: auto;
        padding: 12px 24px;
        border-bottom: 1px solid #f0f2f5;
        font-size: 11px;
        justify-content: flex-start;
        background-color: #ffffff !important;
    }

    .nav-links a:hover {
        background-color: #f5f7fa !important;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .contact-container {
        flex-direction: column;
        padding: 0 16px;
        gap: 30px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 20px;
        width: 100%;
    }

    .contact-info {
        width: 100%;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form .form-row .form-group {
        width: 100%;
        flex: none;
    }

    .contact-form .form-group {
        width: 100%;
    }

    .contact-form label {
        font-size: 11px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 12px;
    }

    .info-heading {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .info-card {
        padding: 14px 0;
        gap: 12px;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .info-icon svg {
        width: 14px;
        height: 14px;
    }

    .info-content h3 {
        font-size: 12px;
    }

    .info-content p {
        font-size: 12px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-header-container {
        padding: 20px 16px 30px;
    }

    .about-container {
        flex-direction: column;
        padding: 0 16px;
    }

    .about-image img {
        height: 280px;
    }

    .about-heading {
        font-size: 22px;
    }

    .about-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 22px;
    }

    .tabs-container {
        padding: 0 16px;
    }

    .tabs-layout {
        flex-direction: column;
    }

    .tabs-image {
        position: static;
    }

    .tabs-image img {
        height: 280px;
    }

    .tabs-heading {
        font-size: 24px;
    }

    .v-tab-header {
        padding: 18px 20px;
    }

    .v-tab-content {
        padding: 0 20px;
    }

    .v-tab.v-tab-open .v-tab-content {
        padding: 0 20px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-container {
        padding: 0 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-image img {
        height: 200px;
    }

    .reserve-modal {
        padding: 28px 20px;
    }

    .reserve-field-row {
        flex-direction: column;
        gap: 18px;
    }
}

/* ── Hero Slider ── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}

.hslide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.hslide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Left-to-right dark overlay, high left, zero right */
.hslide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 38%,
            rgba(0, 0, 0, 0.10) 65%,
            rgba(0, 0, 0, 0) 100%);
}

/* Content block */
.hslide-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 520px;
}

.hslide-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Gold rule under title */
.hslide-rule {
    width: 60px;
    height: 3px;
    background: #c9922a;
    margin-bottom: 18px;
}

.hslide-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.92;
}

/* Outlined gold CTA button */
.hslide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 2px solid #c9922a;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    transition: background 0.25s, color 0.25s;
}

.hslide-btn span {
    color: #c9922a;
    font-size: 11px;
    transition: color 0.25s;
}

.hslide-btn:hover {
    background: #c9922a;
    color: #fff;
}

.hslide-btn:hover span {
    color: #fff;
}

/* Chevron indicators */
.hslide-indicators {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.hchev {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 26px;
    height: 16px;
    opacity: 0.45;
    transition: opacity 0.3s;
}

.hchev svg {
    width: 20px;
    height: 12px;
    stroke: #fff;
    fill: none;
}

.hchev.active {
    opacity: 1;
}

.hchev.active svg {
    stroke: #c9922a;
}

.hchev:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 420px;
    }

    .hslide-content h1 {
        font-size: 28px;
    }

    .hslide-content p {
        font-size: 13px;
    }

    .hslide-content {
        left: 5%;
        max-width: 90%;
    }
}

/* ==========================================================
   TEST PAGE STYLES (moved from test.html inline <style>)
   ========================================================== */

/* ── Slider Container ── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* ── Slides ── */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Background image */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease;
}

.slide.active .slide-bg {
    transform: scale(1.04);
}

/* Diagonal overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(115deg,
            rgba(30, 30, 30, 0.82) 0%,
            rgba(30, 30, 30, 0.75) 45%,
            rgba(30, 30, 30, 0.35) 70%,
            transparent 100%);
    z-index: 1;
}

/* Full subtle overlay for readability */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
}

/* ── Slide Content ── */
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6% 60px;
    max-width: 750px;
}

.slide-content h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 0;
    transform: translateY(30px);
}

.slide.active .slide-content h1 {
    transform: translateY(0);
    opacity: 1;
}

.slide-divider {
    width: 60px;
    height: 3px;
    background: #ff0000;
    margin: 22px 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease 0.6s;
}

.slide.active .slide-divider {
    transform: scaleX(1);
}

.slide-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 400px;
    transform: translateY(20px);
    opacity: 1;
}

.slide.active .slide-content p {
    transform: translateY(0);
    opacity: 1;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ff0000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    width: fit-content;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease 0.9s, opacity 0.8s ease 0.9s, background 0.3s ease;
}

.slide.active .cta-btn {
    transform: translateY(0);
    opacity: 1;
}

.cta-btn:hover {
    background: #b07e2f;
    transform: translateX(4px) !important;
}

.cta-btn svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    flex-shrink: 0;
}

/* ── Bottom Navigation Arrows ── */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: transform 0.3s ease;
}

.nav-arrow:hover {
    transform: scale(1.15);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

/* ── Progress Bar ── */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: #ff0000;
    width: 0%;
    transition: width 0.1s linear;
}

/* ── Slide Counter ── */
.slide-counter {
    position: absolute;
    bottom: 35px;
    right: 6%;
    z-index: 10;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

.slide-counter .current {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

/* ── Side dots ── */
.slider-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: #ff0000;
    border-color: #ff0000;
    transform: scale(1.2);
}

.slider-dot:hover {
    border-color: #ff0000;
}

/* ── Slider Responsive ── */
@media (max-width: 768px) {
    .hero-slider {
        max-height: 450px;
    }

    .slide-overlay {
        width: 100%;
        background: linear-gradient(180deg,
                rgba(30, 30, 30, 0.7) 0%,
                rgba(30, 30, 30, 0.4) 60%,
                transparent 100%);
    }

    .slide-content {
        padding: 0 5% 80px;
    }

    .slider-dots {
        display: none;
    }

    .slide-counter {
        display: none;
    }
}

/* ── Intro Section ── */
.intro-section {
    background: #f2f2f0;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .intro-section {
        padding-bottom: 30px;
    }
}

.intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

/* Thin vertical black rule on the left */
.intro-rule {
    width: 5px;
    min-height: 200px;
    background: #010f36;
    flex-shrink: 0;
    margin-top: 6px;
}

.intro-body {
    flex: 1;
}

/* Large headline */
.intro-headline {
    font-family: 'inter';
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 500;
    color: #010f36;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 860px;
}

.intro-headline span {
    color: #ff0000;
    font-weight: 700;
}

/* The gold-underlined word */
.intro-highlight {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #e8c840;
    text-decoration-thickness: 4px;
    text-underline-offset: 5px;
}

/* Body paragraph */
.intro-para {
    font-family: 'open sans';
    font-size: clamp(0.9rem, 1.2rem, 1.25rem);
    color: #4b4a4a;
    line-height: 1.65;
    max-width: 840px;
}

/* Bold gold-underlined company name */
.intro-company {
    font-weight: 700;
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: #ff0000;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

@media (max-width: 768px) {
    .intro-inner {
        gap: 24px;
    }

    .intro-rule {
        min-height: 100px;
    }

    .intro-para {
        font-size: 0.9rem;
        line-height: 1.6rem;
    }
}

/* ── Welcome Section ── */
.welcome-section {
    position: relative;
    background-color: #f2f2f0;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    overflow: hidden;
}

/* Decorative triangles top-right */
.deco-triangles {
    position: absolute;
    right: -10px;
    top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    z-index: 1;
}

.deco-triangles svg:first-child {
    width: 130px;
    height: 130px;
}

.deco-triangles svg:last-child {
    width: 86px;
    height: 86px;
    margin-right: 22px;
}

.welcome-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left */
.welcome-eyebrow {
    font-family: 'inter';
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff0000;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .welcome-eyebrow {
        font-size: 1.5rem;
    }

}

.welcome-title {
    font-family: 'inter';
    font-size: clamp(1.5rem, 0.5vw, 0.8rem);
    font-weight: 700;
    color: #010f36;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.welcome-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 36px;
    font-weight: 500;
}

.welcome-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.welcome-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 2px solid #010f36;
    color: #010f36;
    font-family: 'open sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.welcome-btn svg {
    width: 12px;
    height: 12px;
}

.welcome-btn:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

/* Right — Image */
.welcome-image-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.welcome-video-thumb {
    position: relative;
    background: #16191e;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-image: url('assets/services/8.jpeg');
    background-position: center;
}

.video-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(200, 150, 62, 0.3);
    letter-spacing: 4px;
}

.video-play-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff0000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s, background 0.25s;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.video-play-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #b07e2f;
}

@media (max-width: 768px) {
    .welcome-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .deco-triangles {
        display: none;
    }
}

/* ── Cards Section ── */
.cards-section {
    position: relative;
    background: #010f36;
    padding: 50px 60px 60px;
    overflow: hidden;
}

.cards-viewport {
    overflow: hidden;
    width: 100%;
}

.cards-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.cards-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cards-heading {
        font-size: 1.2rem;
    }
}

.card-item {
    flex: 0 0 calc((100% - 60px) / 4);
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 18px 20px 22px;
}

.card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.card-body p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.80rem;
    color: #313030;
    font-weight: 500;
    line-height: 1.5;
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-top: 14px;
    border-radius: 50%;
    background: #f2f4f7;
    color: #1a2a40;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.card-arrow:hover {
    background: #0a1628;
    color: #fff;
    transform: translateX(4px);
}

/* Arrows */
.cards-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 38px;
    height: 38px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cards-arrow:hover {
    transform: translateY(-60%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cards-arrow svg {
    width: 18px;
    height: 18px;
}

.cards-prev {
    left: 14px;
}

.cards-next {
    right: 14px;
}

/* Dots */
.cards-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.cards-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.cards-dot.active {
    background: #ffffff;
    transform: scale(1.25);
}

@media (max-width: 768px) {
    .card-item {
        flex: 0 0 calc(100% - 0px);
    }

    .cards-section {
        padding: 40px 50px 55px;
    }
}

/* ── Projects Section ── */
.projects-section {
    background: #f2f2f0;
    padding: 70px 6% 80px;
}

.projects-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #010f36;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .projects-heading {
        font-size: 1.2rem;
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.project-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.30) 50%,
            rgba(0, 0, 0, 0.10) 100%);
    transition: background 0.3s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.20) 100%);
}

.project-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 24px;
    z-index: 2;
}

.project-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.project-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 240px;
    }
}

/* ── More About Section ── */
.about-more {
    background: #f2f2f0;
    padding: 70px 0 80px;
}

.about-more-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
}

.about-more-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 600;
    color: #010f36;
    margin-bottom: 16px;
}

.about-more-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.about-more-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    color: #3a3a3a;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 40px;
}

.about-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.about-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    margin-bottom: 0;
    transition: transform 0.4s ease;
}

.about-card:hover .about-card-img {
    transform: scale(1.03);
}

.about-card-body {
    padding: 20px 20px 10px;
}

.about-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #010f36;
    margin-bottom: 10px;
}

.about-card-body p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.80rem;
    color: #3a3a3a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-card-arrow {
    display: inline-flex;
    align-items: center;
    color: #ff0000;
    text-decoration: none;
    transition: transform 0.25s;
}

.about-card-arrow svg {
    width: 20px;
    height: 20px;
}

.about-card-arrow:hover {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .about-more-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   Footer
   ========================================================== */
.site-footer {
    background: #010f36;
    padding: 60px 0 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left side */
.footer-left {
    max-width: 320px;
}

.footer-logo {
    width: 250px;
}

.footer-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 10px;
}

.footer-copy {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 18px;
}

.footer-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #fff;
    font-family: 'open sans';
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-bottom p {
    margin: 0;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-policy-links a:hover {
    color: #fff;
}


.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #ff0000;
    background-color: #fff;
    transition: color 0.2s, transform 0.2s;
    border-radius: 50px;
}

.footer-socials a:hover {
    color: #ff0000;
    transform: scale(1.15);
}

.footer-socials svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
}

/* Right side — nav columns */
.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav-col h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-nav-col a {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-col a:hover {
    color: #ff0000;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 30px;
    }

    .footer-left {
        max-width: 100%;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: flex-start;
    }

    .footer-nav-col {
        align-items: flex-start;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .site-footer {
        padding: 40px 0 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
        gap: 10px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-policy-links {
        justify-content: flex-start;
    }

    .footer-policy-links a {
        font-size: 10px;
    }
}

/* ── Floating Side Buttons ── */
.floating-btns {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 9000;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 18px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.floating-btn:hover {
    transform: translateX(-4px);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.floating-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.floating-btn-contact {
    background: #010f36;
    border-radius: 8px 0 0 0;
}

.floating-btn-whatsapp {
    background: #25d366;
    border-radius: 0 0 0 8px;
}

.floating-btn-whatsapp:hover {
    background: #1ebe5d;
}

@media (max-width: 768px) {
    .floating-btns {
        top: 50%;
        bottom: auto;
        right: 0;
        left: auto;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 0;
    }

    .floating-btn {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        flex: none;
        padding: 10px 6px;
        border-radius: 0;
        font-size: 8px;
        letter-spacing: 1px;
        gap: 4px;
    }

    .floating-btn svg {
        width: 13px;
        height: 13px;
    }

    .floating-btn-contact {
        border-radius: 6px 0 0 0;
    }

    .floating-btn-whatsapp {
        border-radius: 0 0 0 6px;
    }
}

/* ══════════════════════════════════════════════════
   LOCATIONS / MAPS SECTION
   ══════════════════════════════════════════════════ */

.locations-section {
    padding: 80px 0;
    background: #f7f8fa;
}

.locations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.locations-header {
    text-align: center;
    margin-bottom: 50px;
}

.locations-subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ff0000;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.locations-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #010f36;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.locations-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.location-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.location-map {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #e8eaed;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 24px;
}

.location-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.location-icon svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.location-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #010f36;
    margin-bottom: 6px;
    line-height: 1.3;
}

.location-details p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* ── Locations Responsive ── */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .locations-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .locations-section {
        padding: 30px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .locations-heading {
        font-size: 20px;
    }

    .locations-desc {
        font-size: 12px;
    }

    .locations-subtitle {
        font-size: 10px;
    }

    .locations-container {
        padding: 0 16px;
    }

    .location-card {
        border-radius: 8px;
    }

    .location-map {
        height: 150px;
    }

    .location-map iframe {
        height: 150px;
    }

    .location-info {
        padding: 10px 12px;
        gap: 10px;
    }

    .location-details h3 {
        font-size: 13px;
    }

    .location-details p {
        font-size: 11px;
        line-height: 1.4;
    }

    .location-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .location-icon svg {
        width: 12px;
        height: 12px;
    }
}