/* =============================================
   THE SKYLINE - PROJECT DETAIL PAGE STYLES
   ============================================= */

/* ================= PROJECT SUB HEADER ================= */
.project-header {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #1a365d;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.project-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.project-logo img {
    height: 30px;
}

.project-nav {
    display: flex;
    gap: 30px;
}

.project-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-nav a:hover,
.project-nav a.active {
    color: #fff;
    border-bottom-color: #90cdf4;
}

/* ================= HERO SECTION ================= */
.skyline-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 130px;
    overflow: hidden;
}

.skyline-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skyline-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 54, 93, 0.3) 0%,
        rgba(26, 54, 93, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-badges {
    margin-bottom: 30px;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    padding: 15px 30px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.price-text {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}

.hero-title img {
    max-width: 400px;
    height: auto;
}

.hero-certs {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-certs img {
    height: 60px;
}

/* ================= SECTION STYLES ================= */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    color: #1a365d;
    margin-bottom: 40px;
}

/* ================= ABOUT SECTION ================= */
.skyline-about {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* ================= AMENITIES SECTION ================= */
.skyline-amenities {
    padding: 80px 0;
    background: #f8f9fa;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.amenities-list ul {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    padding: 10px 0;
    padding-left: 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #555;
    position: relative;
}

.amenities-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a365d;
    font-weight: bold;
}

.amenities-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ================= FLOOR PLANS SECTION ================= */
.skyline-floor-plans {
    padding: 80px 0;
    background: #fff;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.plan-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.plan-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-image {
    padding: 30px;
    background: #f8f9fa;
    text-align: center;
}

.plan-image img {
    max-width: 100%;
    height: 300px;
    object-fit: contain;
}

.plan-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.plan-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.plan-info p {
    font-size: 13px;
    color: #666;
    margin: 5px 0;
}

.plans-pagination {
    text-align: center;
}

.plans-pagination .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.plans-pagination .dot.active {
    background: #1a365d;
}

/* ================= LOCATION MAP SECTION ================= */
.skyline-location-map {
    padding: 80px 0;
    background: #1a365d;
    color: #fff;
}

.skyline-location-map .section-title {
    color: #fff;
}

.map-wrapper {
    text-align: center;
}

.map-wrapper img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ================= LOCATION BENEFITS SECTION ================= */
.skyline-location-benefits {
    position: relative;
    padding: 80px 0;
    background: url("/public/img/skyline/location-benefits-bg.jpg") center/cover;
    color: #fff;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 39, 68, 0.9);
}

.benefits-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.benefits-col ul {
    list-style: none;
    padding: 0;
}

.benefits-col li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-col li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #90cdf4;
    font-size: 18px;
}

.btn-site-plan {
    display: inline-block;
    background: #1a365d;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-site-plan:hover {
    background: #0f2744;
}

/* ================= CONTACT SECTION ================= */
.skyline-contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-left h2 {
    font-size: 32px;
    font-weight: 300;
    color: #059669;
    line-height: 1.4;
}

.contact-right {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    background: #059669;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #047857;
}

.contact-qr {
    text-align: center;
}

.contact-qr img {
    width: 100px;
    height: 100px;
}

/* ================= FOOTER ================= */
.skyline-footer {
    background: #0f2744;
    color: #fff;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-links h4,
.footer-address h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-address p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-address .contact-info {
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ================= ENQUIRY BUTTON ================= */
.enquiry-fixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.enquiry-btn {
    background: #059669;
    color: #fff;
    padding: 15px 20px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    border-radius: 5px 5px 0 0;
    transition: background 0.3s ease;
}

.enquiry-btn:hover {
    background: #047857;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .project-nav {
        gap: 15px;
        overflow-x: auto;
    }

    .project-nav a {
        white-space: nowrap;
        font-size: 10px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenities-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .project-header {
        top: 70px;
    }

    .project-header-container {
        height: 45px;
    }

    .project-nav {
        gap: 10px;
    }

    .project-logo img {
        height: 25px;
    }

    .skyline-hero {
        margin-top: 115px;
        min-height: 500px;
    }

    .hero-title img {
        max-width: 280px;
    }

    .price-amount {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-grid,
    .benefits-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-right {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .project-header-container {
        padding: 0 10px;
    }

    .project-nav a {
        font-size: 9px;
        padding: 12px 5px;
    }

    .hero-certs {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 24px;
    }

    .benefits-title {
        font-size: 28px;
    }

    .contact-left h2 {
        font-size: 26px;
    }
}
