/* CSS Variables */
:root {
    --green-bg: #008844;
    --mint: #88ffce;
    --white: #FFFFFF;
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Passion One', cursive;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Page Load Animation */
@keyframes pageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    animation: pageLoad 0.5s ease-out;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Utility Classes for Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-down {
    transform: translateY(-30px);
}

.fade-in-down.animated {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-left.animated {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-right.animated {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.9);
}

.scale-in.animated {
    transform: scale(1);
}

/* Hero Section */
.hero {
    background-color: #04824e;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 4rem 4rem 4rem;
    overflow: hidden;
}

/* Top Navigation */
.hero__nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: auto;
    z-index: 10;
}

.hero__logo {
    display: flex;
    align-items: center;
}

.hero__logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    animation: fadeInDown 0.8s ease-out;
    transition: transform 0.3s ease;
}

.hero__logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero__contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-end;
    width: 100%;
}

.hero__contact-item {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-family: var(--font-display);
    font-weight: 100;
    transition: all 0.3s ease;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    position: relative;
}

.hero__contact-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.hero__contact-item:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.hero__contact-item:hover::after {
    width: 100%;
}

.hero__menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-display);
}

.hero__menu-line {
    width: 100%;
    height: 2px;
    background-color: var(--white);
}

/* Main Hero Content */
.hero__content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0;
    z-index: 10;
}

.hero__headline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero__headline-primary {
    font-family: var(--font-display);
    font-size: 150px;
    font-weight: 700;
    color: var(--mint);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0;
    padding: 0;
    animation: fadeInLeft 1s ease-out 0.3s both;
    opacity: 0;
}

.hero__headline-secondary {
    font-family: var(--font-display);
    font-size: 150px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0;
    margin-top: -0.15em;
    padding: 0;
    animation: fadeInRight 1s ease-out 0.5s both;
    opacity: 0;
}

/* Bottom CTA Section */
.hero__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
    z-index: 10;
    gap: 20rem;
}

.hero__cta-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero__cta-button {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    animation: scaleIn 0.8s ease-out 0.7s both;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.hero__cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero__cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.hero__cta-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero__cta-button:active {
    transform: scale(0.95);
}

.hero__cta-arrow {
    width: 32px;
    height: 32px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.hero__cta-button:hover .hero__cta-arrow {
    transform: translateX(5px) rotate(5deg);
}

.hero__cta-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    opacity: 0;
}

.hero__cta-label {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 100;
    text-transform: none;
    letter-spacing: 0;
    opacity: 1;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
}

.hero__cta-title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
    margin-top: -0.1em;
    text-align: center;
}

/* Decorative Arrow Shape */
.hero__decorative-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 200px;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 2rem 3rem;
    }

    .hero__headline-primary,
    .hero__headline-secondary {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 2rem 3rem;
        min-height: 100vh;
        height: auto;
    }

    .hero__nav {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .hero__contact {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        flex-wrap: wrap;
    }

    .hero__menu {
        position: absolute;
        top: 2rem;
        right: 2rem;
    }

    .hero__content {
        justify-content: center;
        padding: 2rem 0;
        text-align: center;
    }

    .hero__headline-primary,
    .hero__headline-secondary {
        font-size: 3rem;
    }

    .hero__cta {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        padding-top: 3rem;
        padding-bottom: 2rem;
        margin-top: 0;
    }

    .hero__cta-block {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero__decorative-arrow {
        display: none;
    }

    .hero__cta-button {
        width: 60px;
        height: 60px;
    }

    .hero__cta-arrow {
        width: 24px;
        height: 24px;
    }

    .hero__cta-title {
        font-size: 32px;
    }

    .hero__cta-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1.5rem 2rem;
    }

    .hero__headline-primary,
    .hero__headline-secondary {
        font-size: 2.2rem;
    }

    .hero__cta-button {
        width: 50px;
        height: 50px;
    }

    .hero__cta-arrow {
        width: 20px;
        height: 20px;
    }

    .hero__cta-title {
        font-size: 1.2rem;
    }

    .hero__cta-label {
        font-size: 0.75rem;
    }

    .hero__decorative-arrow {
        display: none;
    }

    .hero__menu {
        right: 1.5rem;
    }
}

/* =========================================================
   About Page (Redesigned Hero)
   ========================================================= */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: visible;
    background-image:
        linear-gradient(90deg, rgba(4, 130, 78, 0.92) 0%, rgba(4, 130, 78, 0.90) 55%, rgba(4, 130, 78, 0.82) 100%),
        url("assets/about-us-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Decorative Arrow Shape (reuse home page header asset) */
.about-hero__decorative-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* Smaller so it doesn't overlap the heading/text */
    height: 150px;
    width: auto;
    object-fit: contain;
    /* Keep it behind the content */
    z-index: 0;
    pointer-events: none;
}

/* Use Simple Header styles as an overlay inside About hero */
.about-hero .simple-header.simple-header--overlay {
    position: relative;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 1.25rem 4rem 1.1rem 4rem;
    z-index: 2;
    flex-shrink: 0;
}

.about-hero__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    /* Give the left media a bit more room so the image reads larger */
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 0;
    flex: 1;
    padding: 1rem 4rem 3.5rem 0;
    min-height: calc(100vh - 80px);
}

.about-hero__media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-hero__image {
    /* Slightly oversize within its column for better visual balance */
    width: min(1180px, 104%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.25));
    margin-left: -6.75rem;
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #c9ffe5;
    margin: 0 0 1.75rem 0;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
}

.about-hero__title-line1,
.about-hero__title-line2 {
    display: block;
    line-height: 1;
}

.about-hero__title-line1 {
    /* Same size + same left start as "BOOKITO" */
    font-size: 1em;
    letter-spacing: 0.02em;
    margin-left: 0;
}

.about-hero__title-line2 {
    margin-top: -0.22em;
    color: var(--white);
}

.about-hero__text {
    max-width: 720px;
}

.about-hero__content {
    margin-left: -10rem;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.about-hero__text p {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin: 0 0 1.15rem 0;
    text-align: justify;
    text-justify: inter-word;

    /* Force each paragraph to 4 lines (requested) */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.about-hero__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 6rem 3rem 6rem 0;
        min-height: 65vh;
    }

    .about-hero__image {
        margin-left: -3rem;
    }

    .about-hero .simple-header.simple-header--overlay {
        padding: 1.5rem 3rem 1rem 3rem;
    }

    .about-hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding-top: 1rem;
    }

    .about-hero__content {
        margin-left: -4.5rem;
    }

    .about-hero__title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 5rem 2rem;
        min-height: auto;
    }

    .about-hero .simple-header.simple-header--overlay {
        padding: 1.25rem 2rem 0.75rem 2rem;
    }

    .about-hero__image {
        margin-left: 0;
    }

    .about-hero__decorative-arrow {
        width: 25%;
        clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 30% 100%, 0% 50%);
        border-radius: 0 0 0 150px;
        height: auto;
    }

    .about-hero__content {
        margin-left: 0;
    }

    .about-hero__inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        padding-top: 0.5rem;
    }

    .about-hero__title {
        font-size: 56px;
    }

    .about-hero__text p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 4rem 1.5rem;
    }

    .about-hero .simple-header.simple-header--overlay {
        padding: 1.1rem 1.5rem 0.6rem 1.5rem;
    }

    .about-hero .simple-header.simple-header--overlay .simple-header__contact-item {
        display: none;
    }

    .about-hero__title {
        font-size: 44px;
        margin-bottom: 1.25rem;
    }

    .about-hero__decorative-arrow {
        display: none;
    }
}

/* Journey Hero Section */
.journey-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem 4rem 4rem;
    background: linear-gradient(135deg, var(--green-bg) 0%, #006633 100%);
    overflow: hidden;
}

.journey-hero .simple-header.simple-header--overlay {
    position: relative;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 1.25rem 4rem 1.1rem 4rem;
    z-index: 2;
}

.journey-hero__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.journey-hero__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

@media (max-width: 1024px) {
    .journey-hero {
        padding: 6rem 3rem 3rem 3rem;
        min-height: 40vh;
    }

    .journey-hero .simple-header.simple-header--overlay {
        padding: 1.5rem 3rem 1rem 3rem;
    }

    .journey-hero__title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .journey-hero {
        padding: 5rem 2rem 2rem 2rem;
        min-height: auto;
    }

    .journey-hero .simple-header.simple-header--overlay {
        padding: 1.25rem 2rem 0.75rem 2rem;
    }

    .journey-hero__title {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .journey-hero {
        padding: 4rem 1.5rem 2rem 1.5rem;
    }

    .journey-hero .simple-header.simple-header--overlay {
        padding: 1.1rem 1.5rem 0.6rem 1.5rem;
    }

    .journey-hero .simple-header.simple-header--overlay .simple-header__contact-item {
        display: none;
    }

    .journey-hero__title {
        font-size: 44px;
    }
}

/* Timeline Section */
.timeline-section {
    width: 100%;
    padding: 5rem 4rem;
    background-color: var(--white);
}

.timeline-section__container {
    max-width: 1600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 200px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #008844;
    z-index: 1;
}

.timeline__entry {
    position: relative;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 180px 40px 2.5fr;
    align-items: center;
    gap: 2rem;
}

.timeline__entry:last-child {
    margin-bottom: 0;
}

.timeline__date {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: #008844;
    text-align: right;
    padding-right: 2rem;
    line-height: 1.5;
}

.timeline__node {
    position: absolute;
    left: calc(200px + 1.5px - 8px);
    width: 16px;
    height: 16px;
    background-color: #008844;
    border-radius: 50%;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.timeline__card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    width: 100%;
    min-width: 500px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-left: 1.5rem;
}

/* Triangular pointer */
.timeline__card::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.timeline__card::after {
    content: '';
    position: absolute;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-right: 11px solid var(--white);
    z-index: 2;
}

.timeline__card-role {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: #008844;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline__card-company {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.timeline__card-description {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.6;
}

/* Timeline Responsive */
@media (max-width: 1024px) {
    .timeline-section {
        padding: 4rem 3rem;
    }

    .timeline::before {
        left: 160px;
    }

    .timeline__entry {
        grid-template-columns: 140px 40px 2.5fr;
        gap: 1.5rem;
    }

    .timeline__date {
        font-size: 15px;
        padding-right: 1.5rem;
    }

    .timeline__node {
        left: calc(160px + 1.5px - 8px);
    }

    .timeline__card {
        width: 100%;
        min-width: 400px;
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 3rem 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline__entry {
        grid-template-columns: auto 40px 2.5fr;
        gap: 1rem;
        padding-left: 0;
    }

    .timeline__date {
        text-align: right;
        padding-right: 1rem;
        font-size: 14px;
    }

    .timeline__node {
        left: calc(20px + 1.5px - 8px);
    }

    .timeline__card {
        max-width: 100%;
        min-width: 300px;
        margin-left: 0.75rem;
    }

    .timeline__card::before,
    .timeline__card::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 2rem 1.5rem;
    }

    .timeline::before {
        left: 15px;
        width: 2px;
    }

    .timeline__entry {
        grid-template-columns: auto 30px 2.5fr;
        gap: 0.75rem;
        margin-bottom: 3rem;
    }

    .timeline__date {
        font-size: 13px;
        padding-right: 0.75rem;
    }

    .timeline__node {
        left: calc(15px + 1px - 6px);
        width: 12px;
        height: 12px;
    }

    .timeline__card {
        padding: 1.25rem 1.5rem;
        min-width: 250px;
        margin-left: 0.5rem;
    }

    .timeline__card-role {
        font-size: 16px;
    }

    .timeline__card-company {
        font-size: 15px;
    }

    .timeline__card-description {
        font-size: 14px;
    }
}

/* Management Section */
.management-section {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.management-section__inner {
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 0;
}

.management-section__content {
    flex: 0 0 auto;
    max-width: 750px;
    width: 55%;
    background-color: var(--white);
    padding: 4rem 3rem 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.management-section__heading {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #1c1c1c;
    margin-bottom: 2rem;
    line-height: 0.8;
}

.management-section__text {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 100%;
    text-align: justify;
}

.management-section__text:last-of-type {
    margin-bottom: 1.5rem;
}

.management-section__cta {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    margin-top: 0.5rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.management-section__cta:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.management-section__visual {
    flex: 0 0 45vw;
    background-color: #004d2e;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 45vw;
    margin-left: auto;
    margin-right: 0;
    margin-right: 0;
    min-height: 550px;
}

.management-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.management-section__visual:hover .management-section__image {
    transform: none;
}

/* Management Section Responsive */
@media (max-width: 1024px) {
    .management-section__inner {
        min-height: 500px;
    }

    .management-section__content {
        padding: 3rem 4rem;
    }

    .management-section__heading {
        font-size: 3rem;
    }

    .management-section__visual {
        padding: 0;
    }

    .management-section__image {
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .management-section {
        padding: 0;
    }

    .management-section__inner {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .management-section__content {
        padding: 3rem 2rem 4rem 2rem;
        width: 100%;
        flex: 0 0 auto;
        text-align: center;
        align-items: center;
    }

    .management-section__heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .management-section__text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .management-section__visual {
        width: 100%;
        flex: 0 0 auto;
        padding: 0;
        min-height: 300px;
        height: auto;
    }

    .management-section__image {
        max-height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .management-section {
        padding: 0;
    }

    .management-section__inner {
        flex-direction: column-reverse;
    }

    .management-section__content {
        padding: 2.5rem 1.5rem 3.5rem 1.5rem;
        width: 100%;
        flex: 0 0 auto;
        text-align: center;
        align-items: center;
    }

    .management-section__heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .management-section__text {
        font-size: 0.8rem;
        line-height: 1.5;
        text-align: center;
    }

    .management-section__visual {
        width: 100%;
        flex: 0 0 auto;
        padding: 0;
        min-height: 220px;
        height: auto;
    }

    .management-section__image {
        max-height: 100%;
        object-fit: cover;
    }
}

/* Inventory Section */
.inventory-section {
    width: 100%;
    padding: 0;
}

.inventory-section__inner {
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: stretch;
    min-height: auto;
    gap: 0;
}

.inventory-section__visual {
    flex: 0 0 46vw;
    background-color: #f5f5f5;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 46vw;
    margin-left: 0;
    margin-right: 0;
    margin-right: 0;
    min-height: 550px;
}

.inventory-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.inventory-section__visual:hover .inventory-section__image {
    transform: none;
}

.inventory-section__content {
    flex: 1;
    background-color: #f5f5f5;
    padding: 4rem 3rem 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 0;
    margin-left: 0;
}

.inventory-section__heading {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.02em;
    color: #1c1c1c;
    margin-bottom: 2rem;
    line-height: 0.8;
}

.inventory-section__text {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 100%;
    text-align: justify;
}

.inventory-section__text:last-of-type {
    margin-bottom: 1.5rem;
}

.inventory-section__cta {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    margin-top: 0.5rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.inventory-section__cta:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

/* Inventory Section Responsive */
@media (max-width: 1024px) {
    .inventory-section__inner {
        min-height: 500px;
    }

    .inventory-section__content {
        padding: 3rem 4rem;
    }

    .inventory-section__heading {
        font-size: 3rem;
    }

    .inventory-section__visual {
        padding: 0;
        min-height: 500px;
        height: auto;
    }

    .inventory-section__content {
        height: auto;
    }

    .inventory-section__image {
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .inventory-section {
        padding: 0;
    }

    .inventory-section__inner {
        flex-direction: column;
        min-height: auto;
    }

    .inventory-section__visual {
        width: 100%;
        flex: 0 0 auto;
        padding: 0;
        order: unset;
        min-height: 300px;
        height: auto;
    }

    .inventory-section__image {
        max-height: 100%;
        object-fit: cover;
    }

    .inventory-section__content {
        padding: 3rem 2rem 4rem 2rem;
        width: 100%;
        flex: 0 0 auto;
        order: unset;
        height: auto;
        text-align: center;
        align-items: center;
    }

    .inventory-section__heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .inventory-section__text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .inventory-section {
        padding: 0;
    }

    .inventory-section__inner {
        flex-direction: column;
    }

    .inventory-section__visual {
        width: 100%;
        flex: 0 0 auto;
        padding: 0;
        min-height: 220px;
        height: auto;
    }

    .inventory-section__image {
        max-height: 100%;
        object-fit: cover;
    }

    .inventory-section__content {
        padding: 2.5rem 1.5rem 3.5rem 1.5rem;
        width: 100%;
        flex: 0 0 auto;
        height: auto;
        text-align: center;
        align-items: center;
    }

    .inventory-section__heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .inventory-section__text {
        font-size: 0.8rem;
        line-height: 1.5;
        text-align: center;
    }
}

/* Partners Section */
.partners-section {
    width: 100%;
    padding: 3rem 0 6rem 0;
    background-color: var(--white);
}

.partners-section__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.partners-section__carousel-wrapper {
    overflow: hidden;
    margin-bottom: 5rem;
    position: relative;
    width: 100%;
}

.partners-section__grid {
    display: flex;
    gap: 3rem;
    padding-top: 0;
    margin-top: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.partners-section__grid .partner-card-wrapper {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 0;
}

.partner-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 250px;
    /* Enforce square width */
    flex-shrink: 0;
    /* Prevent shrinking in marquee */
}

.partner-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: none;
    opacity: 1;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    min-height: 250px;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.partner-card:hover {
    transform: none;
    border-color: rgba(4, 130, 78, 0.2);
    box-shadow: 0 8px 24px rgba(4, 130, 78, 0.15);
}

.partner-card:hover .partner-card__name {
    color: var(--green-bg);
}

.partner-card__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    padding: 1rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
}

.partner-card__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--green-bg);
    flex-shrink: 0;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.partner-card:hover .partner-card__dot {
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--green-bg);
}

.partner-card__name {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-align: center;
}

.partner-card-wrapper .partner-card__name {
    margin-top: 0.75rem;
}

.partner-card__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: none;
    z-index: 0;
}

.partner-card:hover .partner-card__logo {
    transform: none;
    filter: grayscale(0);
}

.partner-card__description {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}

.partner-card__cta {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    margin: 0;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
    width: fit-content;
    background: rgba(4, 130, 78, 0.9);
}

.partner-card__cta:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.partners-section__title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.partners-section__title {
    font-family: var(--font-display);
    font-size: 90px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    line-height: 0.9;
}

.partners-section__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem auto 0;
    max-width: 600px;
    position: relative;
}

.partners-section__divider-text {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.partners-section__divider-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(4, 130, 78, 0.1);
    border-radius: 4px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.partners-section__divider-text:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partners-section__divider-text:hover::before {
    transform: scale(1);
}

.partners-section__divider-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    flex: 1;
}

/* Partners Section Responsive */
@media (max-width: 1024px) {
    .partners-section__inner {
        padding: 0;
    }

    .partners-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .partners-section__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 0;
    }

    .partners-section__inner {
        padding: 0;
    }

    .partners-section__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .partner-card {
        gap: 1.25rem;
    }

    .partner-card__logo {
        max-height: 100px;
    }

    .partners-section__title {
        font-size: 2.5rem;
    }

    .partners-section__divider {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 3rem 0;
    }

    .partners-section__inner {
        padding: 0;
    }

    .partners-section__grid {
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .partner-card__name {
        font-size: 1rem;
    }

    .partner-card__description {
        font-size: 0.9rem;
    }

    .partners-section__title {
        font-size: 2rem;
    }

    .partners-section__title-block {
        gap: 1.5rem;
    }

    .partners-section__divider {
        max-width: 300px;
    }
}

/* Partners Grid Section */
.partners-grid-section {
    width: 100%;
    padding: 4rem 4rem 6rem 4rem;
    background-color: #f5f5f5;
    opacity: 1 !important;
    min-height: 400px;
    display: block;
}

.partners-grid-section__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.partners-grid .partner-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 1 !important;
    transform: translateY(0) !important;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.partners-grid .partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(4, 130, 78, 0.15);
    border-color: rgba(4, 130, 78, 0.3);
}

@media (max-width: 1024px) {
    .partners-grid-section {
        padding: 4rem 3rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .partners-grid-section {
        padding: 4rem 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .partners-grid-section {
        padding: 3rem 1.5rem;
    }

    .partners-grid {
        gap: 2rem;
    }
}

/* Premium Section */
.premium-section {
    width: 100%;
    min-height: 80vh;
    padding: 8rem 4rem;
    background-color: #d3ffed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.premium-section__inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-section__carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
}

.premium-section__carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.premium-content {
    flex: 0 0 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.premium-content.animated {
    opacity: 1;
    transform: translateY(0);
}

.premium-section__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.premium-section__title {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.premium-section__title-bookito {
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.premium-section__title-premium {
    font-size: 155px;
    font-weight: 700;
    line-height: 0.9;
    margin: 0;
    padding: 0;
    margin-top: -0.1em;
}

.premium-section__subtitle {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin: 0 0 2.5rem 0;
    width: 100%;
    text-align: left;
}

.premium-section__subtitle--button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.premium-section__subtitle--button:hover {
    color: var(--green-bg);
    transform: translateX(5px);
}

.premium-section__description {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin: 0 0 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.premium-section__title-wrapper {
    width: 100%;
    margin-bottom: 0.5rem;
}

.premium-section__divider-wrapper {
    width: 100%;
    margin-top: 0.5rem;
}

.premium-section__divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin: 0 0 0 0.5rem;
    max-width: 600px;
    position: relative;
    width: 100%;
    /* Ensure it breaks onto a new line */
    flex-shrink: 0;
}

.premium-section__divider-text {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.premium-section__divider-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(4, 130, 78, 0.1);
    border-radius: 4px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.premium-section__divider-text:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.premium-section__divider-text:hover::before {
    transform: scale(1);
}

.premium-section__divider-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    flex: 1;
}

.premium-section__shape {
    display: none;
}

.premium-section__icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 200px;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

/* Premium Section Responsive */
@media (max-width: 1024px) {
    .premium-section {
        padding: 6rem 2rem;
        min-height: 70vh;
    }

    .premium-section__title-bookito {
        font-size: 60px;
    }

    .premium-section__title-premium {
        font-size: 110px;
    }

    .premium-section__divider {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .premium-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .premium-section__title-bookito {
        font-size: 45px;
    }

    .premium-section__title-premium {
        font-size: 80px;
        margin-top: 0;
    }

    .premium-section__subtitle {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .premium-section__description {
        font-size: 14px;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .premium-section__divider {
        margin-top: 2rem;
        max-width: 100%;
        gap: 0.5rem;
    }

    .premium-section__divider-image {
        max-width: 300px;
    }

    .premium-section__icon {
        height: 120px;
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .premium-section {
        padding: 3rem 1rem;
    }

    .premium-section__title-bookito {
        font-size: 32px;
    }

    .premium-section__title-premium {
        font-size: 56px;
    }

    .premium-section__subtitle {
        font-size: 12px;
    }

    .premium-section__description {
        font-size: 13px;
        margin-bottom: 1.5rem;
    }

    .premium-section__divider-text {
        font-size: 10px;
        padding: 0.4rem 0.6rem;
    }

    .premium-section__divider-image {
        max-width: 180px;
    }

    .premium-section__icon {
        height: 80px;
    }
}

/* Channel Section */
.channel-section {
    width: 100%;
    padding: 3rem 0 6rem 0;
    background-color: var(--white);
}

.channel-section__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.channel-section__carousel-wrapper {
    overflow: hidden;
    margin-bottom: 5rem;
    position: relative;
    width: 100%;
}



.channel-section__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    padding-top: 0;
    margin-top: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}



.channel-section__grid .channel-card {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 0;
}

.channel-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0;
    margin-top: 0;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
    border-radius: 8px;
    background-color: transparent;
    border: 2px solid transparent;
    position: relative;
}

.channel-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.channel-card:hover {
    transform: none;
    border-color: rgba(4, 130, 78, 0.2);
    box-shadow: 0 8px 24px rgba(4, 130, 78, 0.15);
}

.channel-card:hover .channel-card__name {
    color: var(--green-bg);
}

.channel-card__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.channel-card__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--green-bg);
    flex-shrink: 0;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.channel-card:hover .channel-card__dot {
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--green-bg);
}

.channel-card__name {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.channel-card__logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 120px;
    margin: 0.5rem 0;
    align-self: flex-start;
    margin-left: calc(10px + 0.75rem);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: grayscale(0.3);
}

.channel-card:hover .channel-card__logo {
    transform: none;
    filter: grayscale(0);
}

.channel-card__description {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.channel-card__cta {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.channel-card__cta:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.channel-section__title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.channel-section__title {
    font-family: var(--font-display);
    font-size: 90px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
    line-height: 0.9;
}

.channel-section__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem auto 0;
    max-width: 1000px;
    position: relative;
}

.channel-section__divider-text {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.channel-section__divider-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(4, 130, 78, 0.1);
    border-radius: 4px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.channel-section__divider-text:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.channel-section__divider-text:hover::before {
    transform: scale(1);
}

.channel-section__carousel-wrapper {
    overflow: hidden;
    margin-bottom: 5rem;
    position: relative;
    width: 100%;
}

.channel-section__divider-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    object-fit: contain;
    flex: 1;
}


/* Footer */
.footer {
    width: 100%;
    padding: 4.5rem 4rem 3rem;
    background-color: var(--white);
}

.footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.footer__left {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__eyebrow {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.footer__title {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0 0 4rem 0;
    line-height: 0.7;
}

.footer__title-line1 {
    font-size: 83px;
    display: block;
}

.footer__title-line2 {
    font-size: 95px;
    display: block;
    margin-top: -0.2em;
}

.footer__cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__btn {
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    font-family: var(--font-primary);
}

.footer__btn--outline {
    background-color: transparent;
    color: #646464;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 100;
    border: 1px solid #646464;
}

.footer__btn--outline:hover {
    background-color: #1a1a1a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer__btn--solid {
    background-color: #04824e;
    color: white;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 100;
    border: 1px solid #646464;
}

.footer__btn--solid:hover {
    background-color: #006633;
    border-color: #006633;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 130, 78, 0.3);
}

.footer__btn:active {
    transform: translateY(0);
}

.footer__socials {
    display: flex;
    gap: 5.2rem;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.5);
}

.footer__social {
    transition: transform 0.3s ease;
}

.footer__social:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer__social:hover .footer__social-icon {
    transform: translateY(-2px) rotate(5deg);
    filter: grayscale(0);
}

.footer__copyright {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    margin-top: 1.5rem;
}

.footer__right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer__locate-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin: 0;
}

.footer-location {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-location__city {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0;
    line-height: 0.7;
}

.footer-location__city-line1 {
    font-size: 30px;
    display: block;
}

.footer-location__city-line2 {
    font-size: 45px;
    display: block;
    margin-top: -0.2em;
}

.footer-location__description {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.footer-location__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-location__phone,
.footer-location__email {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Email styling: keep header colors, add subtle underline on hover */
.hero__contact-item[href^="mailto:"],
.simple-header__contact-item[href^="mailto:"],
.footer-location__email[href^="mailto:"] {
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* Footer emails still change color on hover */
.footer-location__email[href^="mailto:"]:hover {
    color: var(--green-bg);
}

/* Footer email underline animation */
.footer-location__email[href^="mailto:"]::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--green-bg);
    transition: width 0.3s ease;
}

.footer-location__email[href^="mailto:"]:hover::after {
    width: 100%;
}

.footer-location__link {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.footer-location__link::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.footer-location__link:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.footer-location__link:hover::after {
    transform: translateX(5px);
}

/* Toast notification */
.toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 4px;
    background-color: var(--green-bg);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(4, 130, 78, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 11000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.toast--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 5rem 3rem;
    }

    .footer__inner {
        gap: 4rem;
    }

    .footer__title {
        font-size: 3.5rem;
    }

    .footer-location__city {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 2rem;
    }

    .footer__inner {
        flex-direction: column;
        gap: 4rem;
    }

    .footer__left {
        gap: 1.5rem;
    }

    .footer__title {
        font-size: 2.5rem;
    }

    .footer__cta-row {
        flex-direction: column;
    }

    .footer__btn {
        width: 100%;
    }

    .footer__right {
        gap: 2.5rem;
    }

    .footer-location__city {
        font-size: 1.5rem;
    }

    .footer-location__contact {
        gap: 0.75rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .footer-location__phone,
    .footer-location__email,
    .footer-location__link {
        font-size: 13px;
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 1.5rem;
    }

    .footer__inner {
        gap: 3rem;
    }

    .footer__title {
        font-size: 2rem;
    }

    .footer__btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer__social {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .footer-location__city {
        font-size: 1.25rem;
    }

    .footer-location__description {
        font-size: 0.9rem;
    }

    .footer-location__phone,
    .footer-location__email,
    .footer-location__link {
        font-size: 0.9rem;
    }
}


/* Hamburger Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay__content {
    width: 280px;
    max-width: 90%;
    height: 100%;
    background-color: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.menu-overlay.active .menu-overlay__content {
    transform: translateX(0);
}

.menu-overlay__close {
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    cursor: pointer;
    padding: 0.5rem;
    font-family: var(--font-display);
    margin-bottom: 3rem;
    align-self: flex-end;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.menu-overlay__close:hover {
    opacity: 0.6;
    transform: translateY(-2px);
}

.menu-overlay__close-line {
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

.menu-overlay__close:hover .menu-overlay__close-line {
    width: 80%;
}

.menu-overlay__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-overlay__link {
    color: #1a1a1a;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.4;
    padding: 0.75rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.5s ease-out forwards;
}

.menu-overlay.active .menu-overlay__link:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-overlay.active .menu-overlay__link:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-overlay.active .menu-overlay__link:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-overlay.active .menu-overlay__link:nth-child(4) {
    animation-delay: 0.4s;
}

.menu-overlay.active .menu-overlay__link:nth-child(5) {
    animation-delay: 0.5s;
}

.menu-overlay__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.5rem;
    width: 0;
    height: 2px;
    background-color: #04824e;
    transition: width 0.3s ease;
}

.menu-overlay__icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-overlay__link span {
    flex: 1;
}

.menu-overlay__link:hover {
    color: #04824e;
    transform: translateX(5px);
}

.menu-overlay__link:hover .menu-overlay__icon {
    transform: scale(1.1);
    color: #04824e;
}

.menu-overlay__link:hover::after {
    width: 30px;
}

.menu-overlay__link--active {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--green-bg) 0%, #006633 100%);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 0 -1rem;
    box-shadow: 0 4px 12px rgba(4, 130, 78, 0.3);
    transform: translateX(5px);
}

.menu-overlay__link--active .menu-overlay__icon {
    color: var(--white) !important;
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.menu-overlay__link--active span {
    font-weight: 600;
}

.menu-overlay__link--active::after {
    display: none;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-overlay__content {
        width: 250px;
        padding: 2rem 1.5rem;
    }

    .menu-overlay__link {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .menu-overlay__content {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1.5rem;
    }

    .menu-overlay__link {
        font-size: 14px;
    }

    .menu-overlay__close {
        margin-bottom: 2rem;
    }
}

/* Simple Header */
.simple-header {
    width: 100%;
    background-color: var(--green-bg);
    padding: 1.5rem 4rem;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.simple-header__nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.simple-header__left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.simple-header__logo {
    display: flex;
    align-items: center;
}

.simple-header__logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.simple-header__logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.simple-header__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1;
    margin: 0;
}

.simple-header__contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
}

.simple-header__contact-item {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-family: var(--font-display);
    font-weight: 100;
    transition: all 0.3s ease;
    position: relative;
}

.simple-header__contact-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.simple-header__contact-item:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.simple-header__contact-item:hover::after {
    width: 100%;
}

.simple-header__menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-display);
    transition: opacity 0.3s ease;
}

.simple-header__menu:hover {
    opacity: 0.8;
}

.simple-header__menu-line {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

/* Simple Header Responsive */
@media (max-width: 1024px) {
    .simple-header__title {
        font-size: 24px;
    }

    .simple-header__contact-item {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .simple-header {
        padding: 1.5rem 2rem;
    }

    .simple-header__nav {
        flex-direction: column;
        gap: 1rem;
    }

    .simple-header__title {
        font-size: 20px;
    }

    .simple-header__contact {
        gap: 1rem;
    }

    .simple-header__contact-item {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .simple-header {
        padding: 1rem 1.5rem;
    }

    .simple-header__nav {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .simple-header__logo-icon {
        width: 40px;
        height: 40px;
    }

    .simple-header__left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .simple-header__title {
        font-size: 18px;
        order: 2;
    }

    .simple-header__contact {
        gap: 0.75rem;
    }

    .simple-header__contact-item {
        font-size: 12px;
    }

    .simple-header__menu {
        font-size: 0.65rem;
    }
}

/* Plans Logo */
.plans-logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    width: auto;
    height: auto;
}

.plans-logo__image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.plans-logo__image:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Plans Menu Button - Using same style as home page */
.plans-menu-button {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.plans-menu-button:hover {
    opacity: 0.8;
}

.plans-menu-button__line {
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

/* Plans Showcase Section */
/* Plans Page - No Scroll */
html.plans-page {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

html.plans-page body {
    overflow-y: auto;
    height: auto;
    position: relative;
    overflow-x: hidden;
}

.plans-showcase-section {
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    position: relative;
    overflow: visible;
    margin-top: 0;
    padding-top: 0;
}

.plans-showcase-section__inner {
    display: flex;
    width: 100%;
    min-height: 100vh;
    gap: 4rem;
    position: relative;
}

/* Left Side: Green Background */
.plans-showcase-section__left {
    flex: 0 0 33%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

.plans-showcase-section__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image:
        linear-gradient(90deg, rgba(4, 130, 78, 0.7) 0%, rgba(4, 130, 78, 0.65) 55%, rgba(4, 130, 78, 0.6) 100%),
        url("assets/about-us-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.plans-showcase-section__bg-image {
    display: none;
}

.plans-showcase-section__monitor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: url("assets/pricing-discover-left.png");
    background-size: 170%;
    background-position: 12% center;
    background-repeat: no-repeat;
    pointer-events: none;
    display: block;
}

.plans-showcase-section__monitor-image {
    display: none;
}

/* Right Side: Content */
.plans-showcase-section__right {
    flex: 0 0 67%;
    background-color: var(--white);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 4rem 2rem 5rem;
    padding-right: 10rem;
    position: relative;
}

.plans-showcase-section__content {
    max-width: 100%;
    width: 100%;
}

.plans-showcase-section__header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.plans-showcase-section__title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding-top: 0;
    position: relative;
    justify-content: flex-start;
}

.plans-showcase-section__title {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
}

.plans-showcase-section__title-bookito {
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    color: #1a1a1a;
    margin: 0;
}

.plans-showcase-section__title-premium {
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    color: var(--green-bg);
    margin: 0;
    margin-top: -0.1em;
}

/* Navigation */
.plans-showcase-section__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding-bottom: 2.5rem;
    width: auto;
    max-width: 320px;
    position: relative;
}

.plans-showcase-section__divider-text {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.plans-showcase-section__divider-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(4, 130, 78, 0.1);
    border-radius: 4px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.plans-showcase-section__divider-text:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.plans-showcase-section__divider-text:hover::before {
    transform: scale(1);
}

.plans-showcase-section__divider-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: max-width 0.3s ease;
}

/* Description */
.plans-showcase-section__description {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    text-align: justify;
    text-justify: inter-word;
}

/* Feature Cards Grid */
.plans-showcase-section__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
}

.plans-showcase-section__features .invconfig-card {
    width: 100%;
    max-width: none;
    height: 180px;
    /* Reduced height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plans-feature-card {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
    padding: 1rem 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.plans-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(4, 130, 78, 0.16);
    background: rgba(136, 255, 206, 0.18);
    border-color: rgba(4, 130, 78, 0.22);
}

.plans-feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(136, 255, 206, 0.35);
    color: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.plans-feature-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.plans-feature-card:hover .plans-feature-card__icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(4, 130, 78, 0.9) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(4, 130, 78, 0.25);
}

.plans-feature-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.plans-feature-card__title {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: 0;
}

.plans-feature-card__text {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Plans Section */
.plans-section {
    width: 100%;
    padding: 4rem 4rem 6rem 4rem;
    background-color: #f5f5f5;
}

.plans-section__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.plans-section__heading {
    font-family: var(--font-display);
    font-size: 90px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0 0 4rem 0;
    text-align: center;
    line-height: 0.9;
}

.plans-section__heading-line1 {
    display: block;
    line-height: 1;
}

.plans-section__heading-line2 {
    display: block;
    line-height: 1;
    margin-top: -0.1em;
}

.plans-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

/* Plan Card */
.plan-card {
    background-color: var(--white);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: visible;
}

.plan-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.plan-card--featured {
    background-color: var(--green-bg);
    border: 1px solid var(--green-bg);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(4, 130, 78, 0.25);
}

.plan-card--featured:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(4, 130, 78, 0.35);
}

.plan-card__badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background-color: var(--green-bg);
    color: var(--white);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    border: 2px solid var(--green-bg);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.plan-card__name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.plan-card--featured .plan-card__name {
    color: var(--white);
}

.plan-card--featured .plan-card__badge {
    background-color: var(--mint);
    color: var(--green-bg);
    border: 2px solid var(--green-bg);
}

.plan-card__pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin: 0.25rem 0 0.5rem 0;
}

.plan-card__price {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin: 0;
}

.plan-card--featured .plan-card__price {
    color: var(--white);
}

.plan-card__period {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-transform: none;
    margin: 0;
}

.plan-card--featured .plan-card__period {
    color: rgba(255, 255, 255, 0.85);
}

.plan-card__description {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 0.5rem;
}

.plan-card--featured .plan-card__description {
    color: rgba(255, 255, 255, 0.95);
}

.plan-card__cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.plan-card__features-section {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-card--featured .plan-card__features-section {
    border-top-color: rgba(255, 255, 255, 0.25);
}

.plan-card__features-heading {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.plan-card--featured .plan-card__features-heading {
    color: var(--white);
}

.plan-card--featured .plan-card__feature {
    color: rgba(255, 255, 255, 0.95);
}

.plan-card--featured .plan-card__feature::before {
    color: var(--mint);
}

.plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.plan-card__feature {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    position: relative;
    padding-left: 1.75rem;
    margin: 0;
}

.plan-card--featured .plan-card__feature {
    color: rgba(255, 255, 255, 0.9);
}

.plan-card__feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-bg);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

.plan-card__cta {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.plan-card__cta span {
    display: block;
}

.plan-card__cta--primary {
    background-color: var(--green-bg);
    color: var(--white);
    border-color: var(--green-bg);
}

.plan-card__cta--primary:hover {
    background-color: #006633;
    border-color: #006633;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 130, 78, 0.3);
}

.plan-card__cta--featured {
    background-color: var(--white);
    color: var(--green-bg);
    border-color: var(--white);
}

.plan-card__cta--featured:hover {
    background-color: var(--mint);
    border-color: var(--mint);
    color: var(--green-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.plan-card__cta--secondary {
    background-color: transparent;
    color: var(--green-bg);
    border: 1px solid var(--green-bg);
}

.plan-card__cta--secondary:hover {
    background-color: rgba(4, 130, 78, 0.1);
    transform: translateY(-2px);
}

.plan-card__cta--featured-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.plan-card__cta--featured-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Plans Showcase Section Responsive */
@media (max-width: 1024px) {
    .plans-showcase-section__inner {
        flex-direction: column;
    }

    .plans-showcase-section__left {
        flex: 0 0 50vh;
        min-height: 50vh;
    }

    .plans-showcase-section__right {
        flex: 0 0 auto;
        padding: 4rem 3rem;
    }

    .plans-showcase-section__divider {
        width: 45%;
        max-width: 280px;
    }

    .plans-showcase-section__title-bookito {
        font-size: 60px;
    }

    .plans-showcase-section__title-premium {
        font-size: 110px;
    }

    .plans-showcase-section__features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .plans-showcase-section__left {
        flex: 0 0 40vh;
        min-height: 40vh;
    }

    .plans-showcase-section__monitor {
        padding: 2rem;
        justify-content: center;
    }

    .plans-showcase-section__monitor-image {
        max-width: 100%;
    }

    .plans-showcase-section__right {
        padding: 4rem 2rem;
    }

    .plans-showcase-section__title-bookito {
        font-size: 50px;
    }

    .plans-showcase-section__title-premium {
        font-size: 90px;
    }

    .plans-showcase-section__description {
        font-size: 12px;
    }

    .plans-showcase-section__features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .plans-feature-card {
        padding: 1rem 1rem;
    }

    .plans-feature-card__title {
        font-size: 14px;
    }

    .plans-feature-card__text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .plans-showcase-section__left {
        flex: 0 0 35vh;
        min-height: 35vh;
    }

    .plans-showcase-section__monitor {
        padding: 1.5rem;
        justify-content: center;
    }

    .plans-showcase-section__monitor-image {
        max-width: 100%;
    }

    .plans-showcase-section__right {
        padding: 3rem 1.5rem;
    }

    .plans-showcase-section__header {
        margin-bottom: 2rem;
    }

    .plans-showcase-section__title-bookito {
        font-size: 40px;
    }

    .plans-showcase-section__title-premium {
        font-size: 70px;
    }

    .plans-showcase-section__navigation {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .plans-showcase-section__nav-link {
        font-size: 11px;
    }

    .plans-showcase-section__description {
        font-size: 11px;
        margin-bottom: 2rem;
    }

    .plans-showcase-section__features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .plans-feature-card {
        padding: 0.875rem 0.875rem;
    }

    .plans-feature-card__icon {
        width: 40px;
        height: 40px;
    }

    .plans-feature-card__title {
        font-size: 13px;
    }

    .plans-feature-card__text {
        font-size: 11px;
    }

    .plans-showcase-section__divider {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .plans-showcase-section__divider-image {
        max-width: 100px;
    }
}

/* ============================================
   FEATURES PAGE STYLES (Independent from Plans)
   ============================================ */

/* Features Page Body Styles */
html.features-page {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

html.features-page body {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    display: block;
}

/* Features Logo */
.features-logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    width: auto;
    height: auto;
}

.features-logo__image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.features-logo__image:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Features Menu Button */
.features-menu-button {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.features-menu-button:hover {
    opacity: 0.8;
}

.features-menu-button__line {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

.features-menu-button:hover .features-menu-button__line {
    width: 28px;
}

/* Features Showcase Section */
.features-showcase-section {
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    position: relative;
    overflow: visible;
    margin-top: 0;
    padding-top: 0;
    opacity: 1 !important;
}

.features-showcase-section__inner {
    display: flex;
    width: 100%;
    min-height: 100vh;
    gap: 4rem;
    position: relative;
}

/* Left Side: Green Background */
.features-showcase-section__left {
    flex: 0 0 33%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

.features-showcase-section__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--green-bg);
    background-image: url("assets/bookito Features bg.png");
    background-size: 200%;
    background-position: 45% center;
}

.features-showcase-section__bg-image {
    display: none;
}

.features-showcase-section__monitor {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem 0;
    padding-right: 0;
    margin-right: -2rem;
}

.features-showcase-section__monitor-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    max-width: 100%;
    object-fit: contain;
    object-position: right center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transform: scale(2) translateX(8.93rem);
    transform-origin: right center;
    margin-right: 0;
    display: block;
}

/* Right Side: Content */
.features-showcase-section__right {
    flex: 0 0 67%;
    background-color: var(--white);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 4rem 2rem 5rem;
    padding-right: 10rem;
    position: relative;
    overflow: visible;
}

.features-showcase-section__content {
    max-width: 100%;
    width: 100%;
}

.features-showcase-section__header {
    margin-bottom: 1rem;
}

.features-showcase-section__title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding-top: 0;
    position: relative;
    justify-content: flex-start;
}

.features-showcase-section__title {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
}

.features-showcase-section__title-bookito {
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    color: #1a1a1a;
    margin: 0;
}

.features-showcase-section__title-features {
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    color: var(--green-bg);
    margin: 0;
    margin-top: -0.1em;
}

/* Navigation */
.features-showcase-section__divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0 0;
    max-width: 290px;
    width: auto;
    flex-shrink: 0;
    position: relative;
}

.features-showcase-section__divider-text {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.features-showcase-section__divider-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(4, 130, 78, 0.1);
    border-radius: 4px;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.features-showcase-section__divider-text:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.features-showcase-section__divider-text:hover::before {
    transform: scale(1);
}

.features-showcase-section__divider-image {
    max-width: 550px;
    width: 100%;
    height: auto;
    object-fit: contain;
    flex: 1;
}

/* Description */
.features-showcase-section__description {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    text-align: justify;
    text-justify: inter-word;
}

/* Feature Cards Grid */
.plans-showcase-section__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: stretch;
    margin-bottom: 1rem;
    position: relative;
    width: 100%;
}

.plans-showcase-section__features .invconfig-card {
    width: 100%;
    height: auto;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Feature Cards Grid */
.features-showcase-section__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: stretch;
    margin-bottom: 1rem;
    position: relative;
    width: 100%;
}

.features-showcase-section__features .invconfig-card {
    width: 100%;
    height: auto;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.features-feature-card {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
    padding: 1rem 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.features-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(4, 130, 78, 0.16);
}

/* Features Page Responsive Styles */
@media (max-width: 1024px) {
    .features-showcase-section__inner {
        flex-direction: column;
    }

    .features-showcase-section__left {
        flex: 0 0 50vh;
        min-height: 50vh;
    }

    .features-showcase-section__right {
        flex: 0 0 auto;
        padding: 4rem 3rem;
    }

    .features-showcase-section__title-bookito {
        font-size: 60px;
    }

    .features-showcase-section__title-features {
        font-size: 110px;
    }

    .features-showcase-section__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .features-showcase-section__features .invconfig-card {
        max-width: 100%;
        height: auto;
        min-height: 170px;
    }
}

@media (max-width: 768px) {
    .features-showcase-section__left {
        flex: 0 0 40vh;
        min-height: 40vh;
    }

    .features-showcase-section__monitor {
        padding: 2rem;
        justify-content: center;
    }

    .features-showcase-section__monitor-image {
        max-width: 100%;
    }

    .features-showcase-section__right {
        padding: 4rem 2rem;
    }

    .features-showcase-section__title-bookito {
        font-size: 50px;
    }

    .features-showcase-section__title-features {
        font-size: 90px;
    }

    .features-showcase-section__description {
        font-size: 12px;
    }

    .features-showcase-section__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .features-showcase-section__features .invconfig-card {
        max-width: 100%;
        height: auto;
        min-height: 160px;
    }

    .features-feature-card {
        padding: 1rem 1rem;
    }

    .features-feature-card__title {
        font-size: 14px;
    }

    .features-feature-card__text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .features-showcase-section__left {
        flex: 0 0 35vh;
        min-height: 35vh;
    }

    .features-showcase-section__monitor {
        padding: 1.5rem;
        justify-content: center;
    }

    .features-showcase-section__monitor-image {
        max-width: 100%;
    }

    .features-showcase-section__right {
        padding: 3rem 1.5rem;
    }

    .features-showcase-section__header {
        margin-bottom: 2rem;
    }

    .features-showcase-section__title-bookito {
        font-size: 40px;
    }

    .features-showcase-section__title-features {
        font-size: 70px;
    }

    .features-showcase-section__divider {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .features-showcase-section__divider-image {
        max-width: 120px;
        flex: 0 1 auto;
    }

    .features-showcase-section__nav-link {
        font-size: 11px;
    }

    .features-showcase-section__description {
        font-size: 11px;
        margin-bottom: 2rem;
    }

    .features-showcase-section__features {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .features-showcase-section__features .invconfig-card {
        max-width: 100% !important;
        height: auto !important;
        min-height: 150px;
    }

    .features-feature-card {
        padding: 0.875rem 0.875rem;
    }

    .features-feature-card__icon {
        width: 40px;
        height: 40px;
    }

    .features-feature-card__title {
        font-size: 13px;
    }

    .features-feature-card__text {
        font-size: 11px;
    }
}

/* ============================================
   PARTNERS PAGE STYLES (Independent from Features/Plans)
   ============================================ */

/* Partners Page Body Styles */
html.partners-page {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

html.partners-page body {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    position: relative;
}

/* Partners Logo */
.partners-logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    width: auto;
    height: auto;
}

.partners-logo__image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partners-logo__image:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Partners Menu Button */
.partners-menu-button {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.partners-menu-button:hover {
    opacity: 0.8;
}

.partners-menu-button__line {
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

/* Partners Showcase Section */
.partners-showcase-section {
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    position: relative;
    overflow: visible;
    margin-top: 0;
    padding-top: 0;
}

.partners-showcase-section__inner {
    display: flex;
    width: 100%;
    min-height: 100vh;
    gap: 4rem;
    position: relative;
}

/* Left Side: Green Background */
.partners-showcase-section__left {
    flex: 0 0 33%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

.partners-showcase-section__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image:
        linear-gradient(90deg, rgba(4, 130, 78, 0.7) 0%, rgba(4, 130, 78, 0.65) 55%, rgba(4, 130, 78, 0.6) 100%),
        url("assets/about-us-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.partners-showcase-section__monitor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: url("assets/Partners.png");
    background-size: 170%;
    background-position: 25% center;
    background-repeat: no-repeat;
    pointer-events: none;
    display: block;
}

.partners-showcase-section__monitor-image {
    display: none;
}

/* Right Side: Content */
.partners-showcase-section__right {
    flex: 0 0 67%;
    background-color: var(--white);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3rem 4rem 6rem 5rem;
    padding-right: 10rem;
    /* Using percentage for better responsiveness */
    position: relative;
}

.partners-showcase-section__content {
    max-width: 100%;
    width: 100%;
}

.partners-showcase-section__header {
    margin-bottom: 3rem;
}

.partners-showcase-section__title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding-top: 0;
    position: relative;
    justify-content: flex-start;
}

.partners-showcase-section__title {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
}

.partners-showcase-section__title-bookito {
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    color: #1a1a1a;
    margin: 0;
}

.partners-showcase-section__title-partners {
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    color: var(--green-bg);
    margin: 0;
    margin-top: -0.1em;
    /* Removed padding-right here as it was unused and confusing */
}

/* Navigation */
.partners-showcase-section__divider {
    display: none;
    /* Hidden as per request */
}

/* Description */
.partners-showcase-section__description {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin: 0 0 3rem 0;
    text-align: justify;
    text-justify: inter-word;
    max-width: 800px;
}

/* Partner Cards Grid - Now Marquee */
.partners-showcase-section__partners {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.partners-marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    /* Animation duration will be set by JS for constant speed, fallback provided */
    animation-name: marquee;
    animation-duration: 60s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-showcase-section__partner-wrapper {
    flex: 0 0 250px;
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partners-showcase-section__partner-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    min-height: 250px;
    height: 250px;
    position: relative;
}

.partners-showcase-section__partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(4, 130, 78, 0.16);
    border-color: rgba(4, 130, 78, 0.22);
    background: rgba(136, 255, 206, 0.18);
}

.partners-showcase-section__partner-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.2);
    transition: filter 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.partners-showcase-section__partner-card:hover .partners-showcase-section__partner-logo {
    filter: grayscale(0);
    transform: scale(1.05);
}

.partners-showcase-section__partner-name {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-align: center;
}

.partners-showcase-section__partner-wrapper .partners-showcase-section__partner-name {
    margin-top: 0.75rem;
}

.partners-showcase-section__partner-card:hover .partners-showcase-section__partner-name {
    color: var(--green-bg);
}

/* Partners Page Responsive Styles */
@media (max-width: 1024px) {
    .partners-showcase-section__inner {
        flex-direction: column;
    }

    .partners-showcase-section__left {
        flex: 0 0 50vh;
        min-height: 50vh;
    }

    .partners-showcase-section__monitor-image {
        display: none;
    }

    .partners-showcase-section__monitor {
        display: none;
    }

    .partners-showcase-section__right {
        flex: 0 0 auto;
        padding: 4rem 3rem;
    }

    .partners-showcase-section__title-bookito {
        font-size: 60px;
    }

    .partners-showcase-section__title-partners {
        font-size: 110px;
    }

    .partners-showcase-section__partners {
        display: flex;
        gap: 0;
        overflow: hidden;
    }

    .partners-showcase-section__partner-card {
        padding: 0;
        min-height: 150px;
        height: 150px;
    }

    .partners-showcase-section__partner-logo {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
}

@media (max-width: 768px) {
    .partners-showcase-section__left {
        flex: 0 0 40vh;
        min-height: 40vh;
    }

    .partners-showcase-section__monitor {
        padding: 2rem;
        justify-content: center;
    }

    .partners-showcase-section__monitor-image {
        display: none;
    }

    .partners-showcase-section__monitor {
        display: none;
    }

    .partners-showcase-section__right {
        padding: 4rem 2rem;
    }

    .partners-showcase-section__title-bookito {
        font-size: 50px;
    }

    .partners-showcase-section__title-partners {
        font-size: 90px;
    }

    .partners-showcase-section__description {
        font-size: 12px;
    }

    .partners-showcase-section__partners {
        display: flex;
        gap: 0;
        overflow: hidden;
    }

    .partners-showcase-section__partner-card {
        padding: 0;
        min-height: 140px;
        height: 140px;
    }

    .partners-showcase-section__partner-logo {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
}

@media (max-width: 480px) {
    .partners-showcase-section__left {
        flex: 0 0 35vh;
        min-height: 35vh;
    }

    .partners-showcase-section__monitor {
        padding: 1.5rem;
        justify-content: center;
    }

    .partners-showcase-section__monitor-image {
        display: none;
    }

    .partners-showcase-section__monitor {
        display: none;
    }

    .partners-showcase-section__right {
        padding: 3rem 1.5rem;
    }

    .partners-showcase-section__header {
        margin-bottom: 2rem;
    }

    .partners-showcase-section__title-bookito {
        font-size: 40px;
    }

    .partners-showcase-section__title-partners {
        font-size: 70px;
    }

    .partners-showcase-section__description {
        font-size: 11px;
        margin-bottom: 2rem;
    }

    .partners-showcase-section__partners {
        display: flex;
        gap: 0;
        overflow: hidden;
    }

    .partners-showcase-section__partner-card {
        padding: 0;
        min-height: 130px;
        height: 130px;
    }

    .partners-showcase-section__partner-logo {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .partners-showcase-section__divider {
        margin-top: 3rem;
        margin-left: 0;
    }
}

/* Plans Section Responsive */
@media (max-width: 1024px) {
    .plans-hero-section {
        padding: 5rem 3rem;
    }

    .plans-hero-section__heading {
        font-size: 4rem;
    }

    .plans-section {
        padding: 4rem 3rem;
    }

    .plans-section__heading {
        font-size: 4rem;
    }

    .plans-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .plan-card--featured {
        transform: scale(1);
    }

    .plan-card--featured:hover {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .plans-hero-section {
        padding: 4rem 2rem;
    }

    .plans-hero-section__heading {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .plans-hero-section__text {
        font-size: 15px;
    }

    .plans-section {
        padding: 4rem 2rem;
    }

    .plans-section__heading {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .plans-section__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .plan-card {
        padding: 2.5rem 2rem;
    }

    .plan-card__name {
        font-size: 22px;
    }

    .plan-card__price {
        font-size: 36px;
    }

    .plan-card__description {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .plans-hero-section {
        padding: 3rem 1.5rem;
    }

    .plans-hero-section__heading {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .plans-hero-section__text {
        font-size: 14px;
    }

    .plans-section {
        padding: 3rem 1.5rem;
    }

    .plans-section__heading {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .plan-card__name {
        font-size: 20px;
    }

    .plan-card__price {
        font-size: 32px;
    }

    .plan-card__period {
        font-size: 12px;
    }

    .plan-card__description {
        font-size: 14px;
        min-height: auto;
    }

    .plan-card__feature {
        font-size: 13px;
        padding-left: 1.75rem;
    }

    .plan-card__cta {
        padding: 1rem 1.5rem;
        font-size: 13px;
    }
}

/* Plan Modal */
.plan-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.plan-modal.active {
    opacity: 1;
    visibility: visible;
}

.plan-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.plan-modal__content {
    position: relative;
    background-color: var(--white);
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    padding: 3rem;
}

.plan-modal.active .plan-modal__content {
    transform: scale(1) translateY(0);
}

.plan-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    cursor: pointer;
    padding: 0.5rem;
    font-family: var(--font-display);
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.plan-modal__close:hover {
    opacity: 0.6;
    transform: translateY(-2px);
}

.plan-modal__close-line {
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

.plan-modal__close:hover .plan-modal__close-line {
    width: 80%;
}

.plan-modal__body {
    padding-top: 1rem;
}

.plan-modal__body .plan-card {
    transform: none;
    opacity: 1;
    padding: 2rem;
    margin: 0;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-modal__body .plan-card:hover {
    transform: none;
    box-shadow: none;
}

.plan-modal__body .plan-card--featured {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: none;
    box-shadow: none;
}

.plan-modal__body .plan-card--featured .plan-card__name,
.plan-modal__body .plan-card--featured .plan-card__price,
.plan-modal__body .plan-card--featured .plan-card__period,
.plan-modal__body .plan-card--featured .plan-card__description,
.plan-modal__body .plan-card--featured .plan-card__feature,
.plan-modal__body .plan-card--featured .plan-card__features-heading {
    color: #1a1a1a;
}

.plan-modal__body .plan-card--featured .plan-card__period {
    color: #666;
}

.plan-modal__body .plan-card--featured .plan-card__features-section {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.plan-modal__body .plan-card--featured .plan-card__feature::before {
    color: var(--green-bg);
}

.plan-modal__body .plan-card__cta-group {
    flex-direction: row;
    gap: 1rem;
}

.plan-modal__body .plan-card__cta {
    flex: 1;
}

/* Plan Modal Responsive */
@media (max-width: 768px) {
    .plan-modal__content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-height: 95vh;
    }

    .plan-modal__close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .plan-modal__content {
        padding: 1.5rem 1rem;
    }

    .plan-modal__body .plan-card {
        padding: 1.5rem;
    }
}

/* Features Hero Section */
.features-hero-section {
    width: 100%;
    padding: 6rem 4rem 4rem;
    background: linear-gradient(135deg,
            rgba(136, 255, 206, 0.18) 0%,
            #f5fffb 40%,
            rgba(4, 130, 78, 0.06) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.features-hero-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.09) 0%, transparent 55%);
    pointer-events: none;
}

.features-hero-section__inner {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.features-hero-section__title {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.02em;
    color: var(--green-bg);
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.features-hero-section__tagline {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Navigation */
.features-nav {
    position: relative;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 0;
    margin-bottom: 0.25rem;
}

.features-nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features-nav__inner::-webkit-scrollbar {
    display: none;
}

.features-nav__link {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.features-nav__link:hover {
    color: var(--green-bg);
    background: rgba(4, 130, 78, 0.08);
}

.features-nav__link.active {
    color: var(--green-bg);
    background: rgba(4, 130, 78, 0.12);
}

/* Features Main Container */
.features-main {
    width: 100%;
    position: relative;
}

/* Features page: uppercase headings */
.features-main h2,
.features-main h3 {
    text-transform: uppercase;
}

/* Feature Group */
.feature-group {
    width: 100%;
    padding: 1.25rem 4rem;
    background-color: var(--white);
    position: relative;
    scroll-margin-top: 80px;
}

.feature-group--alt {
    background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
}

.feature-group--highlight {
    background: linear-gradient(135deg, #f0f9f5 0%, rgba(136, 255, 206, 0.15) 50%, #f0f9f5 100%);
    position: relative;
    overflow: hidden;
}

.feature-group--highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-bg), var(--mint), var(--green-bg), transparent);
}

.feature-group--highlight::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 130, 78, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-group__header {
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    text-align: left;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
}

.feature-group__label {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green-bg);
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(4, 130, 78, 0.08);
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.feature-group__title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    position: relative;
    display: block;
}

.feature-group__description {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    margin-top: 1rem;
}

/* Dashboard Showcase (Features Page) */
.feature-group--dashboard {
    padding: 2.25rem 4rem 2.5rem;
    background-color: var(--white);
    background-image: url("assets/features1.png");
    background-repeat: no-repeat;
    background-position: center 62%;
    background-size: min(980px, 86vw) auto;
    overflow: hidden;
}

.dashboard-showcase__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.dashboard-showcase__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
    line-height: 0.95;
}

.dashboard-showcase__subtitle {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    color: #666;
    margin-top: 0.9rem;
    max-width: 520px;
}

.dashboard-showcase__stage {
    position: relative;
    margin-top: 3rem;
    min-height: 720px;
}

.dashboard-showcase__mock {
    display: none;
}

.dashboard-showcase__card {
    position: absolute;
    width: 320px;
    max-width: 38vw;
    padding: 1.25rem 1.25rem 1.15rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dashboard-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(4, 130, 78, 0.18);
    background: rgba(136, 255, 206, 0.18);
    border-color: rgba(4, 130, 78, 0.22);
}

.dashboard-showcase__card:hover .dashboard-showcase__card-icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(4, 130, 78, 0.9) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(4, 130, 78, 0.25);
}

.dashboard-showcase__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(136, 255, 206, 0.35);
    color: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.dashboard-showcase__card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.dashboard-showcase__card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.45rem 0;
    line-height: 1.25;
}

.dashboard-showcase__card-text {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.55;
}

/* Positions tuned to match provided screenshot composition */
.dashboard-showcase__card--revenue {
    left: 2.5%;
    top: -10px;
}

.dashboard-showcase__card--alerts {
    right: 10%;
    top: -80px;
}

.dashboard-showcase__card--guest {
    left: -2%;
    top: 245px;
}

.dashboard-showcase__card--live {
    right: -2%;
    top: 235px;
}

@media (max-width: 1024px) {
    .feature-group--dashboard {
        padding: 2rem 3rem 2.25rem;
        background-position: center 68%;
        background-size: min(860px, 92vw) auto;
    }

    .dashboard-showcase__title {
        font-size: 78px;
    }

    .dashboard-showcase__stage {
        min-height: 680px;
    }

    .dashboard-showcase__card {
        width: 300px;
    }

    .dashboard-showcase__card--revenue {
        left: 0.75%;
        top: 0px;
    }

    .dashboard-showcase__card--alerts {
        right: 7%;
        top: -60px;
    }

    .dashboard-showcase__card--guest {
        left: -1.5%;
        top: 242px;
    }

    .dashboard-showcase__card--live {
        right: -1.5%;
        top: 232px;
    }
}

@media (max-width: 768px) {
    .feature-group--dashboard {
        padding: 3.5rem 2rem 4rem;
        background-image: none;
    }

    .dashboard-showcase__title {
        font-size: 56px;
    }

    .dashboard-showcase__stage {
        min-height: auto;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dashboard-showcase__mock {
        display: block;
        width: 100%;
        max-width: 720px;
        margin: 0 auto 0.75rem;
        height: auto;
        object-fit: contain;
    }

    .dashboard-showcase__card {
        position: static;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .feature-group--dashboard {
        padding: 3rem 1.5rem 3.5rem;
    }

    .dashboard-showcase__title {
        font-size: 46px;
    }
}

/* Store Management Showcase (Features Page) */
.feature-group--store {
    padding: 2.25rem 4rem 2.5rem;
    background-color: var(--white);
    background-image: url("assets/features4.png");
    background-repeat: no-repeat;
    background-position: center 84%;
    background-size: min(900px, 82vw) auto;
    overflow: hidden;
}

.store-showcase__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.store-showcase__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
    line-height: 0.9;
    max-width: 620px;
}

.store-showcase__stage {
    position: relative;
    margin-top: 0;
    min-height: 780px;
}

.store-showcase__mock {
    display: none;
}

.store-showcase__card {
    position: absolute;
    width: 320px;
    max-width: 44vw;
    padding: 1.25rem 1.25rem 1.15rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(4, 130, 78, 0.18);
    background: rgba(136, 255, 206, 0.18);
    border-color: rgba(4, 130, 78, 0.22);
}

.store-showcase__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(136, 255, 206, 0.35);
    color: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.store-showcase__card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.store-showcase__card:hover .store-showcase__card-icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(4, 130, 78, 0.9) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(4, 130, 78, 0.25);
}

.store-showcase__card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
}

.store-showcase__card-text {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.55;
}

.store-showcase__card-list {
    list-style: none;
    padding: 0;
    margin: 0.2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.store-showcase__card-list li {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
    position: relative;
    padding-left: 1.15rem;
}

.store-showcase__card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-bg);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

/* Positions tuned to match provided screenshot composition */
.store-showcase__card--inventory {
    left: 1.5%;
    top: 110px;
}

.store-showcase__card--purchase {
    left: 38%;
    top: 25px;
    width: 300px;
}

.store-showcase__card--tracking {
    right: 1%;
    top: 110px;
}

.store-showcase__card--category {
    left: 4.5%;
    top: 380px;
    width: 300px;
}

.store-showcase__card--finance {
    right: 7.5%;
    top: 320px;
    width: 300px;
}

@media (max-width: 1024px) {
    .feature-group--store {
        padding: 2rem 3rem 2.25rem;
        background-position: center 86%;
        background-size: min(820px, 88vw) auto;
    }

    .store-showcase__title {
        font-size: 78px;
        max-width: 560px;
    }

    .store-showcase__stage {
        min-height: 740px;
    }

    .store-showcase__card {
        width: 300px;
    }

    .store-showcase__card--inventory {
        left: 1.25%;
        top: 150px;
    }

    .store-showcase__card--purchase {
        left: 34%;
        top: 20px;
        width: 340px;
    }

    .store-showcase__card--tracking {
        right: -1.25%;
        top: 200px;
    }

    .store-showcase__card--category {
        left: -1.25%;
        top: 485px;
        width: 330px;
    }

    .store-showcase__card--finance {
        right: -1.25%;
        top: 495px;
        width: 330px;
    }
}

@media (max-width: 768px) {
    .feature-group--store {
        padding: 3.5rem 2rem 4rem;
        background-image: none;
    }

    .store-showcase__title {
        font-size: 56px;
        max-width: none;
    }

    .store-showcase__stage {
        min-height: auto;
        margin-top: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .store-showcase__mock {
        display: block;
        width: 100%;
        max-width: 860px;
        margin: 0 auto 0.75rem;
        height: auto;
        object-fit: contain;
    }

    .store-showcase__card {
        position: static;
        width: 100%;
        max-width: 860px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .feature-group--store {
        padding: 3rem 1.5rem 3.5rem;
    }

    .store-showcase__title {
        font-size: 46px;
    }
}

/* Inventory & Configuration Showcase (Features Page) */
.feature-group--invconfig {
    padding: 0 4rem 2.25rem;
    background-color: var(--white);
    background-image: url("assets/Inventory-&-management.png");
    background-repeat: no-repeat;
    background-position: right 0 top 45px;
    background-size: min(880px, 58vw) auto;
    overflow: hidden;
    min-height: 920px;
}

.invconfig-showcase__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.invconfig-showcase__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
    line-height: 0.92;
    max-width: 1200px;
}

.invconfig-showcase__title-line {
    display: block;
    white-space: nowrap;
}

.invconfig-showcase__stage {
    margin-top: 0;
    max-width: 980px;
}

.invconfig-showcase__grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 840px;
}

.invconfig-showcase__mock {
    display: none;
}

.invconfig-card {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
    padding: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.invconfig-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(4, 130, 78, 0.16);
    background: rgba(136, 255, 206, 0.18);
    border-color: rgba(4, 130, 78, 0.22);
}

.invconfig-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    border-radius: 12px;
    background: rgba(136, 255, 206, 0.35);
    color: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.invconfig-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.invconfig-card:hover .invconfig-card__icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(4, 130, 78, 0.9) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(4, 130, 78, 0.25);
}

.invconfig-card__title {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
}

.invconfig-card__text {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .feature-group--invconfig {
        padding: 0 3rem 2.25rem;
        background-position: right 0 top 150px;
        background-size: min(800px, 56vw) auto;
        min-height: 860px;
    }

    .invconfig-showcase__title {
        font-size: 78px;
        max-width: 900px;
    }

    .invconfig-showcase__grid {
        max-width: 780px;
        gap: 0.9rem;
    }
}

@media (max-width: 768px) {
    .feature-group--invconfig {
        padding: 0 2rem 2.25rem;
        background-image: none;
    }

    .invconfig-showcase__title {
        font-size: 56px;
    }

    .invconfig-showcase__stage {
        margin-top: 1rem;
    }

    .invconfig-showcase__mock {
        display: block;
        width: 100%;
        max-width: 860px;
        margin: 0.75rem auto 0;
        height: auto;
        object-fit: contain;
    }

    .invconfig-showcase__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .feature-group--invconfig {
        padding: 1.75rem 1.5rem 2rem;
    }

    .invconfig-showcase__title {
        font-size: 46px;
    }
}

/* Booking Management Showcase (Features Page) */
.feature-group--bookings {
    padding: 2.25rem 4rem 2.5rem;
    background-color: var(--white);
    background-image: url("assets/features3.png");
    background-repeat: no-repeat;
    background-position: center 66%;
    background-size: min(980px, 86vw) auto;
    overflow: hidden;
}

.bookings-showcase__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.bookings-showcase__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
    line-height: 0.9;
    max-width: 620px;
}

.bookings-showcase__stage {
    position: relative;
    margin-top: 2.75rem;
    min-height: 760px;
}

.bookings-showcase__mock {
    display: none;
}

.bookings-showcase__card {
    position: absolute;
    width: 320px;
    max-width: 42vw;
    padding: 1.25rem 1.25rem 1.15rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bookings-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(4, 130, 78, 0.18);
    background: rgba(136, 255, 206, 0.18);
    border-color: rgba(4, 130, 78, 0.22);
}

.bookings-showcase__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(136, 255, 206, 0.35);
    color: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.bookings-showcase__card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.bookings-showcase__card:hover .bookings-showcase__card-icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(4, 130, 78, 0.9) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(4, 130, 78, 0.25);
}

.bookings-showcase__card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.6rem 0;
    line-height: 1.25;
}

.bookings-showcase__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bookings-showcase__card-list li {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
    position: relative;
    padding-left: 1.15rem;
}

.bookings-showcase__card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-bg);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

/* Positions tuned to match provided screenshot composition */
.bookings-showcase__card--new {
    left: 8%;
    top: 150px;
}

.bookings-showcase__card--guest {
    right: 2%;
    top: 285px;
}

.bookings-showcase__card--new {
    width: 290px;
    top: 45px;
}

.bookings-showcase__card--guest {
    width: 300px;
}

@media (max-width: 1024px) {
    .feature-group--bookings {
        padding: 2rem 3rem 2.25rem;
        background-position: center 70%;
        background-size: min(880px, 92vw) auto;
    }

    .bookings-showcase__title {
        font-size: 78px;
        max-width: 560px;
    }

    .bookings-showcase__stage {
        min-height: 720px;
    }

    .bookings-showcase__card {
        width: 300px;
    }

    .bookings-showcase__card--new {
        left: 6%;
        top: 140px;
    }

    .bookings-showcase__card--guest {
        right: 1.5%;
        top: 265px;
    }

    .bookings-showcase__card--new {
        width: 270px;
        top: 35px;
    }

    .bookings-showcase__card--guest {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .feature-group--bookings {
        padding: 3.5rem 2rem 4rem;
        background-image: none;
    }

    .bookings-showcase__title {
        font-size: 56px;
        max-width: none;
    }

    .bookings-showcase__stage {
        min-height: auto;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bookings-showcase__mock {
        display: block;
        width: 100%;
        max-width: 820px;
        margin: 0 auto 0.75rem;
        height: auto;
        object-fit: contain;
    }

    .bookings-showcase__card {
        position: static;
        width: 100%;
        max-width: 820px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .feature-group--bookings {
        padding: 3rem 1.5rem 3.5rem;
    }

    .bookings-showcase__title {
        font-size: 46px;
    }
}

/* Channel Manager Showcase (Features Page) */
.feature-group--channel-showcase {
    padding: 2.25rem 4rem 2.5rem;
    background-color: var(--white);
    background-image: url("assets/features5.png");
    background-repeat: no-repeat;
    background-position: left 0 top 100px;
    background-size: min(760px, 54vw) auto;
    overflow: hidden;
}

.channel-showcase__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.channel-showcase__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
    line-height: 0.92;
    max-width: 520px;
}

.channel-showcase__stage {
    margin-top: 3.5rem;
    min-height: 700px;
    display: flex;
    justify-content: flex-end;
}

.channel-showcase__mock {
    display: none;
}

.channel-showcase__cards {
    width: min(660px, 48vw);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-content: start;
}

.channel-showcase__card {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
    padding: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.channel-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(4, 130, 78, 0.16);
    background: rgba(136, 255, 206, 0.18);
    border-color: rgba(4, 130, 78, 0.22);
}

.channel-showcase__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(136, 255, 206, 0.35);
    color: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.channel-showcase__card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.channel-showcase__card:hover .channel-showcase__card-icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(4, 130, 78, 0.9) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(4, 130, 78, 0.25);
}

.channel-showcase__card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
}

.channel-showcase__card-text {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .feature-group--channel-showcase {
        padding: 2rem 3rem 2.25rem;
        background-position: left 0 top 35px;
        background-size: min(680px, 52vw) auto;
    }

    .channel-showcase__title {
        font-size: 78px;
    }

    .channel-showcase__stage {
        min-height: 640px;
    }

    .channel-showcase__cards {
        width: min(620px, 52vw);
    }
}

@media (max-width: 768px) {
    .feature-group--channel-showcase {
        padding: 2rem 2rem 2.25rem;
        background-image: none;
    }

    .channel-showcase__title {
        font-size: 56px;
        max-width: none;
    }

    .channel-showcase__stage {
        min-height: auto;
        margin-top: 1.25rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .channel-showcase__mock {
        display: block;
        width: 100%;
        max-width: 860px;
        margin: 0.75rem auto 0;
        height: auto;
        object-fit: contain;
    }

    .channel-showcase__cards {
        width: 100%;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .feature-group--channel-showcase {
        padding: 1.75rem 1.5rem 2rem;
    }

    .channel-showcase__title {
        font-size: 46px;
    }
}

/* Accounts & Finance (Features Page) */
.feature-group--finance-showcase {
    padding-top: 1.25rem;
}

.finance-showcase__inner {
    max-width: 1400px;
    margin: 0 auto 1.25rem;
}

.finance-showcase__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
    line-height: 0.92;
}

@media (max-width: 1024px) {
    .finance-showcase__title {
        font-size: 78px;
    }
}

@media (max-width: 768px) {
    .finance-showcase__title {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .finance-showcase__title {
        font-size: 46px;
    }
}

/* Travel Agent Management Showcase (Features Page) */
.feature-group--travel {
    padding: 2.25rem 4rem 2.5rem;
    background-color: var(--white);
    background-image: url("assets/Travel-Management.png");
    background-repeat: no-repeat;
    background-position: right 0 top 160px;
    background-size: min(880px, 62vw) auto;
    overflow: hidden;
}

.travel-showcase__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.travel-showcase__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
    line-height: 0.92;
    max-width: 720px;
}

.travel-showcase__stage {
    margin-top: 2.5rem;
    min-height: 680px;
}

.travel-showcase__mock {
    display: none;
}

.travel-showcase__cards {
    width: min(620px, 44vw);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-content: start;
}

.travel-showcase__card {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
    padding: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.travel-showcase__card--rates {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(380px, 34vw);
}

.travel-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(4, 130, 78, 0.16);
    background: rgba(136, 255, 206, 0.18);
    border-color: rgba(4, 130, 78, 0.22);
}

.travel-showcase__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(136, 255, 206, 0.35);
    color: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.travel-showcase__card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.travel-showcase__card:hover .travel-showcase__card-icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(4, 130, 78, 0.9) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(4, 130, 78, 0.25);
}

.travel-showcase__card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
}

.travel-showcase__card-text {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .feature-group--travel {
        padding: 2rem 3rem 2.25rem;
        background-position: right 0 top 150px;
        background-size: min(780px, 60vw) auto;
    }

    .travel-showcase__title {
        font-size: 78px;
    }

    .travel-showcase__stage {
        min-height: 620px;
        margin-top: 2.25rem;
    }

    .travel-showcase__cards {
        width: min(580px, 48vw);
    }
}

@media (max-width: 768px) {
    .feature-group--travel {
        padding: 2rem 2rem 2.25rem;
        background-image: none;
    }

    .travel-showcase__title {
        font-size: 56px;
        max-width: none;
    }

    .travel-showcase__stage {
        min-height: auto;
        margin-top: 1.25rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .travel-showcase__mock {
        display: block;
        width: 100%;
        max-width: 860px;
        margin: 0.75rem auto 0;
        height: auto;
        object-fit: contain;
    }

    .travel-showcase__cards {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .travel-showcase__card--rates {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .feature-group--travel {
        padding: 1.75rem 1.5rem 2rem;
    }

    .travel-showcase__title {
        font-size: 46px;
    }
}

/* Daily Operations Showcase (Features Page) */
.feature-group--operations {
    padding: 2.25rem 4rem 2.5rem;
    background-color: var(--white);
    background-image: url("assets/features2.png");
    background-repeat: no-repeat;
    background-position: center 64%;
    background-size: min(880px, 82vw) auto;
    overflow: hidden;
}

.operations-showcase__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.operations-showcase__title {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #101010;
    margin: 0;
    line-height: 0.9;
    max-width: 520px;
}

.operations-showcase__stage {
    position: relative;
    margin-top: 2.75rem;
    min-height: 760px;
}

.operations-showcase__mock {
    display: none;
}

.operations-showcase__card {
    position: absolute;
    width: 320px;
    max-width: 42vw;
    padding: 1.25rem 1.25rem 1.15rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.operations-showcase__card--group {
    width: 240px;
}

.operations-showcase__card--reservation {
    width: 295px;
}

.operations-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(4, 130, 78, 0.18);
    background: rgba(136, 255, 206, 0.18);
    border-color: rgba(4, 130, 78, 0.22);
}

.operations-showcase__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(136, 255, 206, 0.35);
    color: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.operations-showcase__card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.operations-showcase__card:hover .operations-showcase__card-icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(4, 130, 78, 0.9) 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(4, 130, 78, 0.25);
}

.operations-showcase__card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.6rem 0;
    line-height: 1.25;
}

.operations-showcase__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.operations-showcase__card-list li {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
    position: relative;
    padding-left: 1.15rem;
}

.operations-showcase__card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-bg);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

/* Positions tuned to match provided screenshot composition */
.operations-showcase__card--reservation {
    left: 12.5%;
    top: 20px;
}

.operations-showcase__card--group {
    right: 1.5%;
    top: -45px;
}

.operations-showcase__card--hold {
    left: -3.25%;
    top: 340px;
    width: 270px;
}

.operations-showcase__card--front {
    right: 1%;
    top: 295px;
    width: 300px;
}

@media (max-width: 1024px) {
    .feature-group--operations {
        padding: 2rem 3rem 2.25rem;
        background-position: center 70%;
        background-size: min(820px, 90vw) auto;
    }

    .operations-showcase__title {
        font-size: 78px;
    }

    .operations-showcase__stage {
        min-height: 720px;
    }

    .operations-showcase__card {
        width: 300px;
    }

    .operations-showcase__card--reservation {
        left: 10%;
        top: 15px;
    }

    .operations-showcase__card--group {
        right: 1.25%;
        top: -40px;
        width: 220px;
    }

    .operations-showcase__card--hold {
        left: -3%;
        top: 330px;
        width: 250px;
    }

    .operations-showcase__card--front {
        right: 0.75%;
        top: 285px;
        width: 280px;
    }

    .operations-showcase__card--reservation {
        width: 275px;
        left: 11.5%;
    }
}

@media (max-width: 768px) {
    .feature-group--operations {
        padding: 3.5rem 2rem 4rem;
        background-image: none;
    }

    .operations-showcase__title {
        font-size: 56px;
        max-width: none;
    }

    .operations-showcase__stage {
        min-height: auto;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .operations-showcase__mock {
        display: block;
        width: 100%;
        max-width: 760px;
        margin: 0 auto 0.75rem;
        height: auto;
        object-fit: contain;
    }

    .operations-showcase__card {
        position: static;
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .feature-group--operations {
        padding: 3rem 1.5rem 3.5rem;
    }

    .operations-showcase__title {
        font-size: 46px;
    }
}

/* Feature Group Grid */
.feature-group__grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.feature-group__grid--large {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.feature-group__grid--compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (min-width: 1400px) {
    .feature-group__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-group__grid--compact {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Feature Item */
.feature-item {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(4, 130, 78, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(4, 130, 78, 0.2);
    border-color: rgba(4, 130, 78, 0.25);
    background: linear-gradient(135deg, var(--white) 0%, #f0f9f5 100%);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item--detailed {
    padding: 1.75rem;
}

.feature-item--detailed .feature-item__icon {
    margin-bottom: 1.25rem;
}

.feature-item--highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 245, 0.5) 100%);
    border-color: rgba(4, 130, 78, 0.25);
    box-shadow: 0 4px 16px rgba(4, 130, 78, 0.1);
}

.feature-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(4, 130, 78, 0.1) 0%, rgba(136, 255, 206, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--green-bg);
    position: relative;
    flex-shrink: 0;
}

.feature-item__icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-bg), var(--mint));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.feature-item:hover .feature-item__icon {
    background: linear-gradient(135deg, var(--green-bg) 0%, rgba(4, 130, 78, 0.9) 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(4, 130, 78, 0.3);
}

.feature-item:hover .feature-item__icon::after {
    opacity: 0.2;
}

.feature-item__title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-item__title {
    color: var(--green-bg);
}

.feature-item__text {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.feature-item__list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item__list li {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    position: relative;
    padding-left: 1.25rem;
}

.feature-item__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-bg);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

/* Features Responsive */
@media (max-width: 1024px) {
    .features-hero-section {
        padding: 5rem 3rem 3rem;
    }

    .features-hero-section__title {
        font-size: 64px;
    }

    .features-nav__inner {
        padding: 0 3rem;
    }

    .feature-group {
        padding: 1.25rem 3rem;
    }

    .feature-group__title {
        font-size: 38px;
    }

    .feature-group__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-group__grid--large {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-group__grid--compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-hero-section {
        padding: 4rem 2rem 3rem;
    }

    .features-hero-section__title {
        font-size: 50px;
    }

    .features-hero-section__tagline {
        font-size: 17px;
    }

    .features-nav {
        padding: 0.75rem 0;
    }

    .features-nav__inner {
        padding: 0 2rem;
        gap: 1rem;
    }

    .features-nav__link {
        font-size: 12px;
        padding: 0.4rem 0.75rem;
    }

    .feature-group {
        padding: 2.5rem 2rem;
    }

    .feature-group__header {
        margin-bottom: 2rem;
    }

    .feature-group__title {
        font-size: 32px;
    }

    .feature-group__description {
        font-size: 15px;
    }

    .feature-group__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 1rem;
    }

    .feature-item__icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-item {
        padding: 1.75rem;
    }

    .feature-item--detailed {
        padding: 2rem;
    }

    .feature-item__title {
        font-size: 18px;
    }

    .feature-item__text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .features-hero-section {
        padding: 5rem 1.5rem 4rem;
    }

    .features-hero-section__title {
        font-size: 44px;
    }

    .feature-item__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 1rem;
    }

    .feature-item__icon svg {
        width: 22px;
        height: 22px;
    }

    .features-hero-section__tagline {
        font-size: 16px;
    }

    .feature-group {
        padding: 3.5rem 1.5rem;
    }

    .feature-group__header {
        margin-bottom: 2.5rem;
    }

    .feature-group__label {
        font-size: 10px;
    }

    .feature-group__title {
        font-size: 28px;
    }

    .feature-group__description {
        font-size: 15px;
    }

    .feature-group__grid {
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item--detailed {
        padding: 1.75rem;
    }

    .feature-item__title {
        font-size: 17px;
        margin-bottom: 0.5rem;
    }

    .feature-item__text {
        font-size: 14px;
    }

    .feature-item__list li {
        font-size: 14px;
        padding-left: 1.25rem;
    }
}

/* Contact Hero Section */
.contact-hero-section {
    width: 100%;
    padding: 4rem 4rem 6rem 4rem;
    background-color: var(--white);
}

.contact-hero-section__inner {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.contact-hero-section__heading {
    font-family: var(--font-display);
    font-size: 90px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0 0 3rem 0;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
}

.contact-hero-section__heading-line1 {
    display: block;
    line-height: 1;
}

.contact-hero-section__heading-line2 {
    display: block;
    line-height: 1;
    margin-top: -0.1em;
}

.contact-hero-section__heading-single {
    display: block;
    line-height: 1;
}

.contact-hero-section__heading-line1 {
    display: block;
    line-height: 1;
}

.contact-hero-section__heading-line2 {
    display: block;
    line-height: 1;
    margin-top: -0.1em;
}

.contact-hero-section__description {
    max-width: 100%;
    width: 100%;
}

.contact-hero-section__text {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-hero-section__text:last-of-type {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    width: 100%;
    padding: 4rem 4rem 6rem 4rem;
    background-color: #f5f5f5;
}

.contact-section__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form__heading {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
}

.contact-form__heading-line1 {
    display: block;
    line-height: 1;
}

.contact-form__heading-line2 {
    display: block;
    line-height: 1;
    margin-top: -0.1em;
}

.contact-form__subheading {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form__group--full {
    grid-column: 1 / -1;
}

.contact-form__label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form__input,
.contact-form__textarea {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: var(--white);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--green-bg);
    box-shadow: 0 0 0 3px rgba(4, 130, 78, 0.1);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-primary);
}

.contact-form__submit {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background-color: var(--green-bg);
    border: 2px solid var(--green-bg);
    border-radius: 8px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.contact-form__submit:hover {
    background-color: #006633;
    border-color: #006633;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 130, 78, 0.3);
}

.contact-form__submit:active {
    transform: translateY(0);
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info__heading {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
}

.contact-info__heading-line1 {
    display: block;
    line-height: 1;
}

.contact-info__heading-line2 {
    display: block;
    line-height: 1;
    margin-top: -0.1em;
}

.contact-info__subheading {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0.25rem 0 0.25rem 0;
}

.contact-info__methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(4, 130, 78, 0.15);
}

.contact-method__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(4, 130, 78, 0.1);
    border-radius: 12px;
    color: var(--green-bg);
}

.contact-method__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.contact-method__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-method__title {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin: 0;
}

.contact-method__value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method__value:hover {
    color: var(--green-bg);
    transform: translateX(5px);
}

.contact-locations {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 0.75rem;
}

.contact-locations__heading {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0 0 -0.5rem 0;
    line-height: 0.9;
}

.contact-location {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-locations .contact-location:first-child {
    margin-top: -0.5rem;
}

.contact-location:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(4, 130, 78, 0.15);
}

.contact-location__city {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0;
    line-height: 0.7;
}

.contact-location__city-line1 {
    font-size: 28px;
    display: block;
}

.contact-location__city-line2 {
    font-size: 40px;
    display: block;
    margin-top: -0.2em;
}

.contact-location__description {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.contact-location__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.contact-location__phone,
.contact-location__email {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-location__phone {
    cursor: pointer;
}

.contact-location__phone:hover,
.contact-location__email:hover {
    color: var(--green-bg);
}

.contact-location__link {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.contact-location__link::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.contact-location__link:hover {
    color: var(--green-bg);
    transform: translateX(5px);
}

.contact-location__link:hover::after {
    transform: translateX(5px);
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-hero-section {
        padding: 5rem 3rem;
    }

    .contact-hero-section__heading {
        font-size: 4rem;
    }

    .contact-section {
        padding: 4rem 3rem;
    }

    .contact-section__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form__heading,
    .contact-info__heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 4rem 2rem;
    }

    .contact-hero-section__heading {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .contact-hero-section__text {
        font-size: 15px;
    }

    .contact-section {
        padding: 4rem 2rem;
    }

    .contact-section__content {
        gap: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form__heading,
    .contact-info__heading {
        font-size: 2.5rem;
    }

    .contact-form__subheading,
    .contact-info__subheading {
        font-size: 14px;
    }

    .contact-method {
        padding: 1.25rem;
    }

    .contact-method__icon {
        width: 40px;
        height: 40px;
    }

    .contact-method__icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-method__value {
        font-size: 16px;
    }

    .contact-location {
        padding: 1.5rem;
    }

    .contact-location__city-line1 {
        font-size: 24px;
    }

    .contact-location__city-line2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 3rem 1.5rem;
    }

    .contact-hero-section__heading {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-hero-section__text {
        font-size: 14px;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .contact-form__heading,
    .contact-info__heading {
        font-size: 2rem;
    }

    .contact-form__subheading,
    .contact-info__subheading {
        font-size: 13px;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .contact-form__input,
    .contact-form__textarea {
        padding: 0.75rem 1rem;
        font-size: 15px;
    }

    .contact-form__submit {
        padding: 0.875rem 1.5rem;
        font-size: 14px;
        width: 100%;
    }

    .contact-method {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-method__icon {
        width: 36px;
        height: 36px;
    }

    .contact-method__icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-location {
        padding: 1.25rem;
    }

    .contact-location__city-line1 {
        font-size: 20px;
    }

    .contact-location__city-line2 {
        font-size: 28px;
    }

    .contact-location__contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-location__phone,
    .contact-location__email,
    .contact-location__link {
        font-size: 14px;
    }
}

/* Contact Footer Section */
.contact-footer-section {
    width: 100%;
    padding: 3rem 4rem;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-footer-section__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-footer-section__socials {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-footer-section__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-footer-section__social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.5);
}

.contact-footer-section__social:hover {
    transform: translateY(-5px) scale(1.1);
}

.contact-footer-section__social:hover .contact-footer-section__social-icon {
    transform: translateY(-2px) rotate(5deg);
    filter: grayscale(0);
}

.contact-footer-section__copyright {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Contact Footer Section Responsive */
@media (max-width: 768px) {
    .contact-footer-section {
        padding: 2.5rem 2rem;
    }

    .contact-footer-section__socials {
        gap: 2.5rem;
    }

    .contact-footer-section__social-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .contact-footer-section {
        padding: 2rem 1.5rem;
    }

    .contact-footer-section__socials {
        gap: 2rem;
    }

    .contact-footer-section__social-icon {
        width: 24px;
        height: 24px;
    }

    .contact-footer-section__copyright {
        font-size: 0.85rem;
    }
}

/* Book a Call Section */
.book-call-section {
    width: 100%;
    padding: 6rem 4rem;
    background-color: #f5f5f5;
}

.book-call-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.book-call-section__content {
    width: 100%;
}

.book-call-form-wrapper {
    background-color: var(--white);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.book-call-form__heading {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
}

.book-call-form__heading-line1 {
    display: block;
    line-height: 1;
}

.book-call-form__heading-line2 {
    display: block;
    line-height: 1;
    margin-top: -0.1em;
}

.book-call-form__subheading {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.book-call-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-call-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.book-call-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.book-call-form__group--full {
    grid-column: 1 / -1;
}

.book-call-form__label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.book-call-form__input,
.book-call-form__textarea {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: var(--white);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.book-call-form__input:focus,
.book-call-form__textarea:focus {
    outline: none;
    border-color: var(--green-bg);
    box-shadow: 0 0 0 3px rgba(4, 130, 78, 0.1);
}

.book-call-form__textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
}

.book-call-form__submit {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background-color: var(--green-bg);
    border: 2px solid var(--green-bg);
    border-radius: 8px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.book-call-form__submit:hover {
    background-color: #006633;
    border-color: #006633;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 130, 78, 0.3);
}

.book-call-form__submit:active {
    transform: translateY(0);
}

/* Book a Call Section Responsive */
@media (max-width: 1024px) {
    .book-call-section {
        padding: 5rem 3rem;
    }

    .book-call-form-wrapper {
        padding: 3rem;
    }

    .book-call-form__heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .book-call-section {
        padding: 4rem 2rem;
    }

    .book-call-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .book-call-form__heading {
        font-size: 36px;
    }

    .book-call-form__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .book-call-form__subheading {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .book-call-section {
        padding: 3rem 1.5rem;
    }

    .book-call-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .book-call-form__heading {
        font-size: 32px;
    }

    .book-call-form__input,
    .book-call-form__textarea {
        font-size: 15px;
        padding: 0.75rem 1rem;
    }

    .book-call-form__submit {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 14px;
    }
}

/* Let's Work Together Section */
.work-together-section {
    width: 100%;
    padding: 6rem 4rem;
    background-color: var(--white);
}

.work-together-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.work-together-section__content {
    width: 100%;
}

.work-together-form-wrapper {
    background-color: #f5f5f5;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.work-together-form__heading {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
}

.work-together-form__heading-line1 {
    display: block;
    line-height: 1;
}

.work-together-form__heading-line2 {
    display: block;
    line-height: 1;
    margin-top: -0.1em;
}

.work-together-form__subheading {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.work-together-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.work-together-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.work-together-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.work-together-form__group--full {
    grid-column: 1 / -1;
}

.work-together-form__label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.work-together-form__input,
.work-together-form__textarea {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: var(--white);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.work-together-form__input:focus,
.work-together-form__textarea:focus {
    outline: none;
    border-color: var(--green-bg);
    box-shadow: 0 0 0 3px rgba(4, 130, 78, 0.1);
}

.work-together-form__textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-primary);
}

.work-together-form__submit {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background-color: var(--green-bg);
    border: 2px solid var(--green-bg);
    border-radius: 8px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.work-together-form__submit:hover {
    background-color: #006633;
    border-color: #006633;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 130, 78, 0.3);
}

.work-together-form__submit:active {
    transform: translateY(0);
}

/* Let's Work Together Section Responsive */
@media (max-width: 1024px) {
    .work-together-section {
        padding: 5rem 3rem;
    }

    .work-together-form-wrapper {
        padding: 3rem;
    }

    .work-together-form__heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .work-together-section {
        padding: 4rem 2rem;
    }

    .work-together-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .work-together-form__heading {
        font-size: 36px;
    }

    .work-together-form__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-together-form__subheading {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .work-together-section {
        padding: 3rem 1.5rem;
    }

    .work-together-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .work-together-form__heading {
        font-size: 32px;
    }

    .work-together-form__input,
    .work-together-form__textarea {
        font-size: 15px;
        padding: 0.75rem 1rem;
    }

    .work-together-form__submit {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 14px;
    }
}

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.chat-icon:hover {
    transform: scale(1.1);
}

.chat-icon__link {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.chat-icon__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .chat-icon {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .chat-icon__link {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .chat-icon {
        bottom: 1rem;
        right: 1rem;
    }

    .chat-icon__link {
        width: 60px;
        height: 60px;
    }
}

/* Contact Popup Modal */
.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.contact-popup.active {
    display: flex;
}

.contact-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.contact-popup__content {
    position: relative;
    background-color: var(--white);
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.contact-popup__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.contact-popup__close:hover {
    opacity: 0.7;
    transform: rotate(90deg);
    background-color: #f5f5f5;
}

.contact-popup__close-icon {
    width: 24px;
    height: 24px;
    stroke: #1c1c1c;
    stroke-width: 2;
}

.contact-popup__body {
    padding-top: 0.5rem;
}

.contact-popup__heading {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1c1c1c;
    margin-bottom: 0.75rem;
    line-height: 0.9;
}

.contact-popup__heading-line1 {
    display: block;
}

.contact-popup__heading-line2 {
    display: block;
    color: var(--green-bg);
}

.contact-popup__subheading {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-popup__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-popup__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-popup__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-popup__group--full {
    width: 100%;
}

.contact-popup__label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #1c1c1c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-popup__input,
.contact-popup__textarea {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #1c1c1c;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background-color: var(--white);
    transition: border-color 0.3s ease;
    width: 100%;
}

.contact-popup__input:focus,
.contact-popup__textarea:focus {
    outline: none;
    border-color: var(--green-bg);
}

.contact-popup__textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

.contact-popup__submit {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background-color: var(--green-bg);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 0.25rem;
    align-self: flex-start;
}

.contact-popup__submit:hover {
    background-color: #006633;
    transform: translateY(-2px);
}

.contact-popup__submit:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-popup__content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .contact-popup__heading {
        font-size: 36px;
    }

    .contact-popup__close {
        top: 1rem;
        right: 1rem;
    }

    .contact-popup__row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-popup {
        padding: 1rem;
    }

    .contact-popup__content {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .contact-popup__heading {
        font-size: 28px;
    }

    .contact-popup__row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS FOR ALL SCREEN SIZES
   ============================================================ */

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrolling */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Base responsive font scaling */
@media (max-width: 1200px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    /* Hero Section - Extra Small Screens */
    .hero {
        padding: 1rem 1rem !important;
        min-height: 100vh;
    }

    .hero__headline-primary,
    .hero__headline-secondary {
        font-size: 1.8rem !important;
    }

    .hero__cta {
        gap: 1.5rem !important;
    }

    .hero__cta-button {
        width: 45px !important;
        height: 45px !important;
    }

    .hero__cta-title {
        font-size: 1rem !important;
    }

    .hero__cta-label {
        font-size: 0.7rem !important;
    }

    /* Navigation */
    .hero__contact-item,
    .simple-header__contact-item {
        font-size: 14px !important;
    }

    /* About Hero */
    .about-hero {
        padding: 3rem 1rem !important;
    }

    .about-hero__title-line1,
    .about-hero__title-line2 {
        font-size: 2rem !important;
    }

    /* Simple Header */
    .simple-header__title {
        font-size: 16px !important;
    }

    /* Sections - General Padding */
    .management-section,
    .inventory-section,
    .channel-section,
    .premium-section,
    .partners-section {
        padding: 2rem 1rem !important;
    }

    /* Management Section */
    .management-section__heading,
    .inventory-section__heading {
        font-size: 1.8rem !important;
    }

    /* Footer */
    .footer {
        padding: 3rem 1rem !important;
    }

    .footer__title-line1,
    .footer__title-line2 {
        font-size: 2rem !important;
    }

    .footer__cta-row {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .footer__btn {
        width: 100% !important;
    }

    /* Forms */
    .contact-form-wrapper,
    .contact-info-wrapper,
    .work-together-form-wrapper,
    .book-call-form-wrapper {
        padding: 1.5rem 1rem !important;
    }

    .contact-form__heading,
    .contact-info__heading,
    .contact-hero-section__heading {
        font-size: 1.8rem !important;
    }

    /* Feature Cards Grid */
    .features-showcase-section__features,
    .plans-showcase-section__features {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .invconfig-card {
        max-width: 100% !important;
        height: auto !important;
        min-height: 150px !important;
    }

    /* Partner Cards */
    .partners-showcase-section__partners {
        grid-template-columns: 1fr !important;
    }

    .partners-showcase-section__partner-wrapper {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .partners-showcase-section__partner-card {
        min-height: 200px !important;
        height: 200px !important;
    }

    /* Channel Cards */
    .channel-section__grid {
        display: flex !important;
        flex-direction: column !important;
    }

    .channel-section__grid .channel-card {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .channel-card {
        max-width: 100% !important;
    }

    /* Plans Cards */
    .plans-section__grid {
        grid-template-columns: 1fr !important;
    }

    .plan-card {
        padding: 1.5rem 1rem !important;
    }

    /* Modals */
    .plan-modal__content,
    .contact-popup__content {
        padding: 1.25rem 0.75rem !important;
        margin: 0.5rem !important;
        width: calc(100% - 1rem) !important;
    }

    /* Showcase Sections */
    .features-showcase-section__left,
    .partners-showcase-section__left,
    .plans-showcase-section__left {
        flex: 0 0 30vh !important;
        min-height: 30vh !important;
    }

    .features-showcase-section__right,
    .partners-showcase-section__right,
    .plans-showcase-section__right {
        padding: 2rem 1rem !important;
    }

    .features-showcase-section__title-bookito,
    .features-showcase-section__title-features,
    .partners-showcase-section__title-bookito,
    .partners-showcase-section__title-partners,
    .plans-showcase-section__title-bookito,
    .plans-showcase-section__title-premium {
        font-size: 2.5rem !important;
    }

    /* Logo positioning */
    .features-logo,
    .partners-logo,
    .plans-logo {
        top: 1rem !important;
        left: 1rem !important;
    }

    .features-logo__image,
    .partners-logo__image,
    .plans-logo__image {
        height: 40px !important;
    }

    /* Menu button */
    .features-menu-button,
    .partners-menu-button,
    .plans-menu-button {
        top: 1rem !important;
        right: 1rem !important;
        font-size: 0.65rem !important;
    }
}

/* Medium screens (481px to 768px) - Additional improvements */
@media (min-width: 481px) and (max-width: 768px) {

    /* Improve spacing */
    .hero__cta {
        gap: 3rem !important;
    }

    /* Better grid layouts */
    .features-showcase-section__features,
    .plans-showcase-section__features {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Channel cards - 2 columns */
    .channel-section__grid {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .channel-section__grid .channel-card {
        flex: 0 0 calc(50% - 1rem) !important;
    }
}

/* Large screens (769px to 1024px) - Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Optimize grid layouts for tablets */
    .features-showcase-section__features,
    .plans-showcase-section__features {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .channel-section__grid {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .channel-section__grid .channel-card {
        flex: 0 0 calc(33.333% - 1.5rem) !important;
    }

    .partners-showcase-section__partners {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Ensure all tables are responsive */
table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    table {
        font-size: 14px;
    }
}

/* Responsive video embeds */
iframe,
video,
embed,
object {
    max-width: 100%;
    height: auto;
}

/* Ensure flex containers wrap properly */
@media (max-width: 768px) {

    .hero__contact,
    .simple-header__contact {
        flex-wrap: wrap !important;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {

    button,
    a,
    .hero__cta-button,
    .contact-form__submit,
    .contact-popup__submit {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better spacing for touch */
    .hero__contact {
        gap: 1rem !important;
    }
}

/* Fix overflow issues on mobile */
@media (max-width: 768px) {

    .features-showcase-section,
    .partners-showcase-section,
    .plans-showcase-section {
        overflow-x: hidden;
    }

    .features-showcase-section__inner,
    .partners-showcase-section__inner,
    .plans-showcase-section__inner {
        overflow-x: hidden;
    }
}

/* Improve text readability on small screens */
@media (max-width: 480px) {
    body {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Ensure minimum font sizes */
    p,
    span,
    div {
        font-size: clamp(14px, 4vw, 16px);
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Fix decorative elements on small screens */
@media (max-width: 480px) {

    .hero__decorative-arrow,
    .about-hero__decorative-arrow,
    .premium-section__icon {
        display: none !important;
    }
}

/* Improve carousel/marquee on mobile */
@media (max-width: 768px) {
    .partners-marquee-track {
        display: flex;
        width: max-content;
        gap: 2rem;
        flex-shrink: 0;
        animation-name: marquee;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    .partners-showcase-section__partner-wrapper {
        flex: 0 0 200px !important;
        width: 200px !important;
    }
}

/* Better form layouts on mobile */
@media (max-width: 768px) {

    .contact-form,
    .contact-popup__form,
    .work-together-form,
    .book-call-form {
        gap: 1.25rem;
    }

    .contact-form__group,
    .contact-popup__group,
    .work-together-form__group,
    .book-call-form__group {
        gap: 0.5rem;
    }
}

/* Improve modal on very small screens */
@media (max-width: 320px) {

    .plan-modal__content,
    .contact-popup__content {
        border-radius: 8px !important;
        max-height: 95vh !important;
        overflow-y: auto !important;
    }

    .plan-modal__body .plan-card,
    .contact-popup__body {
        padding: 1rem !important;
    }
}

/* Ensure all section containers are responsive */
@media (max-width: 768px) {

    .management-section__inner,
    .inventory-section__inner,
    .channel-section__inner,
    .premium-section__inner,
    .partners-section__inner,
    .contact-section__inner,
    .contact-hero-section__inner {
        padding: 0 !important;
    }
}

/* Fix spacing for contact info on mobile */
@media (max-width: 480px) {
    .contact-info__methods {
        gap: 1.5rem !important;
    }

    .contact-locations {
        gap: 2rem !important;
    }

    .contact-location {
        padding: 1.25rem !important;
    }
}

/* Improve footer on mobile */
@media (max-width: 768px) {
    .footer__inner {
        flex-direction: column !important;
        gap: 3rem !important;
    }

    .footer__left,
    .footer__right {
        width: 100% !important;
    }

    .footer__socials {
        justify-content: center !important;
        gap: 1.5rem !important;
    }
}

/* Fix menu overlay on small screens */
@media (max-width: 480px) {
    .menu-overlay__content {
        padding: 2rem 1.5rem !important;
    }

    .menu-overlay__nav {
        gap: 1rem !important;
    }

    .menu-overlay__link {
        font-size: 18px !important;
        padding: 1rem !important;
    }
}

/* Ensure all fixed elements don't overlap on mobile */
@media (max-width: 768px) {
    .chat-icon {
        bottom: 1rem !important;
        right: 1rem !important;
        z-index: 999 !important;
    }

    .features-logo,
    .partners-logo,
    .plans-logo {
        z-index: 998 !important;
    }

    .features-menu-button,
    .partners-menu-button,
    .plans-menu-button {
        z-index: 998 !important;
    }
}

/* Improve readability for long text on mobile */
@media (max-width: 480px) {

    .management-section__text,
    .inventory-section__text,
    .premium-section__description,
    .features-showcase-section__description,
    .partners-showcase-section__description,
    .plans-showcase-section__description,
    .about-hero__text p,
    .contact-hero-section__text {
        line-height: 1.7 !important;
        font-size: 15px !important;
    }
}

/* Fix any remaining overflow issues */
* {
    box-sizing: border-box;
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }

    body {
        position: relative;
        width: 100%;
        overflow-x: hidden;
    }
}

/* Print styles - hide non-essential elements */
@media print {

    .hero__menu,
    .simple-header__menu,
    .features-menu-button,
    .partners-menu-button,
    .plans-menu-button,
    .chat-icon,
    .menu-overlay,
    .contact-popup,
    .plan-modal {
        display: none !important;
    }

    .hero,
    .about-hero {
        page-break-inside: avoid;
    }
}

/* Channel Section Responsive Overrides */
@media (max-width: 1024px) {
    .channel-section__inner {
        padding: 0 3rem;
    }

    .channel-section__grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .channel-section__grid .channel-card {
        flex: 0 0 85% !important;
        width: 85% !important;
        min-width: 300px;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .channel-section__title {
        font-size: 3.5rem;
    }

    .channel-section__divider {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .channel-section__inner {
        padding: 0 2rem;
    }

    .channel-section__grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .channel-section__grid .channel-card {
        flex: 0 0 85% !important;
        width: 85% !important;
        min-width: 240px;
    }

    .channel-card {
        gap: 1.25rem;
    }

    .channel-card__logo {
        max-height: 55px;
    }

    .channel-section__title {
        font-size: 2.5rem;
    }

    .channel-section__divider {
        display: flex !important;
    }

    .channel-section__divider-image {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .channel-section {
        padding: 3rem 0;
    }

    .channel-section__inner {
        padding: 0 1.5rem;
    }

    .channel-section__grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .channel-section__grid .channel-card {
        flex: 0 0 85% !important;
        width: 85% !important;
        min-width: 220px;
    }

    .channel-card__name {
        font-size: 1rem;
    }

    .channel-card__description {
        font-size: 0.9rem;
    }

    .channel-section__title {
        font-size: 2rem;
    }

    .channel-section__title-block {
        gap: 1.5rem;
    }

    .channel-section__divider {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }

    .channel-section__divider-image {
        max-width: 80px;
        flex: 0 1 auto;
    }
}

/* ============================================
   UNIVERSAL NAVIGATION RESPONSIVENESS FIX
   (Force-overrides all section-specific rules)
   ============================================ */
@media (max-width: 500px) {

    .premium-section__divider,
    .channel-section__divider,
    .plans-showcase-section__divider,
    .features-showcase-section__divider {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 10px !important;
    }

    .premium-section__divider-image,
    .channel-section__divider-image,
    .plans-showcase-section__divider-image,
    .features-showcase-section__divider-image {
        max-width: 250px !important;
        width: auto !important;
        flex: 1 1 auto !important;
        height: auto !important;
        min-width: 0 !important;
    }

    .premium-section__divider-text,
    .channel-section__divider-text,
    .plans-showcase-section__divider-text,
    .features-showcase-section__divider-text,
    .plans-showcase-section__nav-link,
    .features-showcase-section__nav-link {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        font-size: 10px !important;
    }
}

/* Fix padding for mid-sized screens on Partners page */
@media (min-width: 1025px) and (max-width: 1450px) {
    .partners-showcase-section__right {
        padding-right: 15rem !important;
        /* Force extra padding as requested */
    }
}