/* ===============================================
   Inner Page Styles
   =============================================== */

/* Page Header Section */
.page-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(0, 168, 150, 0.88) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.page-header .breadcrumb-item {
    font-size: 0.95rem;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.page-header .breadcrumb-item a:hover {
    color: #f4a259;
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Page Content Section */
.page-content {
    padding: 80px 0;
    background: #ffffff;
}

/* Content Article */
.content-article {
    background: #ffffff;
}

.article-intro {
    margin-bottom: 40px;
}

.article-intro .lead {
    font-size: 1.25rem;
    color: #6c757d;
    line-height: 1.8;
    font-weight: 500;
}

.content-article h2 {
    font-size: 2.2rem;
    color: #0a2540;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00a896;
    position: relative;
}

.content-article h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #f4a259;
}

.content-article h3 {
    font-size: 1.6rem;
    color: #0a2540;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
}

.content-article p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #495057;
    margin-bottom: 20px;
}

.content-article a {
    color: #00a896;
    font-weight: 600;
    text-decoration: none;
}

.content-article a:hover {
    color: #028174;
    text-decoration: underline;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.content-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.content-card:hover {
    border-color: #00a896;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 168, 150, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00a896 0%, #02c39a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.content-card h3 {
    font-size: 1.3rem;
    color: #0a2540;
    margin-top: 0;
    margin-bottom: 12px;
}

.content-card p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.styled-list li {
    padding: 15px 0 15px 45px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00a896 0%, #02c39a 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.styled-list strong {
    color: #0a2540;
    font-weight: 700;
}

/* Numbered List */
.numbered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.numbered-list li {
    counter-increment: item;
    padding: 20px 0 20px 60px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.numbered-list li:last-child {
    border-bottom: none;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 18px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f4a259 0%, #f8b878 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
}

.numbered-list strong {
    color: #0a2540;
    font-weight: 700;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.08) 0%, rgba(244, 162, 89, 0.08) 100%);
    border-left: 5px solid #00a896;
    padding: 35px;
    border-radius: 15px;
    margin: 40px 0;
    display: flex;
    gap: 25px;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f4a259 0%, #f8b878 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 1.5rem;
    color: #0a2540;
    margin-top: 0;
    margin-bottom: 12px;
}

.highlight-content p {
    font-size: 1.05rem;
    color: #495057;
    margin: 0;
    line-height: 1.8;
}

/* Property Type Items */
.property-type-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 1.05rem;
    color: #495057;
    font-weight: 600;
}

.property-type-item i {
    color: #00a896;
    font-size: 1.2rem;
}

/* Inner Page FAQ */
.inner-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.inner-faq-accordion .accordion-button {
    background: #f8f9fa;
    color: #0a2540;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
}

.inner-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #00a896 0%, #02c39a 100%);
    color: #ffffff;
}

.inner-faq-accordion .accordion-body {
    padding: 25px;
    background: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a52 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.2);
}

.cta-box h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #f4a259 0%, #f8b878 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(244, 162, 89, 0.3);
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #e38b3a 0%, #f4a259 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(244, 162, 89, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: #ffffff;
    color: #0a2540;
}

/* Sidebar Styles */
.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border-top: 4px solid #00a896;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    color: #0a2540;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Contact Widget */
.widget-contact {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a52 100%);
    color: #ffffff;
}

.widget-contact h3 {
    color: #ffffff;
}

.widget-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.widget-phone {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f4a259;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.widget-phone:hover {
    color: #f8b878;
}

.widget-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.widget-hours i {
    color: #00a896;
}

.btn-widget {
    background: linear-gradient(135deg, #00a896 0%, #02c39a 100%);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    display: block;
    border: none;
    transition: all 0.3s;
}

.btn-widget:hover {
    background: linear-gradient(135deg, #028174 0%, #00a896 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 150, 0.3);
}

/* Benefits Widget */
.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.widget-list li:last-child {
    border-bottom: none;
}

.widget-list i {
    color: #00a896;
    font-size: 1.1rem;
}

/* Areas Widget */
.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1) 0%, rgba(244, 162, 89, 0.1) 100%);
    color: #0a2540;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

/* Trust Widget */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.trust-badge i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f4a259 0%, #f8b878 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.trust-badge span {
    font-weight: 600;
    color: #0a2540;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header {
        height: 300px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-article h2 {
        font-size: 1.8rem;
    }
    
    .content-article h3 {
        font-size: 1.4rem;
    }
    
    .cta-box {
        padding: 35px 25px;
    }
    
    .cta-box h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .highlight-box {
        flex-direction: column;
    }
    
    .widget-phone {
        font-size: 1.6rem;
    }
}