/* General Styles for Areas Parent Page */
.inner-areas-wrap {
    font-family: "Gotham Book", Arial, sans-serif;
}

/* Areas Listing Section */
.areas-listing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.areas-listing-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.areas-listing-content h2 {
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
}

.areas-listing-content h2 strong {
    color: #00B7DF;
}

.areas-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.area-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px 28px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,183,223,0.05), transparent);
    transition: left 0.5s ease;
}

.area-card:hover::before {
    left: 100%;
}

.area-card:hover {
    transform: translateY(-8px);
    border-color: #00B7DF;
    box-shadow: 0 12px 32px rgba(0,183,223,0.15);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00B7DF 0%, #0090b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
}

.area-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.area-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.area-card:hover h3 {
    color: #00B7DF;
}

.area-arrow {
    font-size: 28px;
    color: #00B7DF;
    font-weight: bold;
    margin-top: 8px;
    transition: transform 0.3s ease;
}

.area-card:hover .area-arrow {
    transform: translateX(8px);
}

.no-areas {
    text-align: center;
    font-size: 20px;
    color: #666;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Areas Services Section */
.areas-services-section {
    padding: 100px 0;
    background-color: #fff;
}

.areas-services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.areas-services-content h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
}

.areas-services-content h2 strong {
    color: #00B7DF;
}

.areas-services-content > p {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background: #f8f9fa;
    padding: 36px;
    border-radius: 12px;
    border-left: 4px solid #00B7DF;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0,183,223,0.1);
    background: #fff;
}

.service-item h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.service-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-btn {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, #00B7DF 0%, #0090b3 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,183,223,0.2);
}

.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,183,223,0.3);
    background: linear-gradient(135deg, #0090b3 0%, #006b87 100%);
}

/* Areas CTA Section */
.areas-cta-section {
    padding: 5rem 0 10rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.areas-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(0,183,223,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.areas-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.areas-cta-content .pricing-ctas {
    position: relative;
    z-index: 2; /* Add this */
}

.areas-cta-content h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.areas-cta-content h2 strong {
    color: #00B7DF;
}

.areas-cta-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #e8e8e8;
}

/* Pricing CTAs */
.pricing-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pricing-ctas a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pricing-ctas a.first {
    background-color: #00B7DF;
    color: #fff;
    border: 2px solid #00B7DF;
}

.pricing-ctas a.first:hover {
    background-color: #0090b3;
    border-color: #0090b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,183,223,0.3);
}

.pricing-ctas a:not(.first) {
    background-color: #fff;
    color: #1a1a2e;
    border: 2px solid #fff;
}

.pricing-ctas a:not(.first):hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.svgnicon {
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .areas-listing-content h2,
    .areas-services-content h2,
    .areas-cta-content h2 {
        font-size: 42px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .areas-listing-section,
    .areas-services-section,
    .areas-cta-section {
        padding: 60px 0;
    }
    
    .areas-listing-content,
    .areas-services-content,
    .areas-cta-content {
        padding: 0 20px;
    }
    
    .areas-listing-content h2,
    .areas-services-content h2,
    .areas-cta-content h2 {
        font-size: 36px;
    }
    
    .areas-intro,
    .areas-services-content > p {
        font-size: 18px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .area-card {
        padding: 28px 24px;
    }
    
    .area-card h3 {
        font-size: 20px;
    }
    
    .service-item {
        padding: 28px;
    }
    
    .service-item h3 {
        font-size: 22px;
    }
    
    .pricing-ctas {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .pricing-ctas a {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .areas-listing-content h2,
    .areas-services-content h2,
    .areas-cta-content h2 {
        font-size: 32px;
    }
    
    .areas-intro,
    .areas-services-content > p,
    .areas-cta-content p {
        font-size: 17px;
    }
    
    .area-icon {
        width: 50px;
        height: 50px;
    }
    
    .area-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .service-item {
        padding: 24px;
    }
}