* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  box-sizing: border-box;
}

:root {
  --theme-color: linear-gradient(135deg, #00247d, #00509d);
  --secondary-color: #E94B3C;
  --accent-color: #F7931E; 
  --text-color: #2D3748;
  --primary-color: #0F4C81;

  --secondary-font: "Caveat", cursive;
  --text-font: "Jost", sans-serif;
  --title-font: "Jost", sans-serif;

  --ca-primary:   #0D3B6E;
  --ca-deep:      #082952;
  --ca-red:       #C8102E;
  --ca-red-dark:  #9e0b24;
  --ca-gold:      #D4A843; 
  --ca-light:     #F0F4F8;
  --ca-cream:     #FDF8F2;
  --ca-text:      #3D4A5C;
  --ca-muted:     #6B7A8D;
  --ca-border:    #DDE3EA;

  --white:        #FFFFFF;
  --ca-dark:      #111827;
  --ca-teal:     #009688;
  --ca-amber:    #EF6C00;

  --spring:#3D9970;
  --summer:#E67E22;
  --autumn:#C0392B;
  --winter:#2980B9;
}


body {
  font-size: 20px;
  line-height: 29px;
  font-weight: 400;
  background: #ffffff;
  font-family: var(--text-font);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;

  padding-top: 90px;
  color: var(--ca-dark);
  overflow-x: hidden;
}


p {
  text-align: justify;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 15px;
  }
}

.large-container {
  max-width: 1710px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid {
  padding: 0px;
}

.auto-container {
  position: static;
  max-width: 1330px;
  padding: 0px 15px;
  margin: 0 auto;
}

.small-container {
  max-width: 680px;
  margin: 0 auto;
}

.boxed_wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}

a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

a:hover {
  text-decoration: none;
  outline: none;
}

input,
button,
select,
textarea {
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 18px;
  background: transparent;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.content-box.in-layout ul {
  padding-left: 30px !important;
  margin-top: 15px;
}

.content-box.in-layout li {
  list-style: disc !important;
}

.content-box.in-layout p {
  margin-bottom: 1px;
}

.content-box.in-layout h6{
  margin-top: 28px;
}

input {
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p {
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  margin: 0px;
  transition: all 500ms ease;
}


img { display: block; max-width: 100%; }

/* ==================== HEADER STYLES ==================== */
        
        .main-header {
            background: var(--white);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .main-header.scrolled {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
        }

        .header-wrapper {
            padding: 20px 0;
            transition: padding 0.3s ease;
        }

        .main-header.scrolled .header-wrapper {
            padding: 12px 0;
        }

        /* Header row layout — defined explicitly here so it does not depend on
           the Bootstrap grid CSS being available. */
        .header-wrapper .row {
            display: flex !important;
            align-items: center;
            flex-wrap: nowrap;
            margin-left: 0;
            margin-right: 0;
        }

        .header-wrapper .row > [class*="col-"] {
            padding-left: 15px;
            padding-right: 15px;
            box-sizing: border-box;
        }

        .header-wrapper .col-lg-2.col-6 {
            flex: 0 0 auto;
            width: auto;
            max-width: none;
        }

        .header-wrapper .col-lg-7 {
            flex: 1 1 auto;
            min-width: 0;
            width: auto;
            max-width: none;
        }

        .header-wrapper .col-lg-3.col-6 {
            flex: 0 0 auto;
            width: auto;
            max-width: none;
            margin-left: auto;
        }

        /* Logo */
        .logo-container {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo-container img {
            max-height: 55px;
            width: auto;
            transition: all 0.3s ease;
        }

        .main-header.scrolled .logo-container img {
            max-height: 48px;
        }

        /* Desktop Navigation */
        .nav-menu-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 8px;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu > li > a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 30px;
            height: 2px;
            background: var(--secondary-color);
            border-radius: 2px;
            transition: transform 0.3s ease;
        }

        .nav-menu > li.active > a,
        .nav-menu > li > a:hover {
            color: var(--secondary-color);
            background: rgba(233, 75, 60, 0.08);
        }

        .nav-menu > li.active > a::after,
        .nav-menu > li > a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .dropdown-icon {
            font-size: 11px;
            margin-left: 2px;
            transition: transform 0.3s ease;
        }

        .nav-menu > li:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-content {
            position: absolute;
            top: calc(100% + 15px);
            left: 0;
            min-width: 250px;
            background: var(--white);
            border-radius: 12px;
            padding: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
        }

        .nav-menu > li:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content li {
            list-style: none;
        }

        .dropdown-content a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 14.5px;
        }

        .dropdown-content a:hover {
            background: var(--light-bg);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .dropdown-content a i {
            color: var(--secondary-color);
            font-size: 14px;
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            flex-wrap: nowrap;
        }

        .btn-book-now {
            background: linear-gradient(135deg, var(--secondary-color), #d43d2f);
            color: var(--white);
            padding: 7px 15px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(233, 75, 60, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-book-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(233, 75, 60, 0.4);
            color: var(--white);
        }

        /* Mobile Toggle */
        .mobile-toggle-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .mobile-toggle-btn:hover {
            background: var(--light-bg);
        }

        .mobile-toggle-btn span {
            width: 26px;
            height: 2.5px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-toggle-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-toggle-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-toggle-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 380px;
            height: 100vh;
            background: var(--white);
            z-index: 9999;
            overflow-y: auto;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-header {
            padding: 25px;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-menu-header img {
            max-height: 45px;
            /* filter: brightness(0) invert(1); */
        }

        .mobile-close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .mobile-menu-body {
            padding: 25px;
        }

        .mobile-menu-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-nav > li {
            margin-bottom: 8px;
        }

        .mobile-menu-nav > li > a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: var(--light-bg);
        }

        .mobile-menu-nav > li > a:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .mobile-menu-nav > li.active > a {
            background: var(--secondary-color);
            color: var(--white);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            margin-left: 15px;
            margin-top: 8px;
        }

        .mobile-submenu.active {
            max-height: 500px;
        }

        .mobile-submenu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 8px;
            margin-bottom: 5px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .mobile-submenu a:hover {
            background: var(--light-bg);
            padding-left: 25px;
        }

        .mobile-submenu i {
            color: var(--secondary-color);
            font-size: 12px;
        }

        .mobile-contact-section {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 2px solid var(--border-color);
        }

        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--light-bg);
            border-radius: 10px;
            margin-bottom: 12px;
            text-decoration: none;
            color: var(--text-color);
            transition: all 0.3s ease;
        }

        .mobile-contact-item:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .mobile-contact-item:hover .mobile-contact-icon {
            background: var(--white);
            color: var(--primary-color);
        }

        .mobile-contact-icon {
            width: 45px;
            height: 45px;
            background: var(--white);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }

        /* ==================== RESPONSIVE ==================== */
        
        @media (max-width: 1199px) {
            .nav-menu > li > a {
                padding: 10px 14px;
                font-size: 14px;
            }
        }

        @media (max-width: 991px) {
            .nav-menu-wrapper {
                display: none;
            }

            .mobile-toggle-btn {
                display: flex;
            }

            .nav-menu {
              display: none;
            }

            .header-wrapper .row {
                flex-wrap: nowrap;
            }

            .header-wrapper .col-lg-2.col-6 {
                flex: 0 0 auto;
                width: auto;
                max-width: none;
            }

            .header-wrapper .col-lg-3.col-6 {
                flex: 1 1 auto;
                width: auto;
                max-width: none;
            }

            .header-actions {
                justify-content: flex-end;
            }
        }

        @media (max-width: 576px) {
            .mobile-menu {
                max-width: 100%;
            }

            .logo-container img {
                max-height: 42px;
            }

            .btn-book-now {
                padding: 7px 14px;
                font-size: 13px;
            }

            .header-wrapper .row > [class*="col-"] {
                padding-left: 10px;
                padding-right: 10px;
            }

            .header-actions {
                gap: 8px;
            }
        }

        @media (max-width: 340px) {
            .btn-book-now {
                font-size: 12px;
                padding: 7px 10px;
                gap: 4px;
            }

            .header-wrapper .row > [class*="col-"] {
                padding-left: 8px;
                padding-right: 8px;
            }

            .mobile-toggle-btn {
                padding: 8px;
            }
        }

 /* ==================== FOOTER STYLES ==================== */
        
        .main-footer {
            background: linear-gradient(to bottom, #1A202C 0%, #2D3748 100%);
            color: rgba(255, 255, 255, 0.85);
            padding-top: 70px;
            position: relative;
            margin-top: 80px;
        }

        .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
        }

        /* Footer Widget */
        .footer-widget {
            margin-bottom: 40px;
        }

        .footer-logo-section {
            margin-bottom: 25px;
        }

        .footer-logo-section img {
            max-height: 65px;
            margin-bottom: 20px;
        }

        .footer-description {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
        }

        .footer-heading {
            font-family: var(--text-font);
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-heading::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            border-radius: 3px;
        }

        .footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links-list li {
            margin-bottom: 14px;
        }

        .footer-links-list a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .footer-links-list a:hover {
            color: var(--secondary-color);
            padding-left: 8px;
        }

        .footer-links-list a i {
            color: var(--accent-color);
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .footer-links-list a:hover i {
            transform: translateX(3px);
        }

        /* Contact Info */
        .footer-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 22px;
        }

        .contact-item-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(233, 75, 60, 0.15);
            border-radius: 12px;
            color: var(--secondary-color);
            font-size: 18px;
        }

        .contact-item-content {
            flex: 1;
            padding-top: 4px;
        }

        .contact-item-content span,
        .contact-item-content a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .contact-item-content a:hover {
            color: var(--secondary-color);
        }

        /* Footer Bottom */
        .footer-bottom-section {
            background: rgba(0, 0, 0, 0.3);
            padding: 28px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .copyright-content {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            margin: 0;
        }

        .copyright-content i {
            color: var(--secondary-color);
            margin: 0 5px;
        }

        .footer-bottom-menu {
            list-style: none;
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 20px;
            margin: 0;
            padding: 0;
        }

        .footer-bottom-menu a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            position: relative;
        }

        .footer-bottom-menu a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .footer-bottom-menu a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom-menu a:hover::after {
            width: 100%;
        }

        /* Scroll to Top Button */
        .scroll-to-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--secondary-color), #d43d2f);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 8px 24px rgba(233, 75, 60, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-to-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top-btn:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(233, 75, 60, 0.5);
        }

        /* ==================== RESPONSIVE ==================== */
        
        @media (max-width: 991px) {
            .footer-bottom-menu {
                justify-content: center;
                margin-top: 15px;
            }
        }

        @media (max-width: 768px) {
            .main-footer {
                padding-top: 50px;
                margin-top: 60px;
            }

            .footer-heading {
                font-size: 18px;
            }

            .footer-widget {
                margin-bottom: 35px;
            }
        }

        @media (max-width: 576px) {
            .scroll-to-top-btn {
                width: 46px;
                height: 46px;
                bottom: 20px;
                right: 20px;
                font-size: 18px;
            }

            .footer-bottom-menu {
                gap: 15px;
                font-size: 13px;
            }
        }

    /* ─── HERO ─── */
    .ca-hero {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        overflow: hidden;
    }


    .ca-hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .ca-hero:hover .ca-hero-bg { transform: scale(1); }
    

    .ca-hero-actions {
        /* display: flex; */
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn-primary-ca {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 7px 14px;
        background: var(--ca-red);
        color: var(--white);
        border-radius: 3px;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s;
        margin-bottom: 20px;
    }

    .btn-primary-ca:hover {
        background: var(--ca-red-dark);
        transform: translateY(-2px);
        color: var(--white);
    }

    .btn-outline-white {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 7px 14px;
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255,255,255,0.45);
        border-radius: 3px;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s;
        margin-bottom: 20px;
    }

    .btn-outline-white:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--white);
        color: var(--white);
    }

    /* ─── WELCOME SECTION ─── */
    .ca-welcome {
        padding: 90px 0;
        background: var(--white);
    }

    .section-tag {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--ca-red);
        margin-bottom: 14px;
        display: block;
    }

    .section-h2 {
        font-family: var(--text-font);
        font-size: clamp(26px, 3vw, 42px);
        font-weight: 700;
        color: var(--ca-dark);
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .section-p {
        font-size: 16.5px;
        line-height: 1.85;
        color: var(--ca-text);
        max-width: 780px;
    }

    .ca-section-center { text-align: center; }
    .ca-section-center .section-p { margin: 0 auto; }

    /* ─── WHY CARDS ─── */
    .ca-why {
        padding: 90px 0;
        background: var(--ca-light);
    }

    .ca-why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 52px;
    }

    .ca-why-card {
        background: var(--white);
        border-radius: 8px;
        padding: 38px 28px;
        border-top: 4px solid var(--ca-red);
        transition: all 0.3s;
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }

    .ca-why-card:hover {
        box-shadow: 0 10px 35px rgba(0,0,0,0.10);
        transform: translateY(-5px);
    }

    .ca-why-icon {
        width: 56px;
        height: 56px;
        background: var(--ca-light);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--ca-primary);
        margin-bottom: 20px;
    }

    .ca-why-card h3 {
        font-family: var(--text-font);
        font-size: 18px;
        font-weight: 700;
        color: var(--ca-dark);
        margin-bottom: 13px;
        line-height: 1.35;
    }

    .ca-why-card p {
        font-size: 14.5px;
        line-height: 1.8;
        color: var(--ca-muted);
        margin: 0;
    }

    /* ─── TOURS ─── */
    .ca-tours {
        padding: 90px 0;
        background: var(--white);
    }

    .ca-tours-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-top: 52px;
    }

    .ca-tour-card {
        border-radius: 8px;
        overflow: hidden;
        background: var(--white);
        border: 1px solid var(--ca-border);
        transition: all 0.35s;
    }

    .ca-tour-card:hover {
        box-shadow: 0 14px 45px rgba(0,0,0,0.11);
        transform: translateY(-5px);
    }

    .ca-tour-thumb {
        position: relative;
        height: 255px;
        overflow: hidden;
    }

    .ca-tour-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .ca-tour-card:hover .ca-tour-thumb img { transform: scale(1.06); }

    .ca-tour-tag {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(8,41,82,0.85);
        backdrop-filter: blur(4px);
        color: var(--white);
        padding: 6px 14px;
        border-radius: 3px;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .ca-tour-price-tag {
        position: absolute;
        bottom: 16px;
        right: 16px;
        background: var(--ca-red);
        color: var(--white);
        padding: 7px 16px;
        border-radius: 3px;
        font-weight: 700;
        font-size: 15px;
    }

    .ca-tour-body {
        padding: 26px 28px;
    }

    .ca-tour-location {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--ca-red);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .ca-tour-body h3 {
        font-family: var(--text-font);
        font-size: 20px;
        font-weight: 700;
        color: var(--ca-dark);
        margin-bottom: 12px;
        line-height: 1.35;
    }

    .ca-tour-body p {
        font-size: 14px;
        line-height: 1.78;
        color: var(--ca-muted);
        margin-bottom: 22px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn-tour-ca {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 13px;
        background: var(--ca-primary);
        color: var(--white);
        border-radius: 4px;
        font-weight: 600;
        font-size: 14.5px;
        transition: all 0.3s;
    }

    .btn-tour-ca:hover {
        background: var(--ca-deep);
        color: var(--white);
    }

    /* ─── SPLIT SECTIONS ─── */
    .ca-split-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .ca-split-img {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .ca-split-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;   
        display: block;
    }

    .ca-split-content {
        padding: 70px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: var(--white);
    }

    .ca-split-content.alt-bg { background: var(--ca-light); }
    .ca-split-content.cream  { background: var(--ca-cream); }

    .ca-split-content p {
        font-size: 15.5px;
        line-height: 1.85;
        color: var(--ca-text);
        margin-bottom: 20px;
    }

    .ca-split-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
    }

    .ca-split-list li {
        padding: 9px 0;
        font-size: 15px;
        color: var(--ca-text);
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid var(--ca-border);
    }

    .ca-split-list li:last-child { border-bottom: none; }

    .ca-split-list li::before {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--ca-red);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .ca-split-list li strong { color: var(--ca-primary); }

    .btn-split-ca {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 30px;
        background: var(--ca-primary);
        color: var(--white);
        border-radius: 3px;
        font-weight: 600;
        font-size: 14.5px;
        transition: all 0.3s;
        align-self: flex-start;
    }

    .btn-split-ca:hover {
        background: var(--ca-deep);
        color: var(--white);
        transform: translateX(4px);
    }

    /* ─── CTA ─── */
    .ca-cta-section {
        padding: 90px 0;
        background: var(--ca-primary);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .ca-cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('assets/images/background/page-title2.webp') center/cover;
        opacity: 0.06;
    }

    .ca-cta-inner { position: relative; z-index: 2; }

    .ca-cta-section h2 {
        font-family: var(--text-font);
        font-size: clamp(28px, 3.5vw, 50px);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 18px;
    }

    .ca-cta-section p {
        font-size: 17px;
        color: rgba(255,255,255,0.8);
        max-width: 680px;
        margin: 0 auto 38px;
        line-height: 1.8;
    }

    .ca-cta-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-cta-white {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 36px;
        background: var(--white);
        color: var(--ca-primary);
        border-radius: 3px;
        font-weight: 700;
        font-size: 15px;
        transition: all 0.3s;
    }

    .btn-cta-white:hover {
        background: var(--ca-cream);
        transform: translateY(-2px);
    }

    .btn-cta-red {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 36px;
        background: var(--ca-red);
        color: var(--white);
        border-radius: 3px;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s;
    }

    .btn-cta-red:hover {
        background: var(--ca-red-dark);
        color: var(--white);
        transform: translateY(-2px);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
        .ca-why-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 991px) {
        body { padding-top: 75px; }

        .ca-tours-grid { grid-template-columns: 1fr; }

        .ca-split-section { grid-template-columns: 1fr; }
        .ca-split-img { min-height: 320px; }
        .ca-split-content { padding: 50px 30px; }
        .ca-split-section.reverse 
        .ca-split-img { order: -1; }
    }

    @media (max-width: 768px) {
        .ca-hero { min-height: 80vh; }
        .ca-welcome, .ca-why, .ca-tours, .ca-cta-section { padding: 65px 0; }
        .ca-why-grid { grid-template-columns: 1fr; gap: 16px; }
        .ca-hero-content { padding: 60px 0; }
    }

    @media (max-width: 576px) {
        .ca-hero-actions { flex-direction: column; }
        .btn-primary-ca, .btn-outline-white { width: 100%; justify-content: center; }
        .ca-cta-btns { flex-direction: column; align-items: center; }
        .btn-cta-white, .btn-cta-red { width: 100%; justify-content: center; }
        .btn-split-ca { width: 100%; justify-content: center; }
    }

/* -------------------------seasons------------------------- */
.ca-hero-seasons {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.ca-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ca-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay */
.ca-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Bottom Accent Strip */
.ca-hero-seasons::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--ca-red), var(--ca-gold), var(--ca-red));
    z-index: 4;
}

/* Content Container */
.ca-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

/* Badge */
.ca-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.30);
    padding: 8px 26px;
    border-radius: 50px;
    color: var(--ca-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

/* Hero Title */
.ca-hero-seasons h1 {
    font-family: var(--text-font);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.50);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.ca-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    line-height: 36px;
    font-weight: 600;
}

.ca-breadcrumb li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.40);
}

.ca-breadcrumb li a {
    color: rgba(255, 255, 255, 0.90);
    transition: color 0.3s;
}

.ca-breadcrumb li a:hover {
    color: var(--ca-gold);
}

.ca-breadcrumb li::after {
    content: '/';
    margin-left: 14px;
    opacity: 0.6;
}

.ca-breadcrumb li:last-child::after {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ca-hero-seasons {
        height: 70vh;
        min-height: 450px;
    }

    .ca-badge {
        font-size: 10px;
        padding: 6px 20px;
    }

    .ca-breadcrumb li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ca-hero-seasons {
        height: 60vh;
        min-height: 400px;
    }
}

    /* INTRO STRIP */
    .ca-intro {
        padding: 52px 0;
        background: var(--ca-light);
        border-bottom: 1px solid var(--ca-border);
    }

    .ca-intro p {
        font-size: 17px;
        line-height: 1.9;
        color: #2C3E50;
        text-align: center;
        max-width: 920px;
        margin: 0 auto;
    }

    /* SEASON BOXES - HORIZONTAL CARDS */
    .ca-seasons {
        padding: 95px 0;
        background: var(--white);
    }

    .ca-season-box {
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 45px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--ca-border);
        transition: all 0.4s;
    }

    .ca-season-box:hover {
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
        transform: translateY(-6px);
    }

    .ca-season-box:last-child {
        margin-bottom: 0;
    }

    .ca-season-header {
        background: linear-gradient(135deg, var(--ca-primary), var(--ca-deep));
        padding: 32px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .ca-season-header.spring {
        background: linear-gradient(135deg, #43A047, #2E7D32);
    }

    .ca-season-header.summer {
        background: linear-gradient(135deg, #FFA726, #F57C00);
    }

    .ca-season-header.autumn {
        background: linear-gradient(135deg, #E53935, #C62828);
    }

    .ca-season-header.winter {
        background: linear-gradient(135deg, #039BE5, #0277BD);
    }

    .ca-season-title-group {
        flex: 1;
    }

    .ca-season-label {
        display: inline-block;
        background: rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.90);
        padding: 5px 14px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .ca-season-name {
        font-family: var(--text-font);
        font-size: clamp(26px, 3vw, 36px);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
    }

    .ca-season-months {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.75);
        font-weight: 500;
    }

    .ca-season-icon-wrap {
        flex-shrink: 0;
    }

    .ca-season-icon {
        width: 90px;
        height: 90px;
        background: rgba(255, 255, 255, 0.15);
        border: 3px solid rgba(255, 255, 255, 0.25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 38px;
        color: var(--white);
    }

    .ca-season-body {
        padding: 42px 40px;
        background: var(--white);
    }

    .ca-season-body h3 {
        font-family: var(--text-font);
        font-size: clamp(20px, 2.2vw, 26px);
        font-weight: 700;
        color: var(--ca-primary);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .ca-season-body p {
        font-size: 16px;
        line-height: 1.85;
        color: #2C3E50;
        margin-bottom: 16px;
    }

    .ca-season-body p:last-child {
        margin-bottom: 0;
    }

    /* REGIONAL + CHOOSING SECTIONS */
    .ca-regional {
        padding: 85px 0;
        background: var(--ca-cream);
        border-top: 1px solid var(--ca-border);
    }

    .ca-section-title {
        font-family: var(--text-font);
        font-size: clamp(28px, 3.2vw, 42px);
        font-weight: 700;
        color: var(--ca-primary);
        text-align: center;
        margin-bottom: 18px;
    }

    .ca-section-subtitle {
        font-size: 17px;
        line-height: 1.8;
        color: var(--ca-muted);
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px;
    }

    .ca-regional-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
        max-width: 1100px;
        margin: 0 auto;
    }

    .ca-regional-card {
        background: var(--white);
        border: 2px solid var(--ca-border);
        border-radius: 12px;
        padding: 32px 28px;
        text-align: center;
        transition: all 0.35s;
    }

    .ca-regional-card:hover {
        border-color: var(--ca-red);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
        transform: translateY(-4px);
    }

    .ca-regional-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, var(--ca-primary), var(--ca-deep));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: var(--white);
        margin: 0 auto 20px;
    }

    .ca-regional-card h4 {
        font-family: var(--text-font);
        font-size: 18px;
        font-weight: 700;
        color: var(--ca-primary);
        margin-bottom: 12px;
    }

    .ca-regional-card p {
        font-size: 15px;
        line-height: 1.75;
        color: #2C3E50;
        margin: 0;
    }

    .ca-choosing {
        padding: 85px 0;
        background: var(--white);
    }

    .ca-choosing-box {
        max-width: 900px;
        margin: 0 auto;
        background: var(--ca-light);
        border-radius: 16px;
        padding: 50px 55px;
        border: 2px solid var(--ca-border);
    }

    .ca-choosing-box h2 {
        font-family: var(--text-font);
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 700;
        color: var(--ca-primary);
        margin-bottom: 24px;
        text-align: center;
    }

    .ca-choosing-box p {
        font-size: 16.5px;
        line-height: 1.9;
        color: #2C3E50;
        text-align: center;
        margin-bottom: 18px;
    }

    .ca-choosing-box p:last-child {
        margin-bottom: 0;
    }

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 991px) {
        .ca-regional-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        body {
            padding-top: 75px;
        }

        .ca-seasons,
        .ca-regional,
        .ca-choosing {
            padding: 70px 0;
        }

        .ca-season-header {
            flex-direction: column;
            text-align: center;
            padding: 28px 26px;
        }

        .ca-season-icon {
            width: 75px;
            height: 75px;
            font-size: 32px;
        }

        .ca-season-body {
            padding: 32px 26px;
        }

        .ca-regional-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .ca-choosing-box {
            padding: 38px 30px;
        }
    }

/* ---------------------------things-to-do-------------------------- */
    .ca-activities {
        padding: 95px 0;
        background: var(--white);
    }

    .ca-act-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .ca-act-item {
        background: var(--white);
        border: 2px solid var(--ca-border);
        border-radius: 14px;
        padding: 0;
        overflow: hidden;
        position: relative;
        transition: all 0.4s;
    }

    .ca-act-item::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, var(--ca-teal), #00695C);
        opacity: 0.08;
        clip-path: polygon(100% 0, 0 0, 100% 100%);
    }

    .ca-act-item:hover {
        border-color: var(--ca-teal);
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
        transform: translateY(-6px);
    }

    /* Activity Top Section */
    .ca-act-top {
        background: var(--ca-cream);
        padding: 36px 34px;
        position: relative;
    }

    .ca-act-number {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--ca-primary), var(--ca-deep));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--text-font);
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .ca-act-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--ca-teal), #00695C);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: var(--white);
        margin-bottom: 20px;
    }

    .ca-act-top h3 {
        font-family: var(--text-font);
        font-size: clamp(19px, 2vw, 24px);
        font-weight: 700;
        color: var(--ca-primary);
        line-height: 1.35;
        padding-right: 60px;
        margin: 0;
    }

    /* Activity Body Section */
    .ca-act-body {
        padding: 32px 34px;
    }

    .ca-act-body p {
        font-size: 15.5px;
        line-height: 1.85;
        color: #2C3E50;
        margin: 0;
    }

    /* CONCLUSION SECTION */
    .ca-conclusion {
        padding: 85px 0;
        background: var(--ca-light);
        border-top: 1px solid var(--ca-border);
    }

    .ca-conclusion-box {
        max-width: 880px;
        margin: 0 auto;
        text-align: center;
    }

    .ca-conclusion-box h2 {
        font-family: var(--text-font);
        font-size: clamp(28px, 3.2vw, 42px);
        font-weight: 700;
        color: var(--ca-primary);
        margin-bottom: 24px;
    }

    .ca-conclusion-box p {
        font-size: 16.5px;
        line-height: 1.9;
        color: #2C3E50;
        margin-bottom: 18px;
    }

    .ca-conclusion-box p:last-child {
        margin-bottom: 0;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        body {
            padding-top: 75px;
        }

        .ca-activities,
        .ca-conclusion {
            padding: 70px 0;
        }

        .ca-act-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .ca-act-top {
            padding: 28px 26px;
        }

        .ca-act-body {
            padding: 26px 26px;
        }

        .ca-act-number {
            top: 20px;
            right: 20px;
            width: 46px;
            height: 46px;
            font-size: 18px;
        }
    }

/* --------------------------TIPS SECTION----------------------- */
    .ca-tips {
        padding: 95px 0;
        background: var(--white);
    }

    .ca-tips-list {
        max-width: 1000px;
        margin: 0 auto;
    }

    .ca-tip-row {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 28px;
        margin-bottom: 32px;
        padding-bottom: 32px;
        border-bottom: 2px solid var(--ca-border);
    }

    .ca-tip-row:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .ca-tip-num-box {
        flex-shrink: 0;
    }

    .ca-tip-circle {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--ca-amber), #D84315);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--text-font);
        font-size: 28px;
        font-weight: 700;
        color: var(--white);
        box-shadow: 0 4px 16px rgba(239, 108, 0, 0.25);
        position: relative;
    }

    .ca-tip-circle::after {
        content: '';
        position: absolute;
        inset: -8px;
        border: 2px dashed rgba(239, 108, 0, 0.25);
        border-radius: 50%;
    }

    .ca-tip-content h3 {
        font-family: var(--text-font);
        font-size: clamp(20px, 2.2vw, 26px);
        font-weight: 700;
        color: var(--ca-primary);
        margin-bottom: 16px;
        line-height: 1.35;
    }

    .ca-tip-content p {
        font-size: 16px;
        line-height: 1.85;
        color: #2C3E50;
        margin: 0;
    }

    /* ESSENTIALS SECTION */
    .ca-essentials {
        padding: 80px 0;
        background: var(--ca-cream);
        border-top: 1px solid var(--ca-border);
    }

    .ca-section-title {
        font-family: var(--text-font);
        font-size: clamp(28px, 3.2vw, 42px);
        font-weight: 700;
        color: var(--ca-primary);
        text-align: center;
        margin-bottom: 18px;
    }

    .ca-section-subtitle {
        font-size: 17px;
        line-height: 1.8;
        color: var(--ca-muted);
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px;
    }

    .ca-ess-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .ca-ess-card {
        background: var(--white);
        border: 2px solid var(--ca-border);
        border-radius: 12px;
        padding: 32px 24px;
        text-align: center;
        transition: all 0.35s;
    }

    .ca-ess-card:hover {
        border-color: var(--ca-amber);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
        transform: translateY(-4px);
    }

    .ca-ess-icon {
        width: 68px;
        height: 68px;
        background: linear-gradient(135deg, var(--ca-amber), #D84315);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: var(--white);
        margin: 0 auto 20px;
    }

    .ca-ess-card h4 {
        font-family: var(--text-font);
        font-size: 17px;
        font-weight: 700;
        color: var(--ca-primary);
        margin-bottom: 12px;
    }

    .ca-ess-card p {
        font-size: 14.5px;
        line-height: 1.75;
        color: #2C3E50;
        margin: 0;
    }

    /* CONCLUSION SECTION */
    .ca-conclusion {
        padding: 85px 0;
        background: var(--white);
    }

    .ca-conclusion-box {
        max-width: 880px;
        margin: 0 auto;
        text-align: center;
    }

    .ca-conclusion-box h2 {
        font-family: var(--text-font);
        font-size: clamp(28px, 3.2vw, 42px);
        font-weight: 700;
        color: var(--ca-primary);
        margin-bottom: 24px;
    }

    .ca-conclusion-box p {
        font-size: 16.5px;
        line-height: 1.9;
        color: #2C3E50;
        margin-bottom: 18px;
    }

    .ca-conclusion-box p:last-child {
        margin-bottom: 0;
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
        .ca-ess-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        body {
            padding-top: 75px;
        }

        .ca-tips,
        .ca-essentials,
        .ca-conclusion {
            padding: 70px 0;
        }

        .ca-tip-row {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .ca-tip-circle {
            width: 70px;
            height: 70px;
            font-size: 24px;
        }

        .ca-ess-grid {
            grid-template-columns: 1fr;
        }
    }


/* -------------------------------tour-pages-------------------------- */
    .ca-detail-hero {
        position: relative;
        height: 450px;
        overflow: hidden;
    }

    .ca-hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .ca-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ca-hero-overlay {
        position: absolute;
        inset: 0;
    }

    .ca-hero-content {
        position: relative;
        z-index: 2;
        padding: 0 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .ca-hero-content h1 {
        font-family: var(--text-font);
        font-size: 42px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 20px;
        line-height: 1.1;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.30);
        margin-top: 20px;
    }

    .ca-detail-breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        list-style: none;
        padding: 0;
        margin: 0;
        position: relative;
        line-height: 36px;
        font-weight: 600;

    }

    .ca-detail-breadcrumb li {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.75);
    }

    .ca-detail-breadcrumb li a {
        color: rgba(255, 255, 255, 0.90);
        transition: color 0.3s;
    }

    .ca-detail-breadcrumb li a:hover {
        color: var(--ca-gold);
    }

    .ca-detail-breadcrumb li::after {
        content: '/';
        margin-left: 14px;
        opacity: 0.6;
    }

    .ca-detail-breadcrumb li:last-child::after {
        display: none;
    }

    /* MAIN CONTENT LAYOUT */
    .ca-detail-section {
        padding: 80px 0 90px;
        background: var(--ca-light);
    }

    .ca-detail-grid {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 40px;

    }

    /* LEFT CONTENT AREA */
    .ca-detail-content {
        background: var(--white);
        border-radius: 16px;
        padding: 45px 50px;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
        border: 1px solid var(--ca-border);
    }

    .ca-location-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--ca-cream);
        border: 2px solid var(--ca-border);
        color: var(--ca-primary);
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .ca-location-badge i {
        color: var(--ca-red);
        font-size: 13px;
    }

    .ca-detail-content h2 {
        font-family: var(--text-font);
        font-size: clamp(26px, 3vw, 36px);
        font-weight: 700;
        color: var(--ca-primary);
        margin-bottom: 30px;
        line-height: 1.35;
    }

    .ca-main-image {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 40px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    }

    .ca-main-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .ca-detail-content h3 {
        font-family: var(--text-font);
        font-size: clamp(20px, 2.2vw, 26px);
        font-weight: 700;
        color: var(--ca-primary);
        margin: 35px 0 18px 0;
        line-height: 1.4;
    }

    .ca-detail-content p {
        font-size: 16px;
        line-height: 1.85;
        color: var(--ca-text);
        margin-bottom: 18px;
    }

    .ca-detail-content ul {
        margin: 20px 0 20px 0;
        padding-left: 0;
        list-style: none;
    }

    .ca-detail-content ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 1.75;
        color: #2C3E50;
    }

    .ca-detail-content ul li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0;
        color: var(--ca-red);
        font-weight: 700;
        font-size: 18px;
    }

    /* ACCORDION ITINERARY (UK Style for Canada) */
    .ca-itinerary-accordion {
        margin: 30px 0;
    }

    .ca-accordion-item {
        background: var(--ca-cream);
        border-radius: 10px;
        margin-bottom: 14px;
        overflow: hidden;
        border: 2px solid var(--ca-border);
        transition: all 0.3s;
    }

    .ca-accordion-item.active {
        border-color: var(--ca-primary);
    }

    .ca-accordion-header {
        padding: 22px 26px;
        cursor: pointer;
        user-select: none;
        display: flex;
        align-items: center;
        gap: 18px;
        transition: all 0.3s;
    }

    .ca-accordion-header:hover {
        background: rgba(13, 59, 110, 0.04);
    }

    .ca-accordion-icon {
        width: 36px;
        height: 36px;
        background: var(--ca-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s;
    }

    .ca-accordion-icon i {
        color: var(--white);
        font-size: 14px;
        transition: transform 0.3s;
    }

    .ca-accordion-item.active .ca-accordion-icon {
        background: var(--ca-red);
    }

    .ca-accordion-item.active .ca-accordion-icon i {
        transform: rotate(180deg);
    }

    .ca-accordion-title {
        flex: 1;
    }

    .ca-accordion-title h4 {
        font-family: var(--text-font);
        font-size: 19px;
        font-weight: 700;
        color: var(--ca-primary);
        margin: 0;
        line-height: 1.4;
    }

    .ca-accordion-title h4 span {
        display: inline-block;
        background: var(--ca-red);
        color: var(--white);
        padding: 3px 12px;
        border-radius: 20px;
        font-size: 13px;
        margin-right: 10px;
    }

    .ca-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .ca-accordion-item.active .ca-accordion-content {
        max-height: 500px;
    }

    .ca-accordion-body {
        padding: 0 26px 26px 80px;
    }

    .ca-accordion-body p {
        font-size: 15.5px;
        line-height: 1.85;
        color: #2C3E50;
        margin: 0 0 14px 0;
    }

    .ca-accordion-body p:last-child {
        margin-bottom: 0;
    }

    /* SIDEBAR */
    .ca-detail-sidebar {
        position: sticky;
        top: 110px; 
    }

    .ca-booking-card {
        background: linear-gradient(135deg, var(--ca-primary) 0%, var(--ca-deep) 100%);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .ca-booking-header {
        padding: 32px 28px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .ca-booking-label {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.80);
        margin-bottom: 8px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .ca-booking-price {
        font-family: var(--text-font);
        font-size: 38px;
        font-weight: 700;
        color: var(--white);
        line-height: 1;
        margin-bottom: 8px;
    }

    .ca-booking-price span {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.70);
    }

    .ca-booking-body {
        padding: 28px;
    }

    .ca-enquire-btn {
        display: block;
        width: 100%;
        background: var(--ca-red);
        color: var(--white);
        text-align: center;
        padding: 16px 24px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
    }

    .ca-enquire-btn:hover {
        background: var(--ca-gold);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
        .ca-detail-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .ca-detail-sidebar {
            position: static;
            order: -1;
        }
    }

    @media (max-width: 768px) {
        body {
            padding-top: 75px;
        }

        .ca-detail-section {
            padding: 60px 0;
        }

        .ca-detail-content {
            padding: 32px 24px;
        }

        .ca-accordion-body {
            padding: 0 20px 24px 20px;
        }
    }   


    /* .sidebar-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
    position: sticky;
    top: 100px;
} */