/* ============================================
   STUDENTS PAGE STYLES
   ============================================ */

/* Main Content */
.main-content {
    width: 100%;
    margin-top: 90px;
    margin-bottom: 100px;
    min-height: 200vh;
    background-color: var(--bg-body-page);
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.page-logo {
    width: 103px;
 
}

/* Info Sections */
.info-section {
    padding: 0 185px;
    margin-top: 60px;
}

.info-section:first-of-type {
    margin-top: 60px;
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: var(--font-semibold);
    color: var(--pink);
    margin: 0 0 35px 0;
    line-height: 1.2;
}

/* Section Paragraph */
.section-paragraph {
    font-size: 20px;
    font-weight: var(--font-light);
    color: var(--black);
    margin: 0 0 15px 0;
    line-height: 1.6;
    text-align: justify;
    max-width: 100%;
}

.section-paragraph strong {
    font-weight: var(--font-medium);
}

/* Regular text within list items */
.regular-text {
    font-weight: var(--font-regular);
}

/* Section List */
.section-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 100px;
}

.section-list li {
    font-size: 20px;
    font-weight: var(--font-medium);
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.section-list li::before {
    content: "⦁";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: var(--font-medium);
}

.section-list li:last-child {
    margin-bottom: 0;
}

/* Arrow Section */
.arrow-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 185px;
    margin-top: 60px;
}

.arrow-icon {
    width: 54px;
    height: 22px;
}

/* Rooms Section */
.rooms-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: var(--bg-body-page);
}

.rooms-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.details-link {
    text-decoration: none;
    color: inherit;
}

.room-card {
    width: 377px;
    height: 316px;
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

/* Thumb image */
.room-thumb {
    width: 100%;
    height: 225px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    transition: background-image 0.3s ease;
}

/* Room Thumb Navigation Arrows */
.room-thumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.room-thumb-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.room-thumb-nav svg {
    color: var(--black);
}

.room-thumb-nav-prev {
    left: 10px;
}

.room-thumb-nav-next {
    right: 10px;
}

/* Show arrows on room-thumb hover */
.room-thumb:hover .room-thumb-nav {
    opacity: 1;
    visibility: visible;
}

/* Disabled state */
.room-thumb-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.room-thumb-nav:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
}

/* Info area */
.room-info {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--dark-gray);
    text-align: left;
    flex: 1;
}

/* Room Lines */
.room-line {
    display: flex;
    align-items: center;
}

/* First Line: Owner and Price */
.room-header {
    justify-content: space-between;
    align-items: center;
}

.room-owner-section {
    display: flex;
    align-items: center;
    gap: 6px;
}

.owner-icon {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
}

.room-owner {
    font-size: 14px;
    font-weight: var(--font-regular);
    color: #3F3F3F;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-value {
    color: var(--pink);
    font-weight: var(--font-semibold);
    font-size: 24px;
}

.price-unit {
    font-size: 11px;
    font-weight: var(--font-regular);
    color: #3F3F3F;
}

/* Second Line: Description */
.room-description {
    font-size: 10px;
    font-weight: var(--font-medium);
    color: #3F3F3F;
    line-height: 1.3;
    display: block;
}

/* Third Line: Zone and Pricing Details */
.room-footer {
    justify-content: space-between;
    align-items: center;
}

.room-zone {
    display: flex;
    align-items: center;
    gap: 4px;
}

.zone-label {
    font-size: 13px;
    font-weight: var(--font-bold);
    color: #3F3F3F;
}

.zone-value {
    font-size: 13px;
    font-weight: var(--font-regular);
    color: #3F3F3F;
}

.pricing-details {
    display: flex;
    align-items: center;
    gap: 4px;
}

.info-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    filter: saturate(0) brightness(0.85);
}

.pricing-text {
    font-size: 10px;
    font-weight: var(--font-regular);
    color: #606060;
}

/* How It Works Section */
.how-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 100px;
    box-sizing: border-box;
}

.how-title {
    font-size: 36px;
    font-weight: var(--font-semibold);
    color: var(--black);
    text-align: center;
    margin-bottom: 36px;
}

.how-grid {
    width: 991px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.how-col {
    background: transparent;
    text-align: center;
    padding: 0 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-icon {
    object-fit: contain;
    margin-bottom: 18px;
    touch-action: manipulation;
}

.how-step-title {
    font-size: 30px;
    font-weight: var(--font-medium);
    color: var(--black);
    max-width: 212px;
    margin: 0 0 12px;
    line-height: 1.1;
}

.how-step-desc {
    color: var(--pink);
    font-size: 14px;
    font-weight: var(--font-regular);
    max-width: 277px;
    margin: 0;
    line-height: 1.4;
}

.how-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 137px;
    background-color: rgb(0, 0, 0);
}

/* Doubts Section */
.doubts-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px 60px;
    box-sizing: border-box;
}

.doubts-container {
    width: 1114px;
    height: 267px;
    background: rgba(250, 250, 250, 1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    box-sizing: border-box;
    box-shadow: 6px 6px 30px -1px rgba(0, 0, 0, 0.25);
}

.doubts-content {
    flex: 1;
    padding-right: 40px;
}

.doubts-title {
    font-size: 36px;
    font-weight: var(--font-semibold);
    color: var(--black);
    margin: 0 0 30px 0;
    line-height: 1.1;
}

.doubts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doubts-item {
    font-size: 20px;
    font-weight: var(--font-medium);
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.doubts-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: bold;
}

.doubts-item:last-child {
    margin-bottom: 0;
}

.doubts-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.whatsapp-button {
    width: 218px;
    height: 55px;
    border-radius: 50px;
    border: none;
    background-color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #b8396a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 66, 120, 0.3);
}

.whatsapp-icon {
    width: 114.77px;
    height: 26.68px;
    touch-action: manipulation;
}

.contact-button {
    width: 218px;
    height: 55px;
    border-radius: 50px;
    border: 1px solid var(--pink);
    background-color: rgba(250, 250, 250, 1);
    color: var(--pink);
    font-size: 20px;
    font-weight: var(--font-medium);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--pink);
    color: var(--white);
}

/* Owner CTA Section */
.owner-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 185px;
    margin-top: 60px;
}

.owner-cta-title {
    font-size: 32px;
    font-weight: var(--font-semibold);
    color: var(--pink);
    margin: 0 0 35px 0;
    text-align: center;
    line-height: 1.2;
}

.owner-cta-paragraph {
    font-size: 20px;
    font-weight: var(--font-regular);
    color: var(--black);
    margin: 0 0 35px 0;
    line-height: 1.6;
    text-align: justify;
    max-width: 100%;
    padding: 0 100px;
}

.owner-cta-button {
    width: 292px;
    height: 47px;
    background-color: var(--pink);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 19px;
    font-weight: var(--font-regular);
    cursor: pointer;
    text-transform: none;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.owner-cta-button:hover {
    background-color: #b8426e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(208, 66, 120, 0.3);
}