/* =============================================
   THE ULTIMUS - 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 ================= */
.ultimus-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    
}

.ultimus-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ultimus-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background-color: #0000002e;
}

.ultimus-hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px 50px;
    text-align: center;
    color: #fff;
}

.hero-tagline {
    font-size: 14px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Price Badge */
.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e5128 0%, #4e9f3d 100%);
    padding: 20px 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-badge .badge-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    background: #fff;
    color: #1e5128;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.price-badge .badge-price {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.price-badge .badge-unit {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    width: 100px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.feature-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.feature-item span {
    font-size: 12px;
    line-height: 1.4;
    display: block;
}

.feature-item strong {
    font-size: 13px;
}

/* ================= CERTIFICATIONS ================= */
.certifications {
    background: #004d40;
    padding: 20px 0;
}

.cert-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.cert-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cert-item span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 150px;
}

/* ================= APARTMENT DETAILS TABLE ================= */
.apartment-details {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.details-table th,
.details-table td {
    padding: 15px 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.details-table th {
    background: #2c3e50;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.details-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.details-table tbody tr:hover {
    background: #e8f4f8;
}

.table-note {
    font-size: 13px;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* ================= AMENITIES SECTION ================= */
.amenities-section {
    padding: 80px 0;
    background: #fff;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.amenities-left h2 {
    font-size: 48px;
    font-weight: 300;
    color: #333;
    line-height: 1.2;
    margin-bottom: 30px;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.amenities-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4e9f3d;
    font-weight: bold;
}

.amenities-right {
    position: relative;
}

.amenities-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.pool-label {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-radius: 5px;
}

/* ================= PERFECT BLEND SECTION ================= */
.perfect-blend {
    padding: 80px 0;
    background: #f8f9fa;
}

.blend-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.blend-left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.blend-right {
    padding: 20px 0;
}

.blend-intro {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blend-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.blend-right h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
}

.conservation-stats {
    margin: 30px 0;
}

.stat-item {
    margin-bottom: 20px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 32px;
    font-weight: 300;
    color: #333;
}

.eco-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.eco-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #555;
}

.eco-features li img {
    width: 24px;
    height: 24px;
}

/* ================= AMENITIES ICONS ================= */
.amenities-icons {
    padding: 60px 0;
    background: #fff;
}

.icons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.icon-item {
    text-align: center;
}

.icon-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.icon-item:hover img {
    filter: grayscale(0%);
}

.icon-item span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* ================= FLOOR PLANS ================= */
.floor-plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
    color: #fff;
}

.floor-plans .section-title {
    color: #fff;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.plan-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.plan-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #f5f5f5;
    padding: 20px;
}

.plan-info {
    padding: 20px;
    text-align: center;
    color: #333;
}

.plan-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.plan-info p {
    font-size: 13px;
    color: #666;
}

.plans-pagination {
    text-align: center;
}

.plans-pagination .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.plans-pagination .dot.active {
    background: #fff;
}

/* ================= GOVT BANNER ================= */
.govt-banner {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 30px 0;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-left h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.banner-left p {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

.banner-center {
    text-align: center;
}

.banner-price {
    display: block;
    font-size: 16px;
    color: #fff;
}

.banner-amount {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.banner-amount small {
    font-size: 24px;
}

.banner-right img {
    height: 80px;
}

/* ================= LOCATION SECTION ================= */
.location-section {
    padding: 80px 0;
    background: #2c3e50;
    color: #fff;
}

.location-section .section-title {
    color: #fff;
}

.map-wrapper {
    text-align: center;
}

.location-map {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ================= LOCATION BENEFITS / ADVANTAGE ================= */
.location-benefits {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.location-benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
}

.location-benefits-image {
    position: relative;
    overflow: hidden;
}

.location-benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-benefits-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 70%, rgba(26, 82, 118, 0.1) 100%);
}

.location-benefits-content {
    background: linear-gradient(135deg, #1a5276 0%, #154360 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.location-benefits-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.location-benefits-content h3 {
    font-size: 14px;
    font-weight: 500;
    color: #90cdf4;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.location-benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.location-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    position: relative;
    z-index: 1;
}

.location-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.location-benefits-list li:last-child {
    border-bottom: none;
}

.location-benefits-list li:hover {
    padding-left: 10px;
    color: #fff;
}

.location-benefits-list li .icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #90cdf4;
    font-size: 14px;
    transition: all 0.3s ease;
}

.location-benefits-list li:hover .icon {
    background: #f39c12;
    color: #fff;
    transform: scale(1.1);
}

.btn-site-plan {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f39c12;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.btn-site-plan:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
    color: #fff;
    text-decoration: none;
}

.btn-site-plan i {
    transition: transform 0.3s ease;
}

.btn-site-plan:hover i {
    transform: translateX(5px);
}

/* Legacy support for old structure */
.benefits-container {
    max-width: 600px;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.benefits-container h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

.benefits-container ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.benefits-container li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.benefits-container li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-size: 20px;
}

/* Responsive for Location Benefits */
@media (max-width: 992px) {
    .location-benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .location-benefits-image {
        height: 300px;
    }

    .location-benefits-content {
        padding: 50px 30px;
    }

    .location-benefits-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .location-benefits-content {
        padding: 40px 20px;
    }

    .location-benefits-content h2 {
        font-size: 1.6rem;
    }

    .location-benefits-list li {
        font-size: 14px;
    }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-left h2 {
    font-size: 36px;
    font-weight: 300;
    color: #4e9f3d;
    line-height: 1.3;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4e9f3d;
}

.contact-form .submit-btn {
    width: 100%;
    background: #1a5276;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.contact-form .submit-btn:hover {
    background: #154360;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .amenities-container,
    .blend-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icons-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-features {
        gap: 15px;
    }

    .feature-item {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .ultimus-hero {
        min-height: 600px;
    }

    .hero-tagline {
        font-size: 12px;
    }

    .price-badge .badge-price {
        font-size: 36px;
    }

    .amenities-left h2 {
        font-size: 36px;
    }

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

    .icons-container {
        grid-template-columns: 1fr 1fr;
    }

    .cert-container {
        justify-content: center;
    }

    .cert-item {
        flex-direction: column;
        text-align: center;
    }

    .details-table th,
    .details-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .feature-item {
        width: 60px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon img {
        width: 25px;
        height: 25px;
    }

    .feature-item span {
        font-size: 10px;
    }
}
