
:root {
  --icon-font: 'Font Awesome 6 Pro';
}
/* ============================================================
   SERVICES DETAILS PAGE STYLES
   Fully compatible with ACP Praduman theme (plum + nature)
   ============================================================ */

/* --- Main Container & Layout --- */
.services-details {
    padding: 70px 0;
    background: var(--off-white, #faf8ff);
    position: relative;
    overflow: hidden;
}

.services-details .container {
    position: relative;
    z-index: 2;
}

/* --- Sidebar Styles --- */
.services-details .sidebar {
    position: sticky;
    top: 100px;
    margin-bottom: 30px;
}

/* Categories Widget */
.services-details .sidebar__single {
    background: var(--white, #ffffff);
    border-radius: var(--radius-lg, 22px);
    box-shadow: var(--shadow-md, 0 12px 50px rgba(74,26,107,0.16));
    margin-bottom: 35px;
    border: 1px solid var(--border, #ddd0f5);
    overflow: hidden;
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.services-details .sidebar__single:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg, 0 20px 70px rgba(74,26,107,0.22));
}

.services-details .title-box {
    padding: 20px 25px 12px;
    border-bottom: 2px solid var(--plum-pale, #f0e8ff);
    background: linear-gradient(135deg, var(--plum-pale, #f0e8ff) 0%, #ffffff 100%);
}

.services-details .title-box h2 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark, #1a0a2e);
    margin: 0;
    position: relative;
    display: inline-block;
}

.services-details .title-box h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-mid, #6b2d9a), var(--plum-light, #9c5cd4));
    border-radius: 3px;
}

.services-details .sidebar__categories-list {
    padding: 5px 0 15px;
    margin: 0;
    list-style: none;
}

.services-details .sidebar__categories-list li {
    border-bottom: 1px solid var(--border, #ddd0f5);
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.services-details .sidebar__categories-list li:last-child {
    border-bottom: none;
}

.services-details .sidebar__categories-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text, #3d2e5a);
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.services-details .sidebar__categories-list li a span {
    font-size: 12px;
    transition: transform var(--t, 0.3s) var(--spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.services-details .sidebar__categories-list li:hover {
    background: var(--plum-pale, #f0e8ff);
    padding-left: 5px;
}

.services-details .sidebar__categories-list li:hover a {
    color: var(--plum-mid, #6b2d9a);
}

.services-details .sidebar__categories-list li:hover a span {
    transform: translateX(5px);
}

/* Contact Widget */
.services-details .sidebar__contact {
    position: relative;
    overflow: hidden;
}

.services-details .sidebar__contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.15;
    transition: all 0.5s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.services-details .sidebar__contact:hover .sidebar__contact-bg {
    transform: scale(1.05);
}

.services-details .sidebar__contact-icon {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 35px;
}

.services-details .sidebar__contact-icon span {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--plum-mid, #6b2d9a), var(--plum, #4a1a6b));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    color: var(--white, #ffffff);
    box-shadow: var(--shadow-lg, 0 20px 70px rgba(74,26,107,0.22));
}

.services-details .sidebar__contact-text {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px 20px 10px;
}

.services-details .sidebar__contact-text p {
    font-size: 13px;
    color: var(--text-muted, #7a6b92);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-details .sidebar__contact-text h2 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.services-details .sidebar__contact-text h2 a {
    color: var(--dark, #1a0a2e);
    transition: color var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
    font-family: 'DM Sans';
}

.services-details .sidebar__contact-text h2 a:hover {
    color: var(--plum-mid, #6b2d9a);
}

.services-details .sidebar__contact-btn {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 10px 25px 35px;
}

.services-details .travhub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #1ebe5c);
    color: var(--white, #ffffff);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    border: none;
}

.services-details .travhub-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

/* --- Main Content Styles --- */
.services-details__content {
    background: var(--white, #ffffff);
    border-radius: var(--radius-lg, 22px);
    padding: 30px;
    box-shadow: var(--shadow-md, 0 12px 50px rgba(74,26,107,0.16));
    border: 1px solid var(--border, #ddd0f5);
}

/* Featured Image */
.services-details__content-img1 {
    margin-bottom: 28px;
    border-radius: var(--radius, 14px);
    overflow: hidden;
    position: relative;
}

.services-details__content-img1 img {
    width: 100%;
    height: auto;
    transition: transform 0.6s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.services-details__content-img1:hover img {
    transform: scale(1.02);
}

/* Headings */
.services-details__content-text1 h2,
.services-details__content-text2 h2,
.services-details__content-text3-single h2 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark, #1a0a2e);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.services-details__content-text1 h2::after,
.services-details__content-text2 h2::after,
.services-details__content-text3-single h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-mid, #6b2d9a), var(--plum-light, #9c5cd4));
    border-radius: 3px;
}

/* Paragraphs & Text */
.services-details__content-text1 p,
.services-details__content-text2 p,
.services-details .text2 {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text, #3d2e5a);
    margin-bottom: 22px;
}

.services-details__content-text1 p strong,
.services-details__content-text2 p strong {
    color: var(--plum-mid, #6b2d9a);
    font-weight: 700;
}

/* Feature List (Badge Check) */
.services-details__content-text2-bottom ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.services-details__content-text2-bottom ul li p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

.services-details__content-text2-bottom ul li p span {
    font-size: 18px;
    color: var(--leaf, #4caf73);
    background: rgba(76, 175, 115, 0.1);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Service Option Cards (One-Day / Multi-Day) */
.services-details__content-text3 {
    margin: 40px 0 30px;
}

.services-details__content-text3-single {
    background: var(--cream, #f5f0ff);
    padding: 30px 20px;
    border-radius: var(--radius, 14px);
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
    border: 1px solid transparent;
    margin-bottom: 20px;
}

.services-details__content-text3-single:hover {
    transform: translateY(-5px);
    border-color: var(--plum-light, #9c5cd4);
    background: var(--white, #ffffff);
    box-shadow: var(--shadow-md, 0 12px 50px rgba(74,26,107,0.16));
}

.services-details__content-text3-single .icon-box {
    margin-bottom: 20px;
}

.services-details__content-text3-single .icon-box span {
    font-size: 48px;
    color: var(--plum-mid, #6b2d9a);
    background: linear-gradient(135deg, var(--plum-pale, #f0e8ff), #e0d0ff);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--t, 0.3s) var(--spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.services-details__content-text3-single:hover .icon-box span {
    transform: scale(1.05) rotate(-3deg);
    background: linear-gradient(135deg, var(--plum-mid, #6b2d9a), var(--plum, #4a1a6b));
    color: var(--white, #ffffff);
}

.services-details__content-text3-single h2 {
    font-size: 22px;
    margin-bottom: 12px;
    padding-bottom: 0;
}

.services-details__content-text3-single h2::after {
    display: none;
}

.services-details__content-text3-single p {
    font-size: 14px;
    color: var(--text-muted, #7a6b92);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Accordion inside Services */
.services-details .faq-one__content-faq {
    margin-top: 40px;
    border-top: 1px solid var(--border, #ddd0f5);
    padding-top: 30px;
}

.services-details .accrodion-grp {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.services-details .accrodion {
    background: var(--cream, #f5f0ff);
    border-radius: var(--radius, 14px);
    overflow: hidden;
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
    border: 1px solid var(--border, #ddd0f5);
}

.services-details .accrodion.active {
    background: var(--white, #ffffff);
    border-color: var(--plum-light, #9c5cd4);
    box-shadow: var(--shadow-sm, 0 2px 12px rgba(74,26,107,0.08));
}

.services-details .accrodion-title {
    cursor: pointer;
    padding: 18px 25px;
    position: relative;
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.services-details .accrodion.active .accrodion-title {
    background: linear-gradient(135deg, var(--plum-pale, #f0e8ff), #ffffff);
}

.services-details .accrodion-title h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark, #1a0a2e);
    margin: 0;
    position: relative;
    padding-right: 30px;
    transition: color var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.services-details .accrodion.active .accrodion-title h4 {
    color: var(--plum-mid, #6b2d9a);
}

.services-details .accrodion-title h4::before {
    content: '\f067';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 300;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--plum-mid, #6b2d9a);
    transition: all var(--t, 0.3s) var(--spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

.services-details .accrodion.active .accrodion-title h4::before {
    content: '\f068';
}

.services-details .accrodion-content {
    display: none;
    padding: 0 25px 25px;
    border-top: 1px solid rgba(107, 45, 154, 0.1);
}

.services-details .accrodion.active .accrodion-content {
    display: block;
    animation: fadeInUp 0.4s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.services-details .accrodion.active .accrodion-content p{
    margin-top: 15px;
}
.services-details .accrodion-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted, #7a6b92);
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1199px) {
    .services-details {
        padding: 60px 0;
    }
    
    .services-details__content {
        padding: 25px;
    }
    
    .services-details__content-text1 h2,
    .services-details__content-text2 h2 {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .services-details .sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
    
    .services-details__content-text2-bottom ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .services-details {
        padding: 50px 0;
    }
    
    .services-details__content {
        padding: 20px;
    }
    
    .services-details__content-text1 h2,
    .services-details__content-text2 h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .services-details__content-text3-single {
        padding: 20px 15px;
    }
    
    .services-details .accrodion-title {
        padding: 15px 20px;
    }
    
    .services-details .accrodion-title h4 {
        font-size: 14px;
    }
    
    .services-details .accrodion-content {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .services-details__content-text3-single .icon-box span {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .services-details__content-text3-single h2 {
        font-size: 18px;
    }
}
/* ============================================================
   PAGE HEADER SECTION
   Full-width hero banner with breadcrumb navigation
   Compatible with ACP Praduman theme (plum + nature)
   ============================================================ */

.page-header {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, var(--dark, #1a0a2e) 0%, var(--plum-deep, #2e0a45) 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Background Image with Overlay */
.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-header__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        115deg,
        rgba(30, 8, 50, 0.88) 0%,
        rgba(74, 26, 107, 0.75) 45%,
        rgba(30, 8, 50, 0.55) 100%
    );
    z-index: 1;
}

/* Subtle Pattern Overlay */
.page-header__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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='%23c49de8' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
}

/* Decorative Leaf Elements */
.page-header__bg .leaf-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%239c5cd4' fill-opacity='0.08' d='M50,10 C70,30 90,50 80,80 C70,70 60,65 50,70 C40,75 30,85 20,80 C10,50 30,30 50,10Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 3;
    opacity: 0.4;
}

/* Inner Container */
.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Heading */
.page-header__inner h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 800;
    color: var(--white, #ffffff);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(30, 8, 50, 0.3);
    position: relative;
    display: inline-block;
    line-height: 1;
}

/* Decorative Underline for Heading */
.page-header__inner h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-light, #9c5cd4), var(--leaf, #4caf73), var(--gold-light, #f5d07a));
    border-radius: 3px;
}

/* Breadcrumb Styling */
.thm-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 30px;
}

.thm-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.thm-breadcrumb li:first-child {
    color: rgba(255, 255, 255, 0.85);
}

.thm-breadcrumb li:last-child {
    color: var(--plum-soft, #c49de8);
    font-weight: 600;
}

.thm-breadcrumb li a {
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
    text-decoration: none;
}

.thm-breadcrumb li a:hover {
    color: var(--plum-soft, #c49de8);
}

.thm-breadcrumb li span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Breadcrumb Separator */
.thm-breadcrumb .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Animation Classes for WOW.js */
.wow {
    visibility: hidden;
}

.wow.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1199px) {
    .page-header {
        padding: 100px 0;
    }
    
    .page-header__inner h2 {
        font-size: clamp(30px, 4.5vw, 48px);
    }
}

@media (max-width: 991px) {
    .page-header {
        padding: 80px 0;
    }
    
    .page-header__inner h2 {
        font-size: clamp(28px, 4vw, 42px);
    }
    
    .thm-breadcrumb li {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header__inner h2 {
        font-size: clamp(24px, 5vw, 36px);
    }
    
    .page-header__inner h2::after {
        width: 60px;
        bottom: -10px;
    }
    
    .thm-breadcrumb {
        margin-top: 20px;
        gap: 6px;
    }
    
    .thm-breadcrumb li {
        font-size: 12px;
        gap: 6px;
    }
    
    .thm-breadcrumb li span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 50px 0;
    }
    
    .page-header__inner h2 {
        font-size: clamp(22px, 6vw, 30px);
    }
    
    .thm-breadcrumb {
        flex-wrap: wrap;
    }
    
    .thm-breadcrumb li {
        font-size: 11px;
    }
}

/* Optional: Add a subtle gradient border at bottom */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--plum-mid, #6b2d9a) 0%, 
        var(--plum-light, #9c5cd4) 25%,
        var(--leaf, #4caf73) 50%,
        var(--gold-light, #f5d07a) 75%,
        var(--plum-mid, #6b2d9a) 100%);
    z-index: 5;
    pointer-events: none;
}
/* ============================================================
   BREADCRUMB OPTION SECTION
   Hero-style breadcrumb with background image
   Compatible with ACP Praduman theme
   ============================================================ */

.breadcrumb-option {
    position: relative;
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
}

/* Dark overlay for better text readability */
.breadcrumb-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 8, 50, 0.85) 0%,
        rgba(74, 26, 107, 0.75) 50%,
        rgba(30, 8, 50, 0.85) 100%
    );
    z-index: 1;
}

/* Subtle pattern overlay */
.breadcrumb-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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='%23c49de8' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

.breadcrumb-option .container {
    position: relative;
    z-index: 10;
}

.breadcrumb__text {
    text-align: center;
}

.breadcrumb__links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.breadcrumb__links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
    position: relative;
}

.breadcrumb__links a::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.breadcrumb__links a:hover {
    color: var(--plum-soft, #c49de8);
}

.breadcrumb__links span {
    font-size: 14px;
    font-weight: 600;
    color: var(--plum-soft, #c49de8);
}

.breadcrumb__text h2 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--white, #ffffff);
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(30, 8, 50, 0.3);
    position: relative;
    display: inline-block;
}

/* Decorative underline for heading */
.breadcrumb__text h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--plum-light, #9c5cd4), 
        var(--leaf, #4caf73), 
        var(--gold-light, #f5d07a));
    border-radius: 3px;
}

/* ============================================================
   SINGLE SECTION - Main Content Area
   ============================================================ */

.single-section {
    background: var(--off-white, #faf8ff);
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.single-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 45, 154, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.single-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76, 175, 115, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Headings */
.single-section .h2,
.single-section .h3 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-weight: 700;
    color: var(--dark, #1a0a2e);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.single-section .h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.single-section .h3 {
    font-size: clamp(22px, 3vw, 32px);
}

.single-section .h2::after,
.single-section .h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-mid, #6b2d9a), var(--plum-light, #9c5cd4));
    border-radius: 3px;
}

/* Paragraphs */
.single-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text, #3d2e5a);
    margin-bottom: 20px;
}

.single-section p strong {
    color: var(--plum-mid, #6b2d9a);
    font-weight: 700;
}

/* Image Container */
.we-are-in-page {
    border-radius: var(--radius-lg, 22px);
    overflow: hidden;
    box-shadow: var(--shadow-md, 0 12px 50px rgba(74, 26, 107, 0.16));
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
    border: 1px solid var(--border, #ddd0f5);
}

.we-are-in-page:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg, 0 20px 70px rgba(74, 26, 107, 0.22));
}

.we-are-in-page img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.we-are-in-page:hover img {
    transform: scale(1.02);
}

/* ============================================================
   TABLE STYLING (Pricing Table)
   ============================================================ */

.single-section .table-responsive {
    border-radius: var(--radius, 14px);
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 2px 12px rgba(74, 26, 107, 0.08));
    margin: 20px 0;
}

.single-section .table {
    margin-bottom: 0;
    background: var(--white, #ffffff);
}

.single-section .table thead th {
    background: linear-gradient(135deg, var(--plum-deep, #2e0a45), var(--dark, #1a0a2e));
    color: var(--white, #ffffff);
    font-weight: 700;
    font-size: 14px;
    padding: 15px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-section .table tbody td {
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text, #3d2e5a);
    vertical-align: middle;
    border-color: var(--border, #ddd0f5);
}

.single-section .table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--cream, #f5f0ff);
}

.single-section .table tbody tr:hover {
    background-color: var(--plum-pale, #f0e8ff);
    transition: background var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

/* ============================================================
   UNORDERED LIST STYLING (Why Choose, Destinations)
   ============================================================ */

.single-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.single-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text, #3d2e5a);
}

.single-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--leaf, #4caf73);
    font-size: 14px;
    background: rgba(76, 175, 115, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.single-section ul li strong {
    color: var(--plum-mid, #6b2d9a);
    font-weight: 700;
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--plum-deep, #2e0a45) 0%, var(--plum, #4a1a6b) 50%, var(--plum-mid, #6b2d9a) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 157, 232, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(232, 184, 75, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Leaf pattern overlay */
.cta-section .container::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23c49de8' fill-opacity='0.06' d='M50,10 C70,30 90,50 80,80 C70,70 60,65 50,70 C40,75 30,85 20,80 C10,50 30,30 50,10Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.5;
}

.cta-inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--white, #ffffff);
    margin-bottom: 12px;
    line-height: 1.25;
}

.cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white, #ffffff);
    color: var(--plum-deep, #2e0a45);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-cta-call svg {
    width: 18px;
    height: 18px;
}

.btn-cta-call:hover {
    background: var(--plum-pale, #f0e8ff);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    color: var(--plum-mid, #6b2d9a);
}

.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid rgba(37, 211, 102, 0.5);
    color: var(--white, #ffffff);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: all var(--t, 0.3s) var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
    text-decoration: none;
}

.btn-cta-wa i {
    font-size: 16px;
}

.btn-cta-wa:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-2px);
    color: var(--white, #ffffff);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 1199px) {
    .breadcrumb-option {
        padding: 80px 0;
    }
    
    .single-section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 991px) {
    .breadcrumb-option {
        padding: 70px 0;
    }
    
    .breadcrumb__text h2 {
        font-size: clamp(28px, 4.5vw, 42px);
    }
    
    .breadcrumb__links a,
    .breadcrumb__links span {
        font-size: 13px;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-btns {
        justify-content: center;
    }
    
    .single-section .h2 {
        font-size: clamp(26px, 3.5vw, 36px);
    }
    
    .single-section .h3 {
        font-size: clamp(20px, 3vw, 28px);
    }
}

@media (max-width: 767px) {
    .breadcrumb-option {
        padding: 60px 0;
    }
    
    .breadcrumb__text h2 {
        font-size: clamp(24px, 5vw, 36px);
    }
    
    .breadcrumb__text h2::after {
        width: 60px;
        bottom: -10px;
    }
    
    .breadcrumb__links {
        gap: 8px;
    }
    
    .breadcrumb__links a,
    .breadcrumb__links span {
        font-size: 12px;
    }
    
    .single-section {
        padding: 40px 0 !important;
    }
    
    .single-section .h2::after,
    .single-section .h3::after {
        width: 50px;
    }
    
    .single-section p,
    .single-section ul li {
        font-size: 14px;
    }
    
    .single-section .table thead th,
    .single-section .table tbody td {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .cta-section {
        padding: 45px 0;
    }
    
    .cta-text h2 {
        font-size: clamp(22px, 4vw, 30px);
    }
    
    .cta-text p {
        font-size: 14px;
    }
    
    .btn-cta-call,
    .btn-cta-wa {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-option {
        padding: 50px 0;
    }
    
    .breadcrumb__text h2 {
        font-size: clamp(22px, 6vw, 30px);
    }
    
    .breadcrumb__links {
        flex-wrap: wrap;
    }
    
    .single-section .table-responsive {
        border-radius: var(--radius-sm, 8px);
    }
    
    .single-section .table thead th,
    .single-section .table tbody td {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .btn-cta-call,
    .btn-cta-wa {
        width: 100%;
        justify-content: center;
    }
    
    .cta-btns {
        width: 100%;
        flex-direction: column;
    }
}