/* --- GLOBAL & UTILITIES --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- index.html --- */
.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/71a0a3d9a91acd580f4e019884bf7025.jpg');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/0c9ebdb9d108ef3bc8580bae18b909d9.jpg');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/5af42b52aac31238d0570661b35a9116.jpg');
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {
    .slide-1 {
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/e1110efd9d0e45b7ec2bdf23d0551f18.jpg');
        background-size: cover;
        background-position: center;
    }

    .slide-2 {
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/6db6823b78ce179383aed77e0de29dd5.jpg');
        background-size: cover;
        background-position: center;
    }

    .slide-3 {
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('images/259ca33261af23f7130953784bf88b61.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* --- activities.html --- */
.activities-hero {
    position: relative;
    height: 90vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/activities_banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.activities-section {
    padding: 20px 0 40px 0;
    background-color: var(--light-bg);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

.activity-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.activity-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.activity-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.activity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.activity-card:hover .activity-img-wrapper img {
    transform: scale(1.1);
}

.activity-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 1px;
}

.activity-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-card-body h3 {
    font-size: 26px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.activity-card-body h4 {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.activity-card-body p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-card-body p.expanded {
    display: block;
    -webkit-line-clamp: initial;
    line-clamp: initial;
}

.btn-exp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-exp-link i {
    font-size: 14px;
}

.activity-card:hover .btn-exp-link {
    gap: 15px;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-img-wrapper {
        height: 240px;
    }
}

/* Activity Slider Styles */
.activity-swiper {
    width: 100% !important;
    height: 280px !important;
}

.activity-swiper .swiper-slide {
    height: 100%;
    width: 100%;
}

.activity-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.activity-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.activity-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* --- packages.html --- */
.packages-hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/b079f923c09191c3aecfb16b16156cb9.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

@media (min-width: 768px) {
    .packages-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/c779c44a074169a1254bb09e365274e8.jpg');
        background-size: cover;
        background-position: center;
    }
}

.package-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.package-section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1c4b 100%);
    padding: 40px 0;
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Package Image Slider Styles */
.package-img-swiper {
    width: 100% !important;
    height: 200px !important;
}

.package-img-swiper .swiper-slide {
    height: 100%;
    width: 100%;
}

.package-img-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-img-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.package-img-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* --- blog.html --- */
.blog-hero {
    position: relative;
    height: 90vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1419bc402c503f754d2e53c50e2a6092.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    background-color: var(--secondary-color);
}

@media (min-width: 768px) {
    .blog-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/6c572323277f309a55255f565c6d10b6.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.search-section {
    padding: 40px 0;
    background: var(--light-bg);
    margin-bottom: 30px;
}

.blog-search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.blog-search-input {
    width: 100%;
    padding: 20px 30px;
    padding-right: 70px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: var(--transition);
}

.blog-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 173, 239, 0.1);
}

.search-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
}

.blog-category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.category-chip {
    padding: 8px 25px;
    background: var(--white);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #eee;
}

.category-chip.active,
.category-chip:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.blog-post-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid #f5f5f5;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.post-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post-card:hover .post-img-wrapper img {
    transform: scale(1.1);
}

.post-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.post-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.post-title {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
    transition: var(--transition);
}

.blog-post-card:hover .post-title {
    color: var(--primary-color);
}

.post-excerpt {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more-btn {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.read-more-btn:hover {
    gap: 15px;
}

.blog-listing {
    padding: 40px 0 80px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
    margin-bottom: 20px;
}

.page-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 1px solid #eee;
    background: var(--white);
    color: var(--secondary-color);
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-link.active,
.page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 173, 239, 0.2);
}

@media (max-width: 768px) {
    .blog-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* --- contact.html --- */
.contact-hero {
    position: relative;
    height: 90vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/5b81c7f2a785cf3513e99c0495a1cbdf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    background-color: var(--secondary-color);
}

@media (min-width: 768px) {
    .contact-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/f172b2d68abae2e57d3dc24d851ea2a1.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.contact-hero h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    margin-bottom: 15px;
}

.contact-section {
    padding: 40px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.info-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    background: #fdfdfd;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 15px rgba(0, 173, 239, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.terms-section {
    padding: 40px 0;
    background: var(--light-bg);
}

.terms-content {
    background: var(--white);
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.terms-content h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
}

.terms-block {
    margin-bottom: 40px;
}

.terms-block h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-block p,
.terms-block ul {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.terms-block ul {
    padding-left: 20px;
    list-style-type: circle;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-card,
    .terms-content {
        padding: 30px;
    }
}

/* --- flights.html --- */
.flights-hero {
    position: relative;
    height: 90vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/flight_banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.booking-section {
    padding: 20px 0 40px 0;
    background-color: var(--light-bg);
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.booking-info {
    background: var(--secondary-color);
    padding: 50px;
    color: var(--white);
}

.booking-form-box {
    padding: 50px;
}

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

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 173, 239, 0.15);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .flights-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/flight_banner_mobile.jpg');
        background-size: cover;
        background-position: center;
    }
}

/* --- houseboating.html --- */
.houseboat-hero {
    position: relative;
    height: 90vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/e2a5afe5f52ea4193e2b7c5ac0ec097d.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.category-section {
    padding: 20px 0 10px 0;
    background-color: var(--light-bg);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.category-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.category-img-box {
    height: 250px;
    overflow: hidden;
}

.category-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-card:hover .category-img-box img {
    transform: scale(1.1);
}

.category-content {
    padding: 30px;
    text-align: center;
}

.category-content h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.category-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.category-price {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.inclusions-container {
    background: var(--white);
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .inclusions-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .inclusions-container img {
        width: 100%;
        height: auto;
        order: -1;
    }
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 0px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .narrative-image {
        order: -1;
    }

    .narrative-section {
        padding: 25px 0 !important;
    }
}

/* --- services.html --- */
.services-hero {
    position: relative;
    height: 90vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/4c890587c7971a9fe5169184221272ad.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    background-color: var(--secondary-color);
}

@media (min-width: 768px) {
    .services-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/6b99dd3cdc36134963d8bec7911853bb.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.services-page-grid {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.service-full-card {
    background: var(--white);
    border-radius: 30px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.service-full-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-card-banner {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.service-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-full-card:hover .service-card-banner img {
    transform: scale(1.1);
}

.service-full-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    margin-top: -40px;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--white);
}

.service-full-card:hover .service-full-icon {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.service-card-info {
    padding: 30px 25px;
    padding-top: 5px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-full-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-full-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
}

.service-sub-list li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-sub-list li i {
    font-size: 10px;
    color: var(--primary-color);
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1c4b 100%);
    padding: 40px 0;
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 32px;
    }
}

/* --- testimonials.html --- */
.testimonials-hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/image_60.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.testimonials-grid-all {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 0;
}
.narrative-text.editor_description p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.narrative-text.editor_description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    display: inline-block;
}

.narrative-text.editor_description ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.narrative-text.editor_description ul li::before {
    content: "\f00c"; /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.narrative-text.editor_description h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-card-info.service_description ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-card-info.service_description ul li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-card-info.service_description ul li::before {
    content: "\f111"; /* FontAwesome circle */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 8px;
    margin-top: 6px;
}