/* Professional Color Palette */
:root {
    --primary: black;
    --primary-dark: black;
    --primary-light: #333333;
    --secondary: #34A853;
    --secondary-dark: #188038;
    --accent: #FBBC04;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --background-dark: #202124;
    --success: #34A853;
    --error: #EA4335;
    --warning: #FBBC04;
}

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

body {
    font-family: 'Times New Roman', Times, serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--background-alt);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--google-red) 0%, #c5221f 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

header .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Main Content */
main {
    padding: 40px 20px;
}

section {
    background: var(--background);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--google-yellow);
}

h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 25px 0 15px 0;
}

/* Property Details */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    padding: 15px;
    background: var(--background-alt);
    border-radius: 8px;
    border-left: 4px solid var(--google-green);
}

.detail-item .label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.detail-item .value {
    display: block;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
}

.amenities ul, .location-info p {
    color: var(--text-secondary);
    margin-left: 20px;
}

.amenities li {
    margin-bottom: 8px;
}

.location-info p {
    margin-bottom: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-placeholder {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-secondary);
    background: var(--background-alt);
    border-radius: 8px;
    border: 2px dashed var(--border);
}

/* Form */
.application-form p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--background);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--google-green);
    box-shadow: 0 0 0 3px rgba(52, 168, 83, 0.1);
}

.submit-btn {
    background: var(--google-red);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #c5221f;
}

.submit-btn:active {
    transform: translateY(1px);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background: #e6f4ea;
    color: var(--google-green);
    border-left: 4px solid var(--google-green);
}

.form-message.error {
    display: block;
    background: #fce8e6;
    color: var(--google-red);
    border-left: 4px solid var(--google-red);
}

/* Schedule Tour */
.calendly-container {
    margin-top: 20px;
}

.calendly-placeholder {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
    background: var(--background-alt);
    border-radius: 8px;
    border: 2px dashed var(--border);
}

/* Contact */
.contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--text-primary);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header .subtitle {
        font-size: 1rem;
    }

    section {
        padding: 25px 20px;
    }

    h2 {
        font-size: 1.5rem;
    }

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

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

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

/* Property Listing Styles */
.properties-list {
    padding: 20px 0;
}

.property-card {
    background: var(--background);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.property-card h3 {
    color: var(--google-red);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.property-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.property-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.highlight-item {
    padding: 12px;
    background: var(--background-alt);
    border-radius: 6px;
}

.highlight-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.highlight-value {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.property-features {
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    background: var(--google-yellow);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.view-details-btn {
    display: inline-block;
    background: var(--google-green);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.view-details-btn:hover {
    background: #2d8e5f;
}

.back-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 1;
}

.property-description-full {
    margin-bottom: 25px;
}

.property-description-full p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.photo-caption {
    text-align: center;
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #bbb;
}

/* Room Availability */
.room-availability {
    background: var(--background);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.room-card {
    background: var(--background-alt);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 2px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card.available {
    border-color: var(--google-green);
}

.room-card.taken {
    border-color: var(--google-red);
    opacity: 0.7;
}

.room-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.room-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.room-card.available .room-status {
    background: var(--google-green);
    color: white;
}

.room-card.taken .room-status {
    background: var(--google-red);
    color: white;
}

.room-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 10px 0;
}

.room-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Video Container */
.video-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.video-container video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .video-container video {
        max-width: 100%;
    }
}

/* Owner Section Styles */
.owner-section {
    margin-bottom: 50px;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 30px;
}

.owner-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--google-red);
}

.owner-header h2 {
    color: var(--google-red);
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: none;
}

.owner-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.contact-note {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
}

/* ===================================
   NEW DESIGN STYLES - OG PROPERTIES
   =================================== */

/* Navigation Bar */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: black;
    border-bottom-color: black;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    color: white;
    padding: 120px 20px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    width: 100%;
}

/* Hero Carousel Slides */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: none;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.carousel-indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Google Logo Colors for Icons */
.icon-blue i {
    color: black !important;
}

.icon-red i {
    color: #EA4335 !important;
}

.icon-yellow i {
    color: #FBBC04 !important;
}

.icon-green i {
    color: #34A853 !important;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Search Form */
.search-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.property-search-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    align-items: end;
    border: 1px solid rgba(255,255,255,0.3);
}

.search-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.search-field label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.search-field input,
.search-field select {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--background);
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
    padding: 12px 24px;
    background: #34A853;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #2d8f47;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
}

/* Portal Cards Section */
.portals-section {
    padding: 60px 20px;
    background: #f5f7fa;
}

.portal-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.portal-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.portal-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.portal-card:hover::before {
    transform: scaleX(1);
}

.portal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: black;
}

.portal-icon i {
    display: block;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: black;
}

.service-icon i {
    display: block;
}

.portal-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 15px 0 10px 0;
}

.portal-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.portal-link-arrow {
    color: var(--google-red);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Services Section */
.services-preview {
    padding: 60px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-item h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 15px 0 10px 0;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* Newest Listings Section */
.newest-listings {
    padding: 60px 20px;
    background: #f5f7fa;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.property-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.property-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.property-card-content {
    padding: 25px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.property-header h3 {
    color: black;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.property-badge {
    background: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.property-card-modern .property-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.property-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.property-features-list {
    margin-bottom: 20px;
}

.feature-chip {
    display: inline-block;
    background: var(--background-alt);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.available-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.view-btn {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.view-all-cta {
    text-align: center;
    margin-top: 40px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #EA4335;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #d33426;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 67, 53, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: #FBBC04;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #FBBC04;
}

.btn-secondary:hover {
    background: #FBBC04;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 188, 4, 0.2);
}

/* Footer */
.main-footer {
    background: var(--background-dark);
    color: white;
    padding: 50px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

.footer-contact li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary-light);
    font-size: 1rem;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .property-search-form {
        grid-template-columns: 1fr;
    }

    .portal-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

/* Room/Dormitory Card Responsive Styles */
@media (max-width: 900px) {
    /* Make room cards stack vertically on tablets and mobile */
    .room-availability > div > div[style*="display: flex"] {
        flex-direction: column !important;
    }

    .room-availability img {
        width: 100% !important;
        height: 200px !important;
    }
}
