/*
Theme Name:     Neve
Theme URI:      https://themeisle.com/themes/neve/
Author:         ThemeIsle
Author URI:     https://themeisle.com
Tested up to:   6.2
Requires PHP:   7.0
Requires at least: 5.5
Description:    Neve is a next-generation, ultra-fast WordPress theme designed for top performance, SEO, and Core Web Vitals. Its lightweight codebase and small size ensure minimal overhead and lightning-fast load times. Fully compatible with the block editor, popular page builders (Elementor, Bricks, Oxygen etc), and WooCommerce, it’s perfect for blogs, small businesses, agencies, portfolios, and online stores. With responsive design, multilingual translations, and easy customization options, Neve empowers you to create a future-proof, high-ranking online presence. Discover everything Neve has to offer and explore our powerful premium version at https://themeisle.com/themes/neve/.
Version:        4.2.8
License:        GNU General Public License v2 or later
License URI:    http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    neve
Pro Slug:  			neve-pro-addon
AMP: 						true
WordPress Available:  yes
Requires License:     no
Tags: blog, custom-logo, e-commerce, rtl-language-support, grid-layout, one-column, two-columns, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, accessibility-ready, wide-blocks, block-styles, footer-widgets, portfolio, left-sidebar, right-sidebar
*/



/* timeline home */
/** {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      background: #ffffff;
      color: #0d1b4c;
      padding: 40px 20px;
    }
*/

.hide {display:none;}

    .journey-section {
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
    }

    .journey-title {
      font-size: 36px;
      font-weight: 700;
      color: #0d1b4c;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .title-underline {
      width: 70px;
      height: 4px;
      background: #d79b2e;
      margin: 0 auto 50px;
      border-radius: 2px;
    }

    .timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 20px;
      align-items: start;
    }

    /* Horizontal line */
    .timeline::before {
      content: "";
      position: absolute;
      top: 28px;
      left: 6%;
      right: 6%;
      height: 2px;
      background: #bfc7d4;
      z-index: 0;
    }

    .timeline-item {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 8px;
    }

    .icon-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #f6ede5;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      color: #0d1b4c;
      font-size: 22px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .day-label {
		font-family: Inter, sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: #0d1b4c;
    }

    .item-title {
		font-family: Inter, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 8px;
      color: #0d1b4c;
    }

    .item-desc {
	font-family: Inter, sans-serif;
      font-size: 14px;
      line-height: 1.6;
      color: #222;
    }

    .bottom-line {
      margin-top: 40px;
      height: 1px;
      background: #d1d5db;
    }

/* POP UP */

        /* =========================================
           MODAL
        ========================================= */

        .itinerary-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: rgba(0, 0, 0, 0.68);
            opacity: 0;
            visibility: hidden;
            transition: .3s ease;
        }
        .itinerary-modal.active {
            opacity: 1;
            visibility: visible;
        }


        /* =========================================
           POPUP BOX
        ========================================= */

        .itinerary-popup {
            position: relative;
            width: 100%;
            max-width: 1000px;
            max-height: 92vh;
            overflow-y: auto;
            background: #ffffff;
            border-radius: 17px;
            padding: 28px 38px 30px;
            box-shadow: 0 25px 70px rgba(0,0,0,.35);
            transform: translateY(20px) scale(.98);
            transition: .3s ease;
        }

        .itinerary-modal.active .itinerary-popup {
            transform: translateY(0) scale(1);
        }


        /* =========================================
           CLOSE BUTTON
        ========================================= */

        .close-popup {
            position: absolute;
            top: 24px;
            right: 27px;
            width: 38px;
            height: 38px;
            border: 0;
            background: transparent;
            color: #555;
            font-size: 26px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .2s ease;
        }

        .close-popup:hover {
            color: #0b2347;
            transform: rotate(90deg);
        }


        /* =========================================
           HEADER
        ========================================= */

        .itinerary-header {
            display: flex;
            align-items: center;
            gap: 17px;
            margin-bottom: 6px;
        }

        .header-icon {
            width: 58px;
            height: 58px;
            flex: 0 0 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #06234c;
            color: #d59a32;
            font-size: 25px;
        }

        .itinerary-header h2 {
            margin: 0;
            color: #09234b;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 40px;
            line-height: 1;
        }

        .subtitle {
            margin: 8px 0 24px;
            color: #1e2734;
            font-size: 14px;
            line-height: 1.5;
        }


        /* =========================================
           ITINERARY GRID
        ========================================= */

        .itinerary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 45px;
        }


        /* =========================================
           TIMELINE
        ========================================= */

        .tl {
            position: relative;
        }

        .tl-item {
            position: relative;
            display: grid;
            grid-template-columns: 66px 1fr 165px;
            gap: 14px;
            min-height: 164px;
            padding-bottom: 18px;
        }

        /* Vertical line */

        .tl-item:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 33px;
            top: 66px;
            bottom: 0;
            width: 1px;
            border-left: 1px dashed #d2d2d2;
        }


        /* =========================================
           ICON CIRCLE
        ========================================= */

        .tl-icon {
            position: relative;
            z-index: 2;
            width: 66px;
            height: 66px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #fff7ed;
            border: 1px solid #f2e4d3;
            color: #09234b;
            font-size: 23px;
        }


        /* =========================================
           TEXT
        ========================================= */

        .tl-content {
            padding-top: 3px;
        }

        .tl-time {
            margin-bottom: 7px;

            color: #bb7618;

            font-size: 16px;
            font-weight: 700;
        }

        .tl-title {
            margin: 0 0 8px;
            color: #09234b;
            font-family: Noto Serif, serif;
            font-size: 17px !important;
            line-height: 1.15;
        }

        .tl-description {
            margin: 0;

            color: #28313d;

            font-size: 12.5px;

            line-height: 1.55;
        }


        /* =========================================
           IMAGE
        ========================================= */

        .tl-image {
            width: 165px;
            height: 126px;

            object-fit: cover;

            border-radius: 8px;

            display: block;
        }


        /* =========================================
           NOTE BOX
        ========================================= */

        .note-box {
            display: flex;
            align-items: center;

            gap: 17px;

            margin-top: 5px;

            padding: 15px 19px;

            background: #fff6eb;

            border: 1px solid #f1e2d1;

            border-radius: 12px;
        }

        .note-icon {
            width: 48px;
            height: 48px;

            flex: 0 0 48px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #09234b;

            color: #e1a337;

            font-size: 20px;
        }

        .note-content strong {
            display: block;

            margin-bottom: 6px;

            color: #09234b;

            font-size: 14px;
        }

        .note-content p {
            margin: 0;

            color: #26303c;

            font-size: 12px;

            line-height: 1.5;
        }

/* =========================================
           DECORATIVE DIVIDER
        ========================================= */

        .divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 0 auto 28px;
            max-width: 350px;
        }

        .divider::before,
        .divider::after {
            content: "";
            height: 1px;
            flex: 1;
            background: #d7c09b;
        }

        .divider i {
            color: #bd7808;
            font-size: 17px;
        }


        /* =========================================
           SCROLLBAR
        ========================================= */

        .itinerary-popup::-webkit-scrollbar {
            width: 7px;
        }

        .itinerary-popup::-webkit-scrollbar-track {
            background: transparent;
        }

        .itinerary-popup::-webkit-scrollbar-thumb {
            background: #d5d5d5;
            border-radius: 10px;
        }
		
/* =========================================
           SCROLLBAR
        ========================================= */

        .call-popup::-webkit-scrollbar {
            width: 7px;
        }

        .call-popup::-webkit-scrollbar-track {
            background: transparent;
        }

        .call-popup::-webkit-scrollbar-thumb {
            background: #d0d0d0;

            border-radius: 10px;
        }

.call-modal {
	position: fixed;
	inset: 0; z-index: 9999;
	display: flex;
	align-items: center; 
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, .72);
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}
.call-modal.active {opacity: 1; visibility: visible;}
.call-popup { position: relative; width: 100%; max-width: 785px; max-height: 95vh; overflow-y: auto; padding: 30px 52px 28px; background: #ffffff; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.4); transform: translateY(25px) scale(.98); transition: all .3s ease; }
.call-modal.active .call-popup { transform: translateY(0) scale(1); }
.call-header { text-align: center; margin-bottom: 30px; }
.call-modal .header-icon { width: 100px; height: 100px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #082650; color: #d18b13; font-size: 47px; }
.call-header h1 { margin: 0; color: #06214a; font-family: Georgia, "Times New Roman", serif; font-size: 43px; line-height: 1.08; }
.call-header h1 span { display: block; margin-top: 3px; color: #b66c05; }
.call-header p { margin: 20px auto 0; max-width: 650px; color: #1e2a3a; font-size: 18px; line-height: 1.65; }


        /* =========================================
           TABLET
        ========================================= */

        @media (max-width: 900px) {

            .itinerary-popup {
                max-width: 760px;
                padding: 25px;
            }

            .itinerary-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .tl-item {
                min-height: 145px;
            }
			
			.call-popup {
                max-width: 650px;

                padding: 28px 32px;
            }

            .header-icon {
                width: 85px;
                height: 85px;

                font-size: 40px;
            }

            .call-header h1 {
                font-size: 36px;
            }

            .call-header p {
                font-size: 16px;
            }
        }


        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 600px) {

            .itinerary-modal {
                padding: 10px;
            }

            .itinerary-popup {
                max-height: 95vh;
                padding: 22px 17px;
                border-radius: 14px;
            }

            .close-popup {
                top: 18px;
                right: 14px;
            }

            .header-icon {
                width: 48px;
                height: 48px;
                flex-basis: 48px;
                font-size: 20px;
            }

            .itinerary-header h2 {
                font-size: 30px;
            }

            .subtitle {
                font-size: 13px;
                padding-right: 20px;
            }

            .tl-item {
                grid-template-columns: 52px 1fr;
                gap: 12px;
                min-height: auto;
                padding-bottom: 25px;
            }

            .tl-item:not(:last-child)::after {
                left: 26px;
                top: 52px;
            }

            .tl-icon {
                width: 52px;
                height: 52px;
                font-size: 18px;
            }

            .tl-image {
                grid-column: 2;

                width: 100%;
                height: 150px;

                margin-top: 5px;
            }

            .timeline-content {
                grid-column: 2;
            }

            .tl-time {
                font-size: 14px;
            }

            .tl-title {
                font-size: 16px;
            }

            .tl-description {
                font-size: 12px;
            }

            .note-box {
                align-items: flex-start;
                padding: 14px;
            }

            .note-icon {
                width: 42px;
                height: 42px;
                flex-basis: 42px;
            }
			
			 .call-modal {
                padding: 8px;
            }

            .call-popup {
                max-height: 96vh;

                padding: 25px 18px 22px;

                border-radius: 15px;
            }

            .close-popup {
                top: 14px;
                right: 12px;
                font-size: 25px;
            }

            .header-icon {
                width: 72px;
                height: 72px;
                margin-bottom: 14px;
                font-size: 34px;
            }

            .call-header h1 {
                font-size: 29px;
            }

            .call-header h1 span {
                margin-top: 4px;
            }

            .call-header p {
                margin-top: 15px;

                font-size: 14px;

                line-height: 1.55;
            }

            .divider {
                margin-bottom: 23px;
            }
        }

    /* Tablet */
    @media (max-width: 1024px) {
      .timeline {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 40px;
      }

      .timeline::before {
        display: none;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .journey-title {
        font-size: 28px;
      }

      .timeline {
        grid-template-columns: 1fr;
        gap: 35px;
      }

      .timeline-item {
        max-width: 420px;
        margin: 0 auto;
      }
    }
