/* ========================================
   ALL ZONE CORPORATE SERVICES - MAIN CSS
   Modular CSS Architecture
   ======================================== */

/* Import Base Modules */
@import url('./base.css');
@import url('./header.css');
@import url('./hero.css');
@import url('./components.css');
@import url('./forms.css');
@import url('./pages.css');
@import url('./responsive.css');


/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.1), rgba(0, 116, 255, 0.1));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 50px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a:hover {
    color: #ffffff;
}

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

/* Jurisdiction Section */
.jurisdiction-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.jurisdiction-header {
    text-align: center;
    margin-bottom: 50px;
}

.jurisdiction-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    z-index: 100;
}

.jurisdiction-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.jurisdiction-card h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 15px;
}

.jurisdiction-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: white;
    transform: translateX(5px);
}

.jurisdiction-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 100;
    pointer-events: auto;
    touch-action: manipulation;
}

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

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.8), rgba(0, 116, 255, 0.6));
    padding: 100px 0;
    text-align: center;
}

.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Properties Section */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 280px;
    position: relative;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.property-image {
    display: none;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #0074FF;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 3;
}

.property-content,
.property-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.property-content h3,
.property-info h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.property-content p,
.property-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.property-location i {
    color: #ffffff;
}

.property-price {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: 0;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.property-features span,
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.property-features span i,
.feature-item i {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Property Details */
.property-details {
    padding: 80px 0;
}

.property-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Government Agencies Section */
.government-agencies {
    padding: 100px 0;
    background: rgba(0, 116, 255, 0.05);
}

/* Promotional Offers Slider */
.promotional-offers {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.promotional-offers .section-header h2 {
    color: white;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.offers-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 30px;
}

.offers-slider {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
}

.offer-item {
    min-width: 100%;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    /* Add vertical padding so image doesn't touch edges (smaller now) */
    padding: 1rem 0;
}

.offer-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-image img {
    width: 65%;
    max-width: 640px; /* smaller cap */
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

/* Use existing .slider-btn styles for the arrows; slightly larger */
.offers-prev, .offers-next {
    width: 56px;
    height: 56px;
}

@media (max-width: 768px) {
    .promotional-offers { padding: 40px 0; }
    .offers-prev, .offers-next { width: 44px; height: 44px; }
    .offer-item { padding: 0.6rem 0; }
    .offer-image img { width: 85%; max-width: 480px; }
}

.government-agencies .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.government-agencies .section-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.agencies-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.agencies-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.agencies-slider::-webkit-scrollbar {
    display: none;
}

.agency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    min-width: 220px;
    max-width: 220px;
    flex-shrink: 0;
}

.agency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.2));
    border-color: rgba(212, 175, 55, 0.6);
}

.agency-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 0.5rem;
}

.agency-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.agency-item h3 {
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.slider-btn {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border: none;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #FFD700, #F4C430);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    transform: none;
}

/* Process Timeline */
.process-timeline {
    padding: 80px 0;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    background: #0074FF;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 30px;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Real Estate Page Styles */
.real-estate-benefits {
    margin-top: 80px;
    padding: 60px 0;
    background: rgba(0, 116, 255, 0.03);
    border-radius: 20px;
}

.real-estate-benefits .section-header {
    margin-bottom: 50px;
}

.real-estate-benefits .section-header h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 116, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 116, 255, 0.2);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #0074FF;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Properties Section Spacing */
.properties {
    padding-top: 120px !important;
}

.section-header {
    margin-bottom: 60px;
}

/* Property Card Enhancements for Real Estate Page */
.properties .property-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.properties .property-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 116, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 116, 255, 0.25);
}

.property-description {
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 116, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #0074FF;
}

.property-description p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.property-info .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* Properties CTA Section */
.properties-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 116, 255, 0.1), rgba(0, 116, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(0, 116, 255, 0.2);
}

.properties-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.properties-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Real Estate Page */
@media (max-width: 768px) {
    .real-estate-benefits {
        margin-top: 50px;
        padding: 40px 0;
    }

    .real-estate-benefits .section-header h3 {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 25px 15px;
    }

    .benefit-item i {
        font-size: 2rem;
    }

    .benefit-item h4 {
        font-size: 1.2rem;
    }

    .properties-cta {
        margin-top: 50px;
        padding: 40px 20px;
    }

    .properties-cta h3 {
        font-size: 1.6rem;
    }

    .properties-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        padding: 20px 10px;
    }

    .property-description {
        margin: 15px 0;
        padding: 15px;
    }

    .properties-cta {
        padding: 30px 15px;
    }
}