/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito Sans", sans-serif;
    --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #031119;
    /* Background color for the entire website, including individual sections */
    --default-color: rgba(255, 255, 255, 0.8);
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #e0e9f2;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #26AE48;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #1b262c;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: rgba(255, 255, 255, 0.8);
    /* The default color of the main navmenu links */
    --nav-hover-color: #26AE48;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #29343a;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #29343a;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: rgba(255, 255, 255, 0.8);
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #26AE48;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #0d1d26;
    --surface-color: #16262f;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .header-container {
    background: var(--surface-color);
    border-radius: 50px;
    padding: 5px 25px 5px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

    .header .header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }

    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 10px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
    z-index: 1;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title div {
    color: var(--heading-color);
    margin: 0;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--heading-font);
}



/* What Is DTour Channel Manager? */
/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #01111d;
    color: #fff;
    line-height: 1.6;
}

:root {
    --bg-dark: #01111d;
    --card-bg: #031a16;
    --accent-green: #00C853;
    --text-gray: #b0bec5;
    --border-radius: 12px;
}

/* --- Section Layout --- */
.what-is-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    /* Optional: Subtle background gradient for depth */
    background-image: radial-gradient(circle at top center, rgba(0, 200, 83, 0.05), transparent 70%);
}

.container {
    max-width: 1100px;
    width: 100%;
}

/* --- Header Styling --- */
.intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.intro-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #b0bec5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-desc {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 30px;
}

/* --- Feature Card Styling --- */
.feature-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    background-color: var(--card-bg);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 200, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.icon {
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- Animations --- */
.animate-fade-down {
    animation: fadeDown 1s ease-out forwards;
    opacity: 0;
}

.animate-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design --- */

/* Tablet View (Max 1024px) */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Switch to 2 columns */
    }

    /* Make the 3rd item span full width for better symmetry */
    .feature-card:nth-child(3) {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile View (Max 768px) */
@media (max-width: 768px) {
    .what-is-section {
        padding: 60px 20px;
    }

    .intro-header h2 {
        font-size: 2rem;
    }

    .main-desc {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Switch to 1 column */
        gap: 20px;
    }

    /* Reset span for mobile */
    .feature-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #01111d;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

:root {
    --bg-dark: #01111d;
    --accent: #00C853;
    /* Primary Green */
    --accent-glow: rgba(0, 200, 83, 0.4);
    --text-color: #ffffff;
    --text-muted: #b0bec5;
    --box-border: rgba(255, 255, 255, 0.1);
    --box-bg: rgba(255, 255, 255, 0.03);
}

/* --- Section Layout --- */
.focus-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Subtle background lighting */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 200, 83, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 200, 83, 0.08) 0%, transparent 40%);
}

.container {
    /* max-width: 900px; */
    width: 100%;
}

/* --- The Border Box Card Style --- */
.border-box {
    background: var(--box-bg);
    border: 1px solid var(--box-border);
    border-radius: 24px;
    padding: 70px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    /* Glass Effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.border-box:hover {
    border-color: rgba(0, 200, 83, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

/* --- Typography --- */
.text-wrapper h2 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 35px;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.text-wrapper p {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-wrapper p:last-child {
    margin-bottom: 0;
}

/* --- The Smart Link Styling --- */
.smart-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    padding: 2px 8px;
    margin: 0 2px;
    transition: all 0.3s ease;
    border-radius: 6px;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.2);
    white-space: nowrap;
}

.link-icon {
    font-size: 1rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.smart-link:hover {
    background: var(--accent);
    color: #01111d;
    border-color: var(--accent);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-2px);
}

.smart-link:hover .link-icon {
    transform: translate(3px, -3px);
}

/* --- Animation --- */
.animate-soft-entry {
    animation: slideInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .focus-section {
        padding: 60px 20px;
    }

    .border-box {
        padding: 40px 25px;
        text-align: center;
    }

    .text-wrapper h2 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }

    .text-wrapper p {
        font-size: 1.1rem;
    }
}



/* room status tracking */
/* --- CSS Reset & Variables --- */
:root {
    --primary-red: #D94040;
    --bg-pink: #F2E3E3;
    --text-dark: #333333;
    --text-grey: #666666;
    --section-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--section-bg);
    overflow-x: hidden;
}

/* --- Main Container --- */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Feature Row Common Styles --- */
.feature-row {
    display: flex;
    flex-direction: column;
    /* Mobile first: stack vertically */
    gap: 40px;
    align-items: center;
    margin-bottom: 100px;
    /* Space between rows */
}

/* --- Image Column Styling (The "Photo Style") --- */
.feat-image-col {
    width: 100%;
    position: relative;
    /* Padding creates space for the internal image to "float" */
    padding: 30px;
}

/* The colored background card */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border-radius: 24px;
    z-index: 1;
}

.bg-red {
    background-color: #26AE48;
}

.bg-pink {
    background-color: #8effaa;
}

/* The screenshot image itself */
.screenshot-img {
    position: relative;
    z-index: 2;
    /* Sit on top of the colored bg */
    width: 100%;
    height: auto;
    border-radius: 16px;
    /* The "pop out" shadow effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    /* Slight offset to show the color card behind it */
    transform: translate(15px, 15px);
    background-color: #fff;
    /* Ensure placeholder transparent images look okay */
}


/* --- Text Column Styling --- */
.feat-text-col {
    width: 100%;
    text-align: left;
    /* Mobile: usually left aligned looks better than centered for paragraphs */
    padding: 0 10px;
}

.feat-text-col h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* The red accent word */
.highlight-red {
    color: #26AE48;
}

.feat-text-col p {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 0px;
}

.explore-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.explore-link span {
    margin-left: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.explore-link:hover {
    color: var(--primary-red);
}

.explore-link:hover span {
    transform: translateX(5px);
}

/* superhero section */
body {
    background-color: #01111d;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    /* Prevents horizontal scroll */
}

/* --- SUPERHERO SECTION --- */
.superhero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    /* Changed from fixed height to min-height */
    padding: 20px;
}

.superhero-content {
    width: 100%;
    max-width: 2500px;
    min-height: 85vh;
    margin: 0 auto;
    background-image: linear-gradient(180deg, #15803D, transparent);
    border-radius: 2rem;
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Ensures content is centered */
    padding: 40px 20px;
}

.containerY {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* width: 100%;
    height: 100%; */
    text-align: center;
    /* Critical for text alignment */
    /* padding: 0 20px; */
    /* Prevents text touching edges */
}

/* --- BADGE --- */
.superhero-badge {
    background-color: rgba(255, 255, 255, .1);
    padding: 8px 16px 8px 10px;
    border-radius: 2rem;
    display: inline-flex;
    /* Changed to inline-flex to fit content */
    justify-content: center;
    align-items: center;
    gap: .5rem;
    font-size: .925rem;
    backdrop-filter: blur(5px);
    margin-bottom: 1.5rem;
}

.superhero-badge .badge {
    background-color: #FFF600;
    border-radius: 2rem;
    color: #000000;
    padding: 6px 10px;
    font-weight: 600;
}

/* --- TITLE --- */
.superhero-title {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
    text-align: center;
    line-height: 1.1;
    gap: 15px;
    width: 100%;
    max-width: 1000px;
    /* Limits width for readability */
}

.superhero-title span:first-child {
    font-size: clamp(1rem, 4vw, 4rem);
    /* font-size: clamp(1.2rem, 4vw, 2.5rem); */
    font-weight: 400;
    opacity: .9;
    color: #e0e0e0;
}

.superhero-title span:last-child {
    /* font-size: clamp(1rem, 5vw, 4rem); */
    font-size: clamp(1rem, 2.2vw, 2.1rem);
    font-weight: 700;
    color: #ffffff89;
}

/* --- DESCRIPTION --- */
.superhero-description {
    max-width: 45rem;
    text-align: center;
    margin-top: 2rem;
    font-weight: 400;
    font-size: 1.125rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* --- CTA BUTTON --- */
.superhero-cta-button {
    display: inline-block;
    border: 0;
    outline: 0;
    padding: 12px 32px;
    border-radius: 2rem;
    background-color: #FFF600;
    font-family: 'Poppins', sans-serif;
    margin-top: 2rem;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.superhero-cta-button:hover {
    transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

/* 1. LAPTOP & DESKTOP (Max 1366px) */
@media (max-width: 1366px) {
    .superhero-content {
        min-height: 80vh;
    }

    .superhero-title span:last-child {
        font-size: 4rem;
    }
}

/* 2. TABLET (Max 1024px) */
@media (max-width: 1024px) {
    .superhero-section {
        padding: 15px;
        min-height: auto;
    }

    .superhero-content {
        min-height: 70vh;
        padding: 60px 20px;
    }

    .superhero-title span:first-child {
        font-size: 1.5rem;
    }

    .superhero-title span:last-child {
        font-size: 3.2rem;
    }

    .superhero-description {
        font-size: 1rem;
        max-width: 90%;
    }
}

/* 3. MOBILE (Max 768px) */
@media (max-width: 768px) {
    .superhero-section {
        padding: 10px;
    }

    .superhero-content {
        border-radius: 1.5rem;
        padding: 50px 15px;
        min-height: 85vh;
    }

    .superhero-badge {
        font-size: 0.8rem;
    }

    .superhero-title {
        gap: 10px;
        margin-top: 1rem;
    }

    .superhero-title span:first-child {
        font-size: 1.1rem;
    }

    .superhero-title span:last-child {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .superhero-description {
        margin-top: 1.5rem;
        font-size: 0.95rem;
    }

    .superhero-cta-button {
        padding: 14px 28px;
        width: 100%;
        max-width: 250px;
    }
}


/* --- Responsive Breakpoints --- */

/* Tablet and up (min-width: 768px) */
@media (min-width: 768px) {
    .feature-row {
        flex-direction: row;
        /* Switch to horizontal layout */
        gap: 60px;
    }

    .feat-image-col,
    .feat-text-col {
        width: 50%;
        /* Split 50/50 */
    }

    /* Alternating Layout for even rows (Row 2) */
    .feature-row.reverse-layout {
        flex-direction: row-reverse;
    }

    .feat-text-col h2 {
        font-size: 2rem;
    }
}

/* Laptop/Desktop and up (min-width: 1024px) */
@media (min-width: 1024px) {
    .feature-row {
        gap: 100px;
    }

    .feat-text-col h2 {
        font-size: 2.25rem;
    }

    /* Adjust image container for larger screens */
    .feat-image-col {
        padding: 40px;
    }

    .screenshot-img {
        transform: translate(25px, 25px);
    }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-wrapper {
    position: relative;
    padding: 20px 0;
}

.steps .steps-wrapper::before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.steps .step-item {
    margin-bottom: 50px;
    width: 100%;
    position: relative;
}

.steps .step-item:last-child {
    margin-bottom: 0;
}

.steps .step-item:nth-child(even) .step-content {
    flex-direction: row-reverse;
}

.steps .step-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.steps .step-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    transition: all 0.3s ease-in-out;
}

.steps .step-icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: transform 0.3s ease-in-out;
}

.steps .step-info {
    flex: 1;
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}

.steps .step-info:hover {
    transform: translateY(-5px);
}

.steps .step-number {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.steps h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--heading-color);
}

.steps p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .steps .steps-wrapper::before {
        left: 25px;
    }

    .steps .step-item .step-content {
        flex-direction: row !important;
    }

    .steps .step-icon {
        width: 60px;
        height: 60px;
    }

    .steps .step-icon i {
        font-size: 24px;
    }

    .steps .step-info {
        padding: 20px;
    }

    .steps h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .steps .step-content {
        gap: 20px;
    }

    .steps .step-icon {
        width: 50px;
        height: 50px;
    }

    .steps .step-icon i {
        font-size: 20px;
    }

    .steps .step-info {
        padding: 15px;
    }

    .steps h3 {
        font-size: 1.2rem;
    }

    .steps p {
        font-size: 0.95rem;
    }
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.faq .faq-description {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 2rem;
}

.faq .faq-arrow {
    color: var(--accent-color);
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
    height: auto !important;
}

.service-details .service-header {
    margin-bottom: 40px;
}

.service-details .service-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.service-details .service-header h1:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.service-details .service-header .service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 25px;
}

.service-details .service-header .service-meta span {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 16px;
}

.service-details .service-header .lead {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
    margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
    border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
    margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
    margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    font-weight: 600;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
    margin-right: 8px;
    font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
    color: var(--heading-color);
    background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
    width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
    width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details .service-tabs .tab-content .content-block p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-details .service-tabs .tab-content img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
    position: relative;
    padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 15px;
    width: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
    position: relative;
    padding-bottom: 35px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-marker {
    position: absolute;
    left: -30px;
    top: -5px;
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content {
    padding-left: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
    transform: rotateY(180deg);
    background-color: var(--accent-color);
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon i {
    color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.service-details .service-gallery h3 {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details .service-gallery .service-details-slider .portfolio-item:hover .portfolio-info {
    opacity: 1;
    transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
    border-radius: 12px;
    transition: all 0.4s ease;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info h5 {
    color: var(--contrast-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    margin: 0;
    font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
    padding-top: 5px;
    bottom: 0;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    opacity: 1;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
    background-color: var(--accent-color);
}

.service-details .service-sidebar {
    position: sticky;
    top: 100px;
}

.service-details .service-sidebar .action-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
    border-radius: 15px;
    padding: 35px 30px;
    color: var(--contrast-color);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.service-details .service-sidebar .action-card:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.service-details .service-sidebar .action-card:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
    color: var(--contrast-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
    background-color: var(--contrast-color);
    color: var(--accent-color);
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
    margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
    margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
    flex-shrink: 0;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
    flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
    font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
    font-size: 36px;
    color: var(--accent-color);
    opacity: 0.3;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating {
    display: flex;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating i {
    color: #FFD700;
    font-size: 16px;
    opacity: 1;
    margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
    display: flex;
    align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
    margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
    flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

@media (max-width: 991px) {
    .service-details .service-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .service-details .service-header h1 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .service-details .service-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .service-details .service-tabs .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 14px;
    }

    .service-details .service-tabs .nav-tabs .nav-link i {
        font-size: 16px;
    }

    .service-details .service-header h1 {
        font-size: 26px;
    }

    .service-details .service-header .service-meta {
        gap: 15px;
    }

    .service-details .service-header .service-meta span {
        font-size: 14px;
    }

    .service-details .service-header .lead {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}




/* Core Features of DTour Channel Manager */
/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #01111d;
    /* Main page background */
    color: #fff;
    line-height: 1.5;
}

:root {
    --bg-dark: #01111d;
    --card-bg: #031a16;
    /* Very dark green/black for the left card */
    --button-bg: #031818;
    /* Dark color for right buttons */
    --accent-green: #00C853;
    --text-gray: #b0bec5;
    --border-radius: 12px;
    --transition: 0.4s ease;
}

/* --- Section Layout --- */
/* .sync-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: var(--bg-dark);
} */

.container {
    max-width: 1100px;
    width: 100%;
}

.content-wrapper {
    display: flex;
    gap: 50px;
    align-items: stretch;
    /* Makes both sides equal height */
}

/* --- Left Side: Feature Card --- */
.feature-card {
    flex: 1.2;
    /* Takes up slightly more space (approx 60%) */
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);

    /* Animation */
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.feature-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.feature-card .subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 500;
}

.feature-card .description {
    font-size: 0.95rem;
    color: var(--text-gray);
    max-width: 90%;
}

/* --- Right Side: Benefits List --- */
.benefits-column {
    flex: 0.8;
    /* Takes up approx 40% */
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Animation */
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.2s forwards;
    /* 0.2s delay */
}

.benefits-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* The Pill/Button Styling */
.benefit-item {
    display: flex;
    align-items: center;
    background-color: var(--button-bg);
    padding: 18px 25px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: default;
}

/* Hover Effect for Buttons */
.benefit-item:hover {
    background-color: rgba(0, 200, 83, 0.1);
    /* Very subtle green tint */
    border-color: var(--accent-green);
    transform: translateX(5px);
    /* Slight move to right */
}

.check-icon {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
}

.benefit-item .text {
    font-size: 1rem;
    font-weight: 600;
    color: #eef2f5;
}

/* --- Animations --- */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Responsive Media Queries --- */

/* Tablet View (iPad, etc.) */
@media (max-width: 1024px) {
    .content-wrapper {
        gap: 30px;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .feature-card h2 {
        font-size: 1.7rem;
    }
}

/* Mobile View (Phones) */
@media (max-width: 768px) {
    .sync-section {
        padding: 30px 20px;
        align-items: flex-start;
        /* Reset center alignment */
    }

    .content-wrapper {
        flex-direction: column;
        /* Stack them vertically */
        gap: 40px;
    }

    .feature-card {
        padding: 40px 20px;
        min-height: 300px;
        /* Ensure enough height on mobile */
    }

    .benefits-column {
        width: 100%;
    }

    .benefit-item {
        padding: 15px 20px;
    }
}

/* Rate Management From One Dashboard */
/* --- Variables for Dark Theme --- */
:root {
    --bg-main: #01111d;
    /* Page Background */
    --card-bg: #031a16;
    /* The Dark Green-Black Box */
    --pill-bg: #031818;
    /* Button Background */
    --accent: #00C853;
    /* Green Checkmarks */
    --text-white: #ffffff;
    --text-gray: #b0bec5;
    --radius: 12px;
}

/* --- Section Layout --- */
.feature-section {
    background-color: var(--bg-main);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.content-wrapper {
    display: flex;
    gap: 50px;
    align-items: stretch;
    /* Forces Card and List to be same height */
}

/* --- LEFT SIDE: Benefits List --- */
.benefits-column {
    flex: 0.6;
    /* Takes up approx 40% width */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Benefit Pill/Button Style */
.benefit-item {
    display: flex;
    align-items: center;
    background-color: var(--pill-bg);
    padding: 18px 25px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.benefit-item:hover {
    transform: translateX(10px);
    /* Slide effect */
    border-color: var(--accent);
}

.benefit-item .icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 15px;
}

.benefit-item .text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-white);
}

/* --- RIGHT SIDE: Feature Card --- */
.feature-card {
    flex: 1.4;
    /* Takes up approx 60% width */
    background-color: var(--card-bg);
    border-radius: var(--radius);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-content.left-align {
    text-align: left;
}

.description-large {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #eceff1;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Bullet List inside the Card */
.card-bullets {
    list-style: disc;
    padding-left: 20px;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
}

.card-bullets li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-gray);
}

/* --- Animations --- */
.animate-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-right {
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.2s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Responsive (Mobile View) --- */
@media (max-width: 768px) {
    .content-wrapper.reverse-desktop {
        /* On mobile, swap order so the Card is on TOP and Benefits are BOTTOM */
        flex-direction: column-reverse;
        gap: 40px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .benefits-column,
    .feature-card {
        width: 100%;
        /* Full width on mobile */
    }
}

/* PMS & Booking Engine Integration */

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #01111d;
    /* Main dark background */
    color: #fff;
    line-height: 1.6;
}

:root {
    --bg-dark: #01111d;
    --card-bg: #031a16;
    /* Darker card background */
    --accent-green: #00C853;
    --text-gray: #b0bec5;
    --border-radius: 12px;
    --section-spacing: 80px;
}

/* --- Section Structure --- */
.integration-section {
    padding: var(--section-spacing) 20px;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1100px;
    width: 100%;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* --- Integrations Grid Layout --- */
.integrations-grid {
    display: grid;
    /* 3 columns on laptop/desktop */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* --- Integration Cards Style --- */
.integration-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    /* Initial state for animation */
}

.integration-card:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
    border-color: var(--accent-green);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.check-icon {
    color: var(--accent-green);
    font-size: 1.3rem;
    margin-right: 12px;
    font-weight: bold;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.card-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Benefits Summary Section --- */
.benefits-summary {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    /* Initial state for animation */
}

.summary-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
}

.summary-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #e0e0e0;
}

.check-icon.small {
    font-size: 1rem;
    margin-right: 8px;
}

/* --- Animations --- */
/* Fade Down for Header */
.animate-fade-down {
    animation: fadeDown 0.8s ease-out forwards;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pop In for Grid Cards (Staggered with delay in HTML) */
.animate-pop-in {
    animation: popIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Fade Up for Summary Footer */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out 0.8s forwards;
    /* 0.8s delay to wait for grid */
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Responsive Design --- */

/* Tablet View (Under 992px) */
@media (max-width: 992px) {
    .integrations-grid {
        /* Switch to 2 columns */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Make the 3rd item span full width on tablet for neatness */
    .integration-card:nth-child(3) {
        grid-column: span 2;
    }
}

/* Mobile View (Under 768px) */
@media (max-width: 768px) {
    .section-spacing {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .integrations-grid {
        /* Switch to 1 column stack */
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Reset the span for mobile */
    .integration-card:nth-child(3) {
        grid-column: auto;
    }

    .summary-list {
        flex-direction: column;
        /* Stack benefits vertically */
        gap: 15px;
        align-items: center;
    }
}

/* Wide OTA Connectivity */
/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #01111d;
    color: #fff;
    line-height: 1.6;
}

:root {
    --bg-dark: #01111d;
    --card-bg: #031a16;
    --accent-green: #00C853;
    --text-gray: #b0bec5;
    --border-radius: 12px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-gray);
}

/* --- Slider Section Wrapper --- */
.slider-section {
    padding: 40px 0;
    overflow: hidden;
    /* Hides scrollbar */
    background: transparent;
}

/* --- Main Container --- */
.logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Fading Edges (Optional: Makes it look like logos fade in/out) */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    /* Width of the fade */
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* Allows clicking through */
}

/* Left Fade */
.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #01111d 0%, transparent 100%);
}

/* Right Fade */
.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #01111d 0%, transparent 100%);
}

/* --- The Moving Track --- */
.slider-track {
    display: flex;
    width: max-content;
    /* Auto width based on content */
    animation: scroll 30s linear infinite;
    /* Adjust speed here */
    gap: 30px;
    /* Space between cards */
}

/* Pause animation on hover */
.slider-track:hover {
    animation-play-state: paused;
}

/* --- Individual Slide/Card --- */
.slide {
    background: rgb(233, 255, 242);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    width: 180px;
    /* Fixed Width */
    height: 120px;
    /* Fixed Height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents squishing */
    transition: 0.3s;
}

/* --- Content Styling --- */
.ota-logo {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
    margin-bottom: 10px;

    /* Make opacity 1 so the glow is bright */
    opacity: 1;

    transition: all 0.4s ease;

    /* --- PERMANENT GLOW EFFECT --- */
    /* Drop-shadow respects PNG transparency */
    filter: drop-shadow(0 0 8px rgba(0, 200, 83, 0.6));
}

/* --- Hover Effect (Just Scaling & Intensifying) --- */
.slide:hover .ota-logo {
    /* Slightly larger and brighter glow on hover */
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 200, 83, 1));
}

.generic-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.slide span {
    font-size: 0.85rem;
    color: #b0bec5;
}

/* --- The Animation --- */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move left by 50% because the track contains 2 sets. 
           50% is exactly one full set. */
        transform: translateX(-50%);
    }
}

/* --- Responsive Adjustments --- */

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .slider-track {
        gap: 15px;
        animation-duration: 20s;
        /* Faster on mobile */
    }

    .slide {
        width: 140px;
        height: 100px;
        padding: 15px;
    }

    .ota-logo {
        max-width: 80px;
        max-height: 30px;
    }

    .generic-icon {
        font-size: 1.5rem;
    }

    /* Reduce fade width on small screens */
    .logo-slider::before,
    .logo-slider::after {
        width: 50px;
    }
}

/* =========================================
   SECTION 5: OTA CONNECTIVITY (Grid)
   ========================================= */
.ota-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.ota-grid {
    display: grid;
    /* 5 columns on desktop */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ota-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #e0e0e0;
    transition: 0.3s;
    opacity: 0;
    /* Hidden for animation */
}

.ota-card:hover {
    background-color: var(--card-bg);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    color: #fff;
}

/* =========================================
   SECTION 6: ANALYTICS (Split Layout)
   ========================================= */
.analytics-section {
    padding: 80px 0;
    background-color: #021622;
    /* Slightly lighter bg for contrast */
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* Left Column */
.metrics-column {
    flex: 1;
    opacity: 0;
}

.metrics-column h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.metrics-column .subtitle {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.metrics-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns for list items */
    gap: 15px;
}

.metrics-list li {
    display: flex;
    align-items: center;
    color: #e0e0e0;
    font-size: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    margin-right: 12px;
}

/* Right Column (Benefits Card) */
.benefits-card {
    flex: 0.8;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
}

.benefits-card h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.benefit-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-icon {
    color: var(--accent-green);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* end Core Features of DTour Channel Manager*/

/* =========================================
   TECH STACK FLOW (Visual Diagram)
   ========================================= */
.tech-stack-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 160px;
    opacity: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #032d25;
    color: var(--text-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
    border: 2px solid #044438;
}

/* Highlight the DTour step */
.step-number.highlight {
    background-color: var(--accent-green);
    color: #000;
    border-color: var(--accent-green);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
}

.step-content h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: #fff;
}

.step-content p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.3;
}

.step-arrow {
    color: var(--text-gray);
    font-size: 1.5rem;
    margin-top: 5px;
    opacity: 0.3;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.animate-fade-down {
    animation: fadeDown 0.8s forwards;
    opacity: 0;
}

.animate-pop {
    animation: popIn 0.5s forwards;
}

.animate-left {
    animation: slideLeft 0.8s forwards;
}

.animate-right {
    animation: slideRight 0.8s forwards;
}

.animate-up {
    animation: slideUp 0.6s forwards;
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }

    from {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }

    from {
        opacity: 0;
        transform: translateX(-30px);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }

    from {
        opacity: 0;
        transform: translateX(30px);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}


/* =========================================
   RESPONSIVE (Mobile & Tablet)
   ========================================= */

/* Tablet (Max 1024px) */
@media (max-width: 1024px) {
    .ota-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cols */
    }

    .metrics-list {
        grid-template-columns: 1fr;
        /* 1 col list */
    }

    .process-flow {
        flex-wrap: wrap;
        /* Allow flow to wrap if tight */
    }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {

    /* OTA Section */
    .ota-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols */
    }

    /* Analytics Section */
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .metrics-column,
    .benefits-card {
        width: 100%;
        text-align: left;
    }

    /* Tech Stack Flow - Vertical Stack */
    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .process-step {
        flex-direction: row;
        /* Horizontal step layout */
        width: 100%;
        text-align: left;
        margin-bottom: 0;
        padding: 10px 0;
    }

    .step-number {
        margin-bottom: 0;
        margin-right: 20px;
        min-width: 40px;
        /* Prevent shrink */
    }

    .step-content {
        text-align: left;
    }

    .step-arrow {
        transform: rotate(90deg);
        /* Point arrow down */
        margin: 5px 0 15px 18px;
        /* Align with dots */
    }
}

/* Channel Manager vs PMS */
/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #01111d;
    color: #fff;
    line-height: 1.6;
}

:root {
    --bg-dark: #01111d;
    --card-bg: #031a16;
    --card-bg-neutral: #0b1e2b;
    /* Slightly blue/grey for PMS */
    --accent-green: #00C853;
    --text-gray: #b0bec5;
    --border-radius: 16px;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Styling --- */
.comparison-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* --- Comparison Grid --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 40px;
    align-items: stretch;
    /* Cards will be same height */
}

/* --- Card Styles --- */
.compare-card {
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.compare-card:hover {
    transform: translateY(-8px);
}

/* PMS Card Specifics */
.pms-card {
    background-color: var(--card-bg-neutral);
    border-top: 4px solid #546e7a;
    /* Grey/Blue top border */
}

/* Channel Manager Card Specifics (Highlighted) */
.cm-card {
    background-color: var(--card-bg);
    border-top: 4px solid var(--accent-green);
    /* Green top border */
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.05);
}

.cm-card:hover {
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.15);
}

/* --- Card Content --- */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.badge {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #cfd8dc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.highlight {
    background-color: rgba(0, 200, 83, 0.2);
    color: var(--accent-green);
}

/* --- List Items --- */
.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
}

.compare-list .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 1;
}

.compare-list .text strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
}

.compare-list .text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* --- Animations --- */
.animate-fade-down {
    animation: fadeDown 0.8s ease-out forwards;
    opacity: 0;
}

.animate-left {
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-right {
    animation: slideInRight 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }

    from {
        opacity: 0;
        transform: translateX(-40px);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }

    from {
        opacity: 0;
        transform: translateX(40px);
    }
}

/* --- Responsive Design --- */

/* Laptop / Tablet (Max 1024px) */
@media (max-width: 1024px) {
    .compare-card {
        padding: 30px;
    }

    .comparison-grid {
        gap: 20px;
    }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 30px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Remove slide animations on mobile to prevent scrolling issues */
    .animate-left,
    .animate-right {
        animation: fadeDown 0.8s ease-out forwards;
    }
}

/* FAQs About DTour Channel Manager */
/* --- Reset & Base --- */




/* --- Section Layout --- */
.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
}

.container {
    /* max-width: 800px; */
    /* Narrower width for reading FAQs easily */
    width: 100%;
}

/* --- Header --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* --- Accordion Styles --- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 200, 83, 0.5);
    /* Slight green border on hover */
}

.faq-item.active {
    background-color: var(--faq-bg);
    border-color: var(--accent-green);
}

/* The Clickable Question Part */
.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

/* Rotate icon when active */
.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    /* Turns + into x */
}

/* The Answer Part (Hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Open State */
.faq-item.active .faq-answer {
    max-height: 200px;
    /* Enough height for text */
    padding-bottom: 20px;
}

/* --- Call To Action Buttons --- */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-green);
    color: #000;
    border: 2px solid var(--accent-green);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* --- Animations --- */
.animate-fade-down {
    animation: fadeDown 0.8s ease-out forwards;
    opacity: 0;
}

.animate-up {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design --- */

/* Tablet & Mobile (Max 768px) */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-question .icon {
        font-size: 1.2rem;
    }

    .cta-container {
        flex-direction: column;
        /* Stack buttons on mobile */
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

/* Key Features */
/* --- Core Section Reset --- */
.core-section {
    padding: 100px 20px;
    background-color: #01111d;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* --- Header --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #b0bec5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: #b0bec5;
    font-size: 1.2rem;
}

/* --- Grid Layout --- */
.panels-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* --- Panel Card --- */
.wide-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.wide-panel:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 200, 83, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* --- Icon --- */
.panel-icon {
    font-size: 2.5rem;
    min-width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wide-panel:hover .panel-icon {
    background: #00C853;
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

/* --- Content --- */
.panel-content {
    flex: 1;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.panel-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Tag */
.tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(0, 200, 83, 0.15);
    color: #00C853;
    border: 1px solid rgba(0, 200, 83, 0.3);
    white-space: nowrap;
}

/* Descriptions */
.summary {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 8px;
    display: block;
}

.description {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 15px;
}

/* --- NEW: Lists inside Panels --- */
.panel-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.panel-list li {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.panel-list li::before {
    content: "✔";
    color: #00C853;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.8rem;
}

/* --- NEW: OTA Tags Grid --- */
.ota-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.ota-tags span {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 6px;
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Animations --- */
.animate-fade {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .panels-wrapper {
        grid-template-columns: 1fr;
    }

    .wide-panel {
        flex-direction: column;
        padding: 25px;
    }

    .panel-icon {
        margin-bottom: 15px;
    }
}

/* --- Hide Tags on Mobile --- */
@media (max-width: 768px) {
    .tag {
        display: none !important;
    }
}

/* end key features  */
/* --- OTA Badges Styling (Panel 4) --- */
/* --- OTA Badges Styling (Panel 4) --- */
.ota-grid-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.ota-badge {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

/* < !-- new Why Hotels Need a Guest CRM --> */
/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #01111d;
    color: #fff;
    line-height: 1.6;
}

:root {
    --bg-dark: #01111d;
    --card-bg: #081419;
    --accent: #00C853;
    --text-muted: #b0bec5;
    --radius: 20px;
}

/* --- Section Layout --- */
.why-depend-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
    /* Subtle background texture */
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 200, 83, 0.03) 0%, transparent 40%);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* --- Header --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Auto-Fit Grid (Perfect for 10 items) --- */
.depend-grid {
    display: grid;
    /* This creates as many columns as fit, minimum 280px wide */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* --- Card Styling --- */
.depend-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: left;
    /* Left align for a clean list look */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    /* Animation Entry */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: var(--delay);
}

/* Hover Effect */
.depend-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 200, 83, 0.4);
    background: #0b1a21;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.icon-box {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.depend-card:hover .icon-box {
    background: var(--accent);
    color: #000;
    transform: scale(1.1);
}

/* Text Styling */
.depend-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.depend-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Animations --- */
.animate-fade-down {
    animation: fadeDown 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE DESIGN --- */

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .why-depend-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .depend-grid {
        /* On mobile, stack them or keep 2 cols if space permits.
           Auto-fill handles this, but let's force 1 col for readability */
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .depend-card {
        padding: 25px 20px;
        transform: none !important;
        /* Remove heavy hover movement on touch */
    }
}

/* < !-- end new Why Hotels Need a Guest CRM --> */