/*
Theme Name: Coliving Child
Template: twentytwentyfive
Description: Custom child theme for coliving property rentals
Author: Your Name
Version: 1.0.0
*/

/* Color Variables */
:root {
    --primary-blue: #60a5fa;
    --dark-blue: #2563eb;
    --light-blue: #dbeafe;
    --primary-green: #10b981;
    --dark-green: #059669;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --border-gray: #e5e7eb;
    --background-light: #f9fafb;
}

/* Force homepage styles - override parent theme */
body .homepage {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body .homepage .hero {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%) !important;
    color: white !important;
    padding: 120px 20px !important;
    text-align: center !important;
    width: 100% !important;
}

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

/* Properties Archive Page */
.properties-archive {
    padding: 40px 20px;
    background: var(--background-light);
    min-height: 100vh;
}

.properties-archive h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.property-card {
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.2);
}

.property-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-image-wrapper {
    position: relative;
    overflow: hidden;
}

.property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.property-badges-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.property-badge {
    background: rgba(96, 165, 250, 0.5);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-info h2 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
}

.price-wrapper {
    margin: 15px 0;
}

.price-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 6px;
    font-weight: 500;
}

.property-card .starting-price {
    display: inline-block;
    background: rgba(96, 165, 250, 0.85);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.property-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 15px;
}

.property-stats span {
    background: var(--background-light);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-stats span::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

.room-amenities-highlight {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-tag {
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.amenity-tag::before {
    content: "✓";
    font-weight: bold;
}

.single-property {
    background: white;
}

.property-hero {
    width: 100%;
    margin-bottom: 0;
}

.property-hero img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.property-header {
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-gray);
    max-width: 1200px;
    margin: 0 auto;
}

.property-header h1 {
    font-size: 36px;
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.property-location {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.property-header-meta {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 20px 0;
    flex-wrap: wrap;
}

.price-info .price-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 6px;
    font-weight: 500;
}

.property-header .starting-price {
    display: inline-block;
    background: rgba(96, 165, 250, 0.85);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 600;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-badge {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.weekly-available {
    font-size: 13px;
    color: var(--text-gray);
    font-style: italic;
}

.single-property .property-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 30px 20px;
    background: var(--background-light);
    max-width: 1200px;
    margin: 0 auto;
}

.single-property .property-stats .stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.single-property .property-stats .label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-property .property-stats .value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.video-tour {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-tour h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.property-description {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.property-description h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.property-description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.photo-gallery {
    padding: 40px 20px;
    background: var(--background-light);
}

.photo-gallery h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

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

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 30px;
    padding: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.gallery-prev:hover, .gallery-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}
.amenities-section {
    padding: 40px 20px;
    background: white;
}

.amenities-section h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--text-dark);
    text-align: center;
}

.amenity-group {
    margin: 35px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.amenity-group h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.amenity-group ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.amenity-group li {
    padding: 12px 16px;
    background: var(--background-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.amenity-group li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

.rooms-section {
    padding: 50px 20px;
    background: var(--background-light);
}

.rooms-section h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--text-dark);
    text-align: center;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.room-card {
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    background: white;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.2);
}

.room-card a {
    text-decoration: none;
    color: inherit;
}

.room-image-wrapper {
    position: relative;
    overflow: hidden;
}
/* Availability Ribbon (corner) */
.available-ribbon,
.unavailable-ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    padding: 8px 20px 8px 15px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 20;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.available-ribbon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.available-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    border-left: 5px solid #047857;
    border-bottom: 5px solid transparent;
}

.unavailable-ribbon {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.unavailable-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    border-left: 5px solid #374151;
    border-bottom: 5px solid transparent;
}
.coming-soon-ribbon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.coming-soon-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    border-left: 5px solid #b45309;
    border-bottom: 5px solid transparent;
}

/* Update amenity badges to not conflict with ribbon */
.amenity-badge {
    background: rgba(96, 165, 250, 0.5) !important;
    backdrop-filter: blur(8px);
}

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

.room-badges-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.room-badge {
    background: rgba(16, 185, 129, 0.5);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.room-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
/* Push View Room button to bottom */
.room-card .btn-view {
    margin-top: auto;
}

.room-info h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 10px 0;
}

.price-weekly {
    font-size: 14px;
    color: var(--text-gray);
    margin: 5px 0 15px 0;
}

.room-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 15px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.room-stats span {
    background: var(--background-light);
    padding: 6px 12px;
    border-radius: 6px;
}

.btn-book, .btn-view, .btn-book-large, .btn-back {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s;
    text-align: center;
}

.btn-book:hover, .btn-view:hover, .btn-book-large:hover, .btn-back:hover {
    background: var(--dark-blue);
}

.btn-book-large {
    font-size: 18px;
    padding: 16px 40px;
    margin: 30px 0;
}

.btn-view {
    width: 100%;
    margin-top: 15px;
    display: block;
    text-align: center !important;
    padding: 12px 24px;
}
/* Force center alignment for View Room button */
.room-card .btn-view {
    text-align: center !important;
    display: block !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.btn-back {
    background: var(--text-gray);
    margin-left: 15px;
}

.btn-back:hover {
    background: var(--text-dark);
}

.property-footer {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-top: 1px solid var(--border-gray);
    max-width: 1200px;
    margin: 0 auto;
}

.single-room {
    background: white;
}

.breadcrumb {
    padding: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
}

.room-header {
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-gray);
}

.room-header h1 {
    font-size: 32px;
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.property-name {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.room-pricing {
    margin: 15px 0;
}

.price-monthly {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-right: 15px;
}

.availability-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 15px 0;
}

.availability-status.available {
    background: #d1fae5;
    color: #065f46;
}

.availability-status.not_available {
    background: #fee2e2;
    color: #991b1b;
}

.room-hero {
    width: 100%;
}

.room-hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.room-gallery {
    padding: 40px 20px;
    background: var(--background-light);
}

.room-gallery h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.room-features {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-group {
    margin: 30px 0;
}

.feature-group h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.feature-group ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.feature-group li {
    padding: 10px 14px;
    background: var(--background-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-group li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
}

.room-footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--background-light);
}

.room-specs-section {
    padding: 40px 20px;
    background: var(--background-light);
    max-width: 1200px;
    margin: 0 auto;
}

.room-specs-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.spec-group {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
}

.spec-group h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.spec-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.spec-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.amenities-list {
    gap: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--background-light);
    border-radius: 6px;
}

.amenity-item .checkmark {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

.hero {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin: 0 0 40px 0;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.featured-properties {
    padding: 80px 20px;
    background: white;
}

.featured-properties h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 50px 0;
    color: var(--text-dark);
}

.properties-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.property-card-featured {
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    display: flex;
    flex-direction: column;
}

.property-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
}

.property-card-featured a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-card-featured img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-card-featured .property-info {
    padding: 24px;
}

.property-card-featured h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
}

.property-card-featured .price {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.property-card-featured .quick-stats {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-gray);
}

.property-card-featured .quick-stats span {
    background: var(--background-light);
    padding: 6px 12px;
    border-radius: 6px;
}

.view-all {
    text-align: center;
}

.why-choose-us {
    padding: 80px 20px;
    background: var(--background-light);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 50px 0;
    color: var(--text-dark);
}

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

.benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.benefit p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.how-it-works {
    padding: 80px 20px;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 60px 0;
    color: var(--text-dark);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.step-arrow {
    font-size: 36px;
    color: var(--primary-blue);
    font-weight: 300;
}

.cta-final {
    text-align: center;
}

.btn-primary-large {
    background: var(--primary-blue);
    color: white;
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.site-header {
    background: white;
    border-bottom: 1px solid var(--border-gray);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 300px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.btn-nav {
    background: var(--primary-blue);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

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

.footer-col h3 {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: white;
}

.footer-col p {
    margin: 0 0 10px 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-col ul li {
    margin: 0 0 12px 0;
}

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

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .property-stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-close {
        top: 15px;
        right: 25px;
        font-size: 40px;
    }
    
    .gallery-prev, .gallery-next {
        font-size: 24px;
        padding: 12px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .properties-row {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .main-navigation {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        padding: 40px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        align-items: flex-start;
        gap: 20px;
    }
    
    .main-navigation.mobile-active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

.about-page {
    background: white;
}

.page-hero {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.page-hero .lead {
    font-size: 22px;
    margin: 0;
    opacity: 0.95;
}

.our-story {
    padding: 80px 20px;
    background: white;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    margin: 0 0 30px 0;
    color: var(--text-dark);
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 20px 0;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.our-values {
    padding: 80px 20px;
    background: var(--background-light);
}

.our-values h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 60px 0;
    color: var(--text-dark);
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-gray);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.why-jacksonville {
    padding: 80px 20px;
    background: white;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-content h2 {
    font-size: 36px;
    margin: 0 0 30px 0;
    color: var(--text-dark);
}

.why-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0 0 20px 0;
}

.about-cta {
    padding: 80px 20px;
    background: var(--background-light);
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
    color: var(--text-dark);
}

.about-cta p {
    font-size: 20px;
    color: var(--text-gray);
    margin: 0 0 40px 0;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-page {
    background: white;
}

.contact-content {
    padding: 80px 20px;
    background: white;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.contact-form-section p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 0 30px 0;
}

/* Contact Form 7 Styling */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background: var(--primary-blue);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--dark-blue);
}

.wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 12px;
    border-radius: 6px;
}

.wpcf7-mail-sent-ok {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.wpcf7-validation-errors {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Contact Info Section */
.contact-info-section {
    background: var(--background-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-gray);
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.contact-details p {
    font-size: 16px;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.social-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.social-section h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    color: var(--text-dark);
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.contact-cta {
    padding: 80px 20px;
    background: var(--background-light);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
    color: var(--text-dark);
}

.contact-cta p {
    font-size: 20px;
    color: var(--text-gray);
    margin: 0 0 40px 0;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section {
        padding: 30px 20px;
    }
}/* ==========================================
   BOOKING PAGE STYLES
   ========================================== */

.booking-page {
    background: white;
}

.booking-hero {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.booking-hero h1 {
    font-size: 36px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.booking-hero .location {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
}

.booking-stats {
    padding: 40px 20px;
    background: var(--background-light);
}

.booking-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-stats .stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.booking-stats .label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-stats .value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.booking-widget-section {
    padding: 60px 20px;
    background: white;
}

.booking-widget-section h2 {
    text-align: center;
    font-size: 32px;
    margin: 0 0 40px 0;
    color: var(--text-dark);
}

.booking-widget-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: var(--background-light);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
}

.booking-contact {
    padding: 60px 20px;
    background: var(--background-light);
}

.booking-contact h2 {
    text-align: center;
    font-size: 32px;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.booking-contact > .container > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin: 0 0 40px 0;
}

.booking-contact .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.booking-contact .contact-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
}

.booking-contact .contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.booking-contact .contact-details h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.booking-contact .contact-details p {
    font-size: 16px;
    margin: 0;
    color: var(--text-gray);
}

.booking-contact .contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.booking-contact .contact-details a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.back-to-property {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 28px;
    }
    
    .booking-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-contact .contact-grid {
        grid-template-columns: 1fr;
    }
}/* ==========================================
