/* sectio 2 css  */


/* Full-width outer banner */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

p,
span,
a {
    font-family: "Inter", sans-serif;
}

.flight-deals-section-outer {
    --primary-blue: #0066ff;
    --navy-dark: #0b192c;
    --accent-orange: #ff5722;
    --light-bg: #eaf3fc;
    --border-color: #cbd5e1;
    width: 100%;
    background-color: #ffffff;
    background-image: url('/images1/popular-flight-section-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 20px 40px 20px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: #334155;
    overflow: hidden;
    position: relative;
}

.flight-deals-section-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(244, 249, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.flight-deals-section-outer * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.flight-deals-section-outer .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.flight-deals-section-outer h1,
.flight-deals-section-outer h2,
.flight-deals-section-outer h3,
.flight-deals-section-outer h4,
.flight-deals-section-outer .price-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.flight-deals-section-outer .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 32px;
}

.flight-deals-section-outer .hot-deals-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-orange);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-10px);
}

.flight-deals-section-outer.in-view .hot-deals-tag {
    animation: tagPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

@keyframes tagPopIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.flight-deals-section-outer .section-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--navy-dark);
    margin: 10px 0 6px 0;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 14px;
}

.flight-deals-section-outer .section-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(35px) rotateX(-40deg);
    filter: blur(6px);
    transform-origin: bottom center;
}

.flight-deals-section-outer.in-view .section-title .word {
    animation: wordRiseIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.flight-deals-section-outer .section-title .word:nth-child(1) {
    animation-delay: 0.15s;
}

.flight-deals-section-outer .section-title .word:nth-child(2) {
    animation-delay: 0.30s;
}

.flight-deals-section-outer .section-title .word:nth-child(3) {
    animation-delay: 0.45s;
}

@keyframes wordRiseIn {
    0% {
        opacity: 0;
        transform: translateY(35px) rotateX(-40deg);
        filter: blur(6px);
    }
    60% {
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

.flight-deals-section-outer .section-title span.highlight {
    color: #ff5722;
}

.flight-deals-section-outer .section-subtitle {
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(15px);
}

.flight-deals-section-outer.in-view .section-subtitle {
    animation: subtitleFadeUp 0.7s ease-out 0.65s forwards;
}

@keyframes subtitleFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flight-deals-section-outer .content-wrapper {
    display: flex;
    gap: 20px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.flight-deals-section-outer .promo-card-wrapper {
    width: 310px;
    flex-shrink: 0;
    position: relative;
    filter: drop-shadow(3px 0px 0px #0066ff) drop-shadow(0 12px 24px rgba(0, 51, 102, 0.25));
}

.flight-deals-section-outer .promo-card {
    width: 100%;
    height: 100%;
    min-height: 460px;
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.35) 0%, rgba(15, 23, 42, 0.1) 50%, rgba(11, 25, 44, 0.9) 100%), url('/images1/Hot-deals-image-1.webp') no-repeat center center;
    background-size: cover;
    clip-path: path('M 0,20 C 0,8.95 8.95,0 20,0 L 280,0 C 295,40 270,90 285,140 C 300,190 310,230 285,280 C 265,320 295,390 275,440 L 20,440 C 8.95,440 0,431.05 0,420 Z');
    border-radius: 24px 0 0 24px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.flight-deals-section-outer .promo-title-cursive {
    font-family: 'Caveat', cursive;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.flight-deals-section-outer .promo-title-main {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.flight-deals-section-outer .promo-subtitle {
    font-size: 13px;
    margin-top: 8px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.flight-deals-section-outer .promo-footer-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    width: fit-content;
    max-width: 90%;
}

.flight-deals-section-outer .promo-icon-bg {
    background: var(--accent-orange);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(255, 87, 34, 0.6);
}

.flight-deals-section-outer .deals-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.flight-deals-section-outer .nav-tabs {
    display: flex;
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 5px;
    gap: 6px;
    margin-bottom: 20px;
}

.flight-deals-section-outer .tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #e0f2fe;
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.flight-deals-section-outer .tab-btn.active {
    background: var(--navy-dark);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(11, 25, 44, 0.2);
}


/* Tab panels: hidden by default, shown when active */

.flight-deals-section-outer .tab-panel {
    display: none;
}

.flight-deals-section-outer .tab-panel.active {
    display: block;
    animation: panelFadeIn 0.35s ease;
}

@keyframes panelFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flight-deals-section-outer .deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.flight-deals-section-outer .deal-card-wrapper {
    position: relative;
    background: var(--border-color);
    clip-path: polygon(0% 0%, 89% 0%, 100% 50%, 89% 100%, 0% 100%);
    padding: 1.5px;
    border-radius: 4px;
    text-decoration: none;
    display: block;
    transition: background 0.2s ease, transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.08));
}

.flight-deals-section-outer .deal-card-wrapper:hover {
    background: var(--primary-blue);
    transform: translateX(4px);
    filter: drop-shadow(0px 8px 16px rgba(0, 102, 255, 0.2));
}

.flight-deals-section-outer .deal-card {
    position: relative;
    background: #ffffff;
    padding: 12px 28px 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%);
    cursor: pointer;
    text-decoration: none;
    height: 100%;
}

.flight-deals-section-outer .deal-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flight-deals-section-outer .city-icon {
    width: 38px;
    height: 38px;
    background: #e0f2fe;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.flight-deals-section-outer .route-text h4 {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.flight-deals-section-outer .route-text p {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
}

.flight-deals-section-outer .price-box {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flight-deals-section-outer .price-label {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    display: block;
}

.flight-deals-section-outer .price-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-orange);
}

.flight-deals-section-outer .arrow-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-size: 9px;
    background: #ffffff;
}

.flight-deals-section-outer .features-bar {
    margin-top: 24px;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.flight-deals-section-outer .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flight-deals-section-outer .feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.flight-deals-section-outer .feature-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-dark);
}

.flight-deals-section-outer .feature-text p {
    font-size: 11px;
    color: #64748b;
}

@media (max-width: 1024px) {
    .flight-deals-section-outer .content-wrapper {
        flex-direction: column;
    }
    .flight-deals-section-outer .promo-card-wrapper {
        width: 100%;
        filter: none;
    }
    .flight-deals-section-outer .promo-card {
        clip-path: none;
        border-radius: 20px;
        min-height: 240px;
        background-size: cover;
    }
    .flight-deals-section-outer .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .flight-deals-section-outer .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .flight-deals-section-outer {
        padding: 20px 12px;
    }
    .flight-deals-section-outer .deals-grid {
        grid-template-columns: 1fr;
    }
    .flight-deals-section-outer .deal-card-wrapper {
        clip-path: none;
        border-radius: 12px;
        padding: 1px;
        filter: none;
    }
    .flight-deals-section-outer .deal-card {
        clip-path: none;
        border-radius: 11px;
        padding-right: 14px;
    }
    .flight-deals-section-outer .features-bar {
        grid-template-columns: 1fr;
    }
    .flight-deals-section-outer .nav-tabs {
        flex-direction: column;
    }
    .flight-deals-section-outer .section-title {
        font-size: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .flight-deals-section-outer .section-title .word,
    .flight-deals-section-outer .section-subtitle,
    .flight-deals-section-outer .hot-deals-tag {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}


/* EARN WHILE YOU ARE TRAVEL  */

 .rewards-banner {
    text-align: center;
    padding: 20px 20px;
}

.rewards-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
}

.rewards-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: #0b0f2c;
    border-radius: 20px;
    padding: 22px 30px;
    overflow: hidden;
}

.rewards-sparkle {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, #e0c060 40%, transparent 40%),
        radial-gradient(2px 2px at 30% 70%, #6fae6f 40%, transparent 40%),
        radial-gradient(2px 2px at 50% 30%, #c9a24b 40%, transparent 40%),
        radial-gradient(2px 2px at 70% 60%, #4c7a4c 40%, transparent 40%),
        radial-gradient(2px 2px at 90% 40%, #c9a24b 40%, transparent 40%),
        radial-gradient(2px 2px at 20% 85%, #6fae6f 40%, transparent 40%),
        radial-gradient(2px 2px at 80% 15%, #e0c060 40%, transparent 40%);
    background-repeat: repeat;
    background-size: 180px 180px;
    opacity: 0.6;
}

.rewards-content {
    position: relative;
    z-index: 1;
}


.rewards-title {
    font-family: 'Kaushan Script', cursive !important;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d9a441, #f5d98b, #d9a441);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3px;
}

.rewards-subtitle {
    /* font-family: 'Kaushan Script', cursive; */
    color: #c9a24b;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.rewards-text {
    color: #e5e5e5;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto 15px;
}

.rewards-btn {
    background: #fff;
    color: #0b0f2c;
    border: none;
    padding: 9px 24px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.rewards-btn:hover {
    background: #f0f0f0;
}


/* section 2 css ended  */


/* flight form css */

.ef-flight-form {
    width: 100%;
    max-width: 790px;
    min-height: 80px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 8px 10px 8px 35px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.ef-form-field {
    flex: 1 1 0;
    min-width: 140px;
    padding: 0 20px;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ef-form-field:last-of-type {
    border-right: none;
}

.ef-form-icon {
    color: #0066ff;
    font-size: 18px;
    flex-shrink: 0;
}

.ef-form-text {
    flex: 1;
    min-width: 0;
}

.ef-form-label {
    display: block;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Figtree', sans-serif;
}

.ef-form-select,
.ef-form-input {
    width: 100%;
    border: none;
    outline: none;
    color: #888;
    font-size: 14px;
    background: transparent;
    font-family: 'Figtree', sans-serif;
}

.ef-search-btn {
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    background: #0066ff;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-left: auto;
}

.ef-search-btn:focus-visible,
.ef-toggle:focus-visible,
.ef-nav a:focus-visible,
.ef-follow-icons a:focus-visible {
    outline: 2px solid #82d400;
    outline-offset: 3px;
}


/* section 3 vook flight with eazy fares  */

.yf-hero-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #1a2b49;
    box-sizing: border-box;
    overflow: hidden;
}

.yf-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0.55) 0%, rgba(245, 245, 245, 0.3) 50%, rgba(245, 245, 245, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.yf-hero-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.yf-hero-section .yf-content-wrapper {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.yf-hero-section .yf-bg-plane {
    position: absolute;
    top: -15%;
    right: 7%;
    width: 420px;
    z-index: 1;
    pointer-events: none;
}

.yf-hero-section .yf-script-badge {
    position: absolute;
    top: 120px;
    right: 5%;
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: #0066ff;
    font-weight: 700;
    transform: rotate(-10deg);
    line-height: 1.2;
    opacity: 0;
    animation: yf-fade-in 0.8s ease-out 1.1s forwards;
}

.yf-hero-section .yf-header-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.yf-hero-section .yf-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #0b2545;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0;
    animation: yf-fade-up 0.7s ease-out 0.1s forwards;
}

.yf-hero-section .yf-subtitle .yf-line {
    width: 0;
    height: 2px;
    background-color: #0b2545;
    animation: yf-line-grow 0.6s ease-out 0.4s forwards;
}

@keyframes yf-line-grow {
    to {
        width: 40px;
    }
}

.yf-hero-section .yf-subtitle i {
    color: #0066ff;
    font-size: 14px;
}

.yf-hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0b2545;
    line-height: 1.1;
    margin-bottom: 15px;
    opacity: 0;
    animation: yf-fade-up 0.8s ease-out 0.3s forwards;
}

.yf-hero-section .yf-highlight {
    font-family: 'Caveat', cursive;
    color: #ff5e14;
    font-size: 68px;
    font-weight: 700;
    display: inline-block;
}

.yf-hero-section .yf-header-content p {
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    animation: yf-fade-up 0.8s ease-out 0.5s forwards;
}

.yf-hero-section .yf-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.yf-hero-section .yf-card {
    position: relative;
    background-color: rgba(234, 243, 254, 0.85);
    border-radius: 18px;
    padding: 24px 20px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #d3e4f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(30px);
    animation: yf-card-in 0.7s ease-out forwards;
}

.yf-hero-section .yf-card:nth-child(1) {
    animation-delay: 0.5s;
}

.yf-hero-section .yf-card:nth-child(2) {
    animation-delay: 0.65s;
}

.yf-hero-section .yf-card:nth-child(3) {
    animation-delay: 0.8s;
}

.yf-hero-section .yf-card:nth-child(4) {
    animation-delay: 0.95s;
}

@keyframes yf-card-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.yf-hero-section .yf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0, 102, 255, 0.18), 0 6px 14px rgba(255, 94, 20, 0.1);
}

.yf-hero-section .yf-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #0066ff, #ff5e14, #0066ff);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 4;
    pointer-events: none;
}

.yf-hero-section .yf-card:hover::before {
    opacity: 1;
    animation: yf-border-shimmer 3s linear infinite;
}

@keyframes yf-border-shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.yf-hero-section .yf-card-bg-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    object-fit: cover;
    object-position: top;
    z-index: 1;
    opacity: 0.66;
    mix-blend-mode: multiply;
    filter: contrast(100%) brightness(110%) saturate(55%);
}

.yf-hero-section .yf-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to bottom, rgba(234, 243, 254, 0.97) 0%, rgba(234, 243, 254, 0.75) 35%, rgba(234, 243, 254, 0.35) 65%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.yf-hero-section .yf-card-content {
    position: relative;
    z-index: 3;
}

.yf-hero-section .yf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.yf-hero-section .yf-card-number {
    font-size: 28px;
    font-weight: 700;
    color: #93bdf5;
}

.yf-hero-section .yf-icon-box {
    width: 44px;
    height: 44px;
    background: #0066ff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.yf-hero-section .yf-card:hover .yf-icon-box {
    transform: rotate(-12deg) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.45);
}

.yf-hero-section .yf-card h3 {
    font-size: 18px;
    color: #0b2545;
    font-weight: 700;
    margin-bottom: 10px;
}

.yf-hero-section .yf-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 15px;
}

a.text-logo.logo-dark {
    padding: 2px;
    background: white;
    border-radius: 4px;
}

.yf-hero-section .yf-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #0066ff;
    text-decoration: none;
    position: relative;
    z-index: 3;
}

.yf-hero-section .yf-learn-more i {
    background: #0066ff;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    transition: transform 0.3s ease;
}

.yf-hero-section .yf-learn-more:hover i {
    transform: translateX(4px);
}

.yf-hero-section .yf-handwritten-tag {
    position: absolute;
    bottom: 130px;
    left: 15px;
    font-family: 'Caveat', cursive;
    color: #0066ff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    z-index: 4;
    transform: rotate(-8deg);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.yf-hero-section .yf-footer-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #0b2545;
    letter-spacing: 2px;
    opacity: 0;
    animation: yf-fade-in 0.8s ease-out 1.2s forwards;
    position: relative;
    z-index: 2;
}

.yf-hero-section .yf-footer-tag .yf-line {
    width: 50px;
    height: 1px;
    background-color: #cbd5e1;
}

@keyframes yf-fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes yf-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .yf-hero-section .yf-bg-plane {
        display: none;
    }
    .yf-hero-section h1 {
        font-size: 36px;
    }
    .yf-hero-section .yf-highlight {
        font-size: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .yf-hero-section * {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* flying aeroplane animation  */

.yf-plane-wrap {
    display: inline-block;
    animation: yfPlaneFlyIn 1.4s ease-out forwards;
}

.yf-bg-plane {
    display: block;
    animation: yfPlaneFloat 3s ease-in-out infinite, yfPlaneGlow 2s ease-in-out infinite;
    animation-delay: 1.4s, 1.4s;
}

@keyframes yfPlaneFlyIn {
    0% {
        transform: translateX(250px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes yfPlaneFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes yfPlaneGlow {
    0%,
    100% {
        filter: drop-shadow(0 0 6px rgba(80, 160, 255, 0.35)) drop-shadow(0 0 12px rgba(80, 160, 255, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(80, 160, 255, 0.55)) drop-shadow(0 0 20px rgba(80, 160, 255, 0.3));
    }
}

.yf-script-badge {
    opacity: 0;
    animation: yfBadgeFadeIn 0.8s ease-out forwards;
    animation-delay: 1s;
}

@media (max-width: 767px) {
    .yf-script-badge {
        display: none !important;
    }
}

@keyframes yfBadgeFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.yf-slider {
    position: relative;
    width: 100%;
}

.yf-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.yf-slider-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.4s ease;
    will-change: transform;
    gap: 20px;
    /* apni existing gap value se match kar lena */
}

.yf-slider-track .yf-card {
    flex: 0 0 calc(25% - 15px);
    /* 4 cards per view - desktop */
}

@media (max-width: 992px) {
    .yf-slider-track .yf-card {
        flex: 0 0 calc(50% - 10px);
        /* 2 cards per view - tablet */
    }
}

@media (max-width: 576px) {
    .yf-slider-track .yf-card {
        flex: 0 0 100%;
        /* 1 card per view - mobile */
    }
}

.yf-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.yf-slider-arrow:hover {
    background: #f0f0f0;
}

.yf-slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.yf-slider-arrow-prev {
    left: -22px;
}

.yf-slider-arrow-next {
    right: -22px;
}

@media (max-width: 576px) {
    .yf-slider-arrow-prev {
        left: 5px;
    }
    .yf-slider-arrow-next {
        right: 5px;
    }
}

.yf-cards-grid.yf-slider-track {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    transition: transform 0.4s ease;
    will-change: transform;
    gap: 20px;
}

.yf-cards-grid.yf-slider-track .yf-card {
    flex: 0 0 calc(25% - 15px);
    width: auto;
}

@media (max-width: 992px) {
    .yf-cards-grid.yf-slider-track .yf-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .yf-cards-grid.yf-slider-track .yf-card {
        flex: 0 0 100%;
    }
}

.yf-footer-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #0b2545;
    letter-spacing: 2px;
    opacity: 0;
    animation: yf-fade-in 0.8s ease-out 1.2s forwards;
    position: relative;
    z-index: 2;
}

.yf-footer-tag .yf-line {
    width: 50px;
    height: 1px;
    background-color: #cbd5e1;
}

@keyframes yf-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.yf-features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    margin-top: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
}

.yf-features-row .feature-item {
    flex: 1 1 180px;
    max-width: 220px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    white-space: normal;
}

.yf-features-row .feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #1a5cff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

.yf-features-row .feature-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.yf-features-row .feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yf-features-row .feature-text h4 {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #14213d;
    letter-spacing: normal;
    text-transform: none;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.4;
}

.yf-features-row .feature-text p {
    margin: 4px 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #7a8699;
    letter-spacing: normal;
    text-transform: none;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .yf-features-row .feature-item {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 576px) {
    .yf-features-row .feature-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* section 3 popular flight deals  */

.pf3-section {
    --navy-950: #071b2c;
    --sky-400: #5fd0ff;
    --amber-400: #fdae4e;
    --white: #fbfdff;
    --slate-200: #cfe0f2;
    --slate-400: #9db4cc;
    position: relative;
    width: 100%;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    isolation: isolate;
    padding: 76px 0 60px;
}

.pf3-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* background photo covers the whole section, not just a strip */

.pf3-bg-img {
    position: absolute;
    inset: -3% -3%;
    width: 106%;
    height: 106%;
    object-fit: cover;
    object-position: center 45%;
    transform: scale(1.08);
    transition: transform 10s ease;
    z-index: 0;
}

.pf3-section.in-view .pf3-bg-img {
    transform: scale(1);
}

.pf3-bg-wash {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(4, 14, 26, 0.82) 0%, rgba(4, 14, 26, 0.42) 26%, rgba(4, 14, 26, 0.5) 70%, rgba(4, 14, 26, 0.86) 100%);
}


/* plane displane none  */

.media1 {
    display: none;
}


/* enede  */

.pf3-plane-track {
    position: absolute;
    top: 8%;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
    opacity: 0;
    transition: opacity 1.2s ease 1s;
    pointer-events: none;
}

.pf3-section.in-view .pf3-plane-track {
    opacity: 0.8;
}

.pf3-plane-track i {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    offset-path: path('M -40,50 C 260,-10 620,90 1400,10');
    offset-rotate: auto;
    animation: pf3Fly 15s linear infinite;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

@keyframes pf3Fly {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    92% {
        opacity: 1;
    }
    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

@media (max-width: 720px) {
    .pf3-plane-track {
        display: none;
    }
}

.pf3-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}


/* ---------- HEADER ---------- */

.pf3-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 46px;
    opacity: 0;
    transform: translateY(16px);
}

.pf3-section.in-view .pf3-header {
    animation: pf3FadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.pf3-title {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: clamp(48px, 7vw, 74px);
    line-height: 1;
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
}

.pf3-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--slate-200);
}


/* ---------- BENTO GRID (glass cards, background stays visible through them) ---------- */

.pf3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 224px);
    gap: 16px;
    margin-bottom: 20px;
}

.pf3-featured {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.pf3-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    overflow: hidden;
    opacity: 0;
    transform: translateY(18px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.pf3-section.in-view .pf3-card {
    animation: pf3FadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pf3-section.in-view .pf3-card:nth-of-type(1) {
    animation-delay: 0.28s;
}

.pf3-section.in-view .pf3-card:nth-of-type(2) {
    animation-delay: 0.36s;
}

.pf3-section.in-view .pf3-card:nth-of-type(3) {
    animation-delay: 0.44s;
}

.pf3-section.in-view .pf3-card:nth-of-type(4) {
    animation-delay: 0.52s;
}

.pf3-section.in-view .pf3-card:nth-of-type(5) {
    animation-delay: 0.6s;
}

.pf3-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
}

.pf3-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pf3-card:hover .pf3-card-img {
    transform: scale(1.08);
}

.pf3-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(3, 10, 20, 0.82) 0%, rgba(3, 10, 20, 0.6) 32%, rgba(3, 10, 20, 0.28) 55%, rgba(3, 10, 20, 0) 78%);
}

.pf3-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
}

.pf3-route {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(4, 12, 22, 0.5);
    padding: 5px 10px;
    border-radius: 20px;
}

.pf3-route i {
    color: var(--sky-400);
    font-size: 8px;
}

.pf3-trending {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--amber-400);
    color: #241300;
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
}

.pf3-card-foot {
    margin-top: auto;
}

.pf3-tagline {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

.pf3-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 19px;
    margin-bottom: 12px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.pf3-price span {
    font-weight: 500;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-bottom: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.pf3-featured .pf3-price {
    font-size: 25px;
}

.pf3-view {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--navy-950);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    transition: gap 0.25s ease;
}

.pf3-card:hover .pf3-view {
    gap: 9px;
}


/* ---------- DISCOVER MORE CTA ---------- */

.pf3-more-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.pf3-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 13.5px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.pf3-more-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.pf3-more-btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.pf3-more-btn:hover i {
    transform: translateX(4px);
}


/* ---------- CALL BANNER (glass too) ---------- */

.pf3-call-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-radius: 16px;
    padding: 20px 24px;
    opacity: 0;
}

.pf3-flag-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    object-fit: cover;
    vertical-align: middle;
}

.pf3-section.in-view .pf3-call-banner {
    animation: pf3FadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.pf3-avatar-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.pf3-avatar-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 174, 78, 0.4), transparent 70%);
    animation: pf3Pulse 2.4s ease-in-out infinite;
}

@keyframes pf3Pulse {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

.pf3-avatar-wrap img {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(255, 255, 255, 0.9);
}

.pf3-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid var(--navy-950);
    border-radius: 50%;
}

.pf3-call-text {
    flex: 1;
    min-width: 180px;
}

.pf3-call-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.pf3-call-text p {
    font-size: 12.5px;
    color: var(--slate-200);
}

.pf3-call-text strong {
    color: var(--amber-400);
    font-weight: 700;
}

.pf3-call-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    /* gap: 8px; */
    background: var(--amber-400);
    color: #241300;
    font-weight: 700;
    font-size: 13.5px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(253, 174, 78, 0.25);
}

.pf3-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(253, 174, 78, 0.4);
}

.pf3-call-btn i {
    animation: pf3Ring 2.4s ease-in-out infinite;
}

@keyframes pf3Ring {
    0%,
    88%,
    100% {
        transform: rotate(0deg);
    }
    90% {
        transform: rotate(-16deg);
    }
    92% {
        transform: rotate(14deg);
    }
    94% {
        transform: rotate(-9deg);
    }
    96% {
        transform: rotate(5deg);
    }
}

@keyframes pf3FadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 860px) {
    .pf3-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 210px);
    }
    .pf3-featured {
        grid-column: 1 / span 2;
        grid-row: 1;
    }
}

@media (max-width: 560px) {
    .pf3-section {
        padding: 56px 0 44px;
    }
    .pf3-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    .pf3-featured {
        grid-column: 1;
        grid-row: 1;
    }
    .pf3-call-banner {
        flex-wrap: wrap;
    }
    .pf3-call-text {
        width: 100%;
    }
    .pf3-call-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf3-section * {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* section 4 last mintutes deals  */

.lmd-section {
    --navy-900: #0b1f3a;
    --navy-700: #1c3a5e;
    --red-600: #ef4444;
    --blue-600: #2f5fd9;
    --green-600: #16a34a;
    --amber-500: #f59e0b;
    --panel-mint: #eef4fb;
    --ink-600: #5b6c82;
    --ink-400: #8a97a8;
    --line: #e7ecf2;
    position: relative;
    width: 100%;
    min-height: 420px;
    background: var(--panel-mint);
    font-family: 'Inter', sans-serif;
    padding: 44px 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.lmd-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* right side: full-bleed photo, fading into the light background */

.lmd-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 22%, black 40%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 22%, black 40%);
    z-index: 0;
}

.lmd-pin {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -100%);
}

.lmd-pin i {
    position: relative;
    z-index: 2;
    color: var(--red-600);
    font-size: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.lmd-pin-glow {
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 30px;
    height: 30px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.55), transparent 70%);
    animation: lmdPulse 2.2s ease-in-out infinite;
    z-index: 1;
}

@keyframes lmdPulse {
    0% {
        transform: translateX(-50%) scale(0.6);
        opacity: 0.9;
    }
    70% {
        transform: translateX(-50%) scale(1.9);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) scale(1.9);
        opacity: 0;
    }
}

.lmd-pin-1 {
    top: 30%;
    right: 24%;
}

.lmd-pin-2 {
    top: 52%;
    right: 8%;
}

.lmd-pin-3 {
    top: 68%;
    right: 18%;
}

.lmd-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 30px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-900);
    box-shadow: 0 12px 26px rgba(11, 31, 58, 0.12);
    animation: lmdFloat 4s ease-in-out infinite;
}

.lmd-chip i {
    font-size: 11px;
}

.lmd-chip-destinations {
    top: 8%;
    right: 4%;
}

.lmd-chip-rating {
    bottom: 8%;
    right: 18%;
    animation-delay: 1.6s;
}

.lmd-chip-red i {
    color: var(--red-600);
}

.lmd-chip-amber i {
    color: var(--amber-500);
}

@keyframes lmdFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

.lmd-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}


/* ---------- LEFT: deals list ---------- */

/* =========================================================
   LAST MINUTE DEALS / EAZYFARES TRAVEL SERVICES
========================================================= */

.lmd-section {
    position: relative;
    overflow: hidden;
    background: #eef5fc;
    padding: 70px 6%;
    min-height: 480px;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.lmd-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.lmd-left {
    max-width: 590px;
    opacity: 0;
    transform: translateY(16px);
}

.lmd-section.in-view .lmd-left {
    animation: lmdFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}


/* =========================================================
   WORLD MAP
========================================================= */

.lmd-bg-image {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    max-width: 650px;
    height: auto;
    opacity: 0.88;
    z-index: 1;
    pointer-events: none;
}


/* =========================================================
   CHIPS
========================================================= */

.lmd-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(11, 31, 58, 0.08);
    box-shadow: 0 8px 22px rgba(11, 31, 58, 0.1);
    border-radius: 30px;
    padding: 7px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--navy-900);
}

.lmd-chip-destinations {
    right: 7%;
    top: 12%;
}

.lmd-chip-rating {
    right: 20%;
    bottom: 12%;
}

.lmd-chip-red,
.lmd-chip-amber {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lmd-chip-red {
    background: #fee2e2;
    color: #dc2626;
}

.lmd-chip-amber {
    background: #fef3c7;
    color: #d97706;
}

.lmd-chip i {
    font-size: 9px;
}


/* =========================================================
   MAP LOCATION PINS
========================================================= */

.lmd-pin {
    position: absolute;
    z-index: 3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #ef4444;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.18);
}

.lmd-pin-1 {
    right: 32%;
    top: 31%;
}

.lmd-pin-2 {
    right: 14%;
    top: 40%;
}

.lmd-pin-3 {
    right: 27%;
    bottom: 25%;
}

.lmd-pin-glow {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.25);
    animation: lmdPinPulse 2s ease-in-out infinite;
}

.lmd-pin i {
    position: relative;
    z-index: 2;
}

@keyframes lmdPinPulse {

    0%,
    100% {
        transform: scale(0.85);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}


/* =========================================================
   EYEBROW
========================================================= */

.lmd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #dbeafe;
    color: #2563eb;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.lmd-eye-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lmd-eyebrow i {
    font-size: 11px;
    position: relative;
    z-index: 1;
}

.lmd-eyebrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 255, 255, 0.85) 50%,
        transparent 100%
    );
    animation: lmdBtnShine 3.4s ease-in-out infinite;
}


/* =========================================================
   TITLE
========================================================= */

.lmd-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.12;
    color: var(--navy-900);
    letter-spacing: -0.5px;
    margin: 0 0 9px;
}

.lmd-title .lmd-script {
    font-family: "Kaushan Script", cursive;
    /* font-weight: 700; */
    color: #ff5722;
    font-size: 1.35em;
    padding: 0 2px;
}

.lmd-title-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--ink-600);
    max-width: 510px;
    margin: 0 0 22px;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.lmd-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* =========================================================
   SERVICE ROW
========================================================= */

.lmd-row {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 14px rgba(11, 31, 58, 0.035);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.lmd-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent, var(--navy-900));
    transform: scaleY(0);
    transform-origin: top;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lmd-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(11, 31, 58, 0.12);
    border-color: transparent;
}

.lmd-row:hover::before {
    transform: scaleY(1);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.lmd-icon-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(
        in srgb,
        var(--accent, var(--navy-900)) 12%,
        white
    );
    color: var(--accent, var(--navy-900));
    font-size: 15px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.lmd-row:hover .lmd-icon-circle {
    transform: scale(1.08) rotate(-6deg);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.lmd-row-body {
    flex: 1 1 auto;
    min-width: 0;
}

.lmd-tag {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 2px;
    color: var(--accent, var(--navy-900));
    text-transform: uppercase;
}

.lmd-row-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.3;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.lmd-row-description {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.45;
    color: var(--ink-600);
}


/* =========================================================
   SERVICE BADGE
========================================================= */

.lmd-service-badge {
    flex-shrink: 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    background: var(--accent, var(--navy-900));
    white-space: nowrap;
}


/* =========================================================
   BUTTON
========================================================= */

.lmd-book-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--navy-900);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 13px;
    border-radius: 30px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition:
        background 0.25s ease,
        gap 0.25s ease,
        transform 0.25s ease;
}

.lmd-book-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 255, 255, 0.65) 50%,
        transparent 100%
    );
    animation: lmdBtnShine 3.4s ease-in-out infinite;
}

.lmd-row:hover .lmd-book-btn {
    background: var(--accent, var(--red-600));
    gap: 9px;
}

.lmd-book-btn i {
    font-size: 9px;
    position: relative;
    z-index: 1;
}

.lmd-book-btn span {
    position: relative;
    z-index: 1;
}


/* =========================================================
   SHINE ANIMATION
========================================================= */

@keyframes lmdBtnShine {

    0% {
        left: -60%;
    }

    55% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}


/* =========================================================
   FADE ANIMATION
========================================================= */

@keyframes lmdFadeUp {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .lmd-section {
        padding: 55px 5%;
    }

    .lmd-bg-image {
        width: 100%;
        right: -10%;
        opacity: 0.18;
        mask-image: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.15) 0%,
            black 40%
        );
        -webkit-mask-image: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.15) 0%,
            black 40%
        );
    }

    .lmd-chip,
    .lmd-pin {
        display: none;
    }

    .lmd-left {
        max-width: 100%;
    }

    .lmd-row {
        background: rgba(255, 255, 255, 0.94);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .lmd-section {
        padding: 45px 16px;
        min-height: 0;
    }

    .lmd-title {
        font-size: 29px;
    }

    .lmd-title-sub {
        font-size: 12.5px;
        margin-bottom: 18px;
    }

    .lmd-list {
        gap: 10px;
    }

    .lmd-row {
        flex-wrap: wrap;
        padding: 12px;
        gap: 9px 10px;
    }

    .lmd-icon-circle {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .lmd-row-body {
        flex: 1 1 calc(100% - 50px);
    }

    .lmd-row-title {
        font-size: 13.5px;
    }

    .lmd-row-description {
        font-size: 10.5px;
    }

    .lmd-service-badge {
        order: 3;
        margin-left: 48px;
        font-size: 9px;
    }

    .lmd-book-btn {
        order: 4;
        margin-left: auto;
        font-size: 10px;
        padding: 7px 11px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .lmd-section {
        padding: 38px 13px;
    }

    .lmd-eyebrow {
        font-size: 10px;
        padding: 7px 12px;
    }

    .lmd-title {
        font-size: 26px;
    }

    .lmd-row-description {
        max-width: 100%;
    }

    .lmd-service-badge {
        margin-left: 47px;
    }

    .lmd-book-btn {
        margin-left: auto;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .lmd-section *,
    .lmd-section *::after,
    .lmd-section *::before {
        animation: none !important;
        transition: none !important;
    }

    .lmd-left {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* section 5 four steps to take off  */

* {
    box-sizing: border-box;
}

.hiw {
    position: relative;
    max-width: 1232px;
    margin: 36px auto;
    border-radius: 24px;
    background: #F6F6F4;
    padding: 34px 5vw 30px;
    overflow: hidden;
}

.hiw::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 420px at 8% -10%, rgba(239, 165, 60, 0.07), transparent 60%), radial-gradient(ellipse 600px 500px at 105% 90%, rgba(176, 81, 46, 0.08), transparent 60%);
    pointer-events: none;
}

.hiw-inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: start;
}


/* ---- intro column ---- */

.hiw-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: #1C2534;
    margin: 0 0 8px;
}

.hiw-heading .script {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    color: #ff5722;
    font-size: 1.3em;
    padding: 0 2px;
}

.hiw-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    color: #6E6455;
    max-width: 34ch;
    margin: 0 0 14px;
    font-weight: 400;
}

.hiw-route {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: #ff5722;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(28, 37, 52, 0.14);
}

.hiw-route span.dot {
    color: #ff5722;
    opacity: .6;
}

.hiw-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #EFA53C;
    color: #402A08;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 96% 100%, 0 100%);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), background .3s ease;
}

.hiw-cta:hover {
    background: #FFB859;
    transform: translateY(-2px);
}

.hiw-cta:focus-visible {
    outline: 2px solid #FFFFFF;
    outline-offset: 4px;
}

.hiw-cta svg {
    width: 15px;
    height: 15px;
}


/* ---- tickets column ---- */

.hiw-tickets {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ticket {
    position: relative;
    display: flex;
    background: #FFFFFF;
    border: 1px solid #E4E1D9;
    border-radius: 10px;
    box-shadow: 0 14px 26px -22px rgba(28, 37, 52, 0.35);
    opacity: 0;
    transform: translateY(14px);
    animation: rise .6s ease forwards;
}

.ticket:nth-child(1) {
    animation-delay: .05s;
}

.ticket:nth-child(2) {
    animation-delay: .15s;
}

.ticket:nth-child(3) {
    animation-delay: .25s;
}

.ticket:nth-child(4) {
    animation-delay: .35s;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion:reduce) {
    .ticket {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.ticket::before,
.ticket::after {
    content: "";
    position: absolute;
    left: 76px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #F6F6F4;
    z-index: 2;
}

.ticket::before {
    top: -8px;
}

.ticket::after {
    bottom: -8px;
}

.ticket-stub {
    flex: 0 0 76px;
    width: 76px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 6px;
    color: #FFFFFF;
    border-radius: 10px 0 0 10px;
}

.ticket--a .ticket-stub {
    background: #EFA53C;
    color: #402A08;
}

.ticket--b .ticket-stub {
    background: #B0512E;
    color: #F7ECDF;
}

.ticket-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
}

.ticket-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 0.26em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.ticket-perf {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 76px;
    width: 0;
    border-left: 2px dashed #E4E1D9;
}

.ticket-main {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px 10px 22px;
}

.ticket-icon {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: #1C2534;
}

.ticket-icon svg {
    width: 100%;
    height: 100%;
}

.ticket-text {
    flex: 1;
    min-width: 0;
}

.ticket-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1C2534;
    margin: 0 0 1px;
}

.ticket-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #6E6455;
    margin: 0;
    max-width: 38ch;
}

.ticket-footer {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.ticket-code {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    color: #6E6455;
}

.ticket-barcode {
    width: 52px;
    height: 18px;
    background-image: repeating-linear-gradient(90deg, #1C2534 0 2px, transparent 2px 3px, #1C2534 3px 4px, transparent 4px 6px, #1C2534 6px 9px, transparent 9px 11px, #1C2534 11px 12px, transparent 12px 15px, #1C2534 15px 16px, transparent 16px 19px, #1C2534 19px 21px, transparent 21px 23px, #1C2534 23px 24px, transparent 24px 27px, #1C2534 27px 29px, transparent 29px 32px);
    opacity: .55;
}

.ticket:hover {
    box-shadow: 0 28px 46px -26px rgba(0, 0, 0, 0.6);
}

.ticket:hover .ticket-icon {
    color: #EFA53C;
}

.ticket--b:hover .ticket-icon {
    color: #B0512E;
}


/* ---- info strip ---- */

.hiw-strip {
    position: relative;
    max-width: 1180px;
    margin: 22px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid rgba(28, 37, 52, 0.14);
}

.strip-item {
    flex: 1 1 220px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 22px 0;
}

.strip-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: #B0512E;
    margin-top: 2px;
}

.strip-icon svg {
    width: 100%;
    height: 100%;
}

.strip-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1C2534;
    margin: 0 0 3px;
}

.strip-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.45;
    color: #6E6455;
    margin: 0;
    max-width: 28ch;
}

@media (max-width:920px) {
    .hiw-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .hiw-heading {
        font-size: 38px;
    }
    .hiw-sub {
        max-width: none;
    }
}

@media (max-width:600px) {
    .hiw {
        padding: 40px 18px 34px;
        margin: 24px 14px;
    }
    .ticket {
        flex-direction: column;
    }
    .ticket-stub {
        flex-direction: row;
        width: auto;
        padding: 14px 20px;
        border-radius: 10px 10px 0 0;
        justify-content: flex-start;
    }
    .ticket-label {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 0.22em;
    }
    .ticket-perf {
        display: none;
    }
    .ticket::before,
    .ticket::after {
        left: 50%;
    }
    .ticket-main {
        flex-wrap: wrap;
        padding: 18px 20px 20px;
    }
    .ticket-footer {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        margin-top: 8px;
    }
}


/* section 6 our blogs  */


/* FULL WIDTH BACKGROUND SECTION */

.ez-tour-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 50px 0;
    background: linear-gradient( 135deg, rgba(20, 42, 82, 0.45) 0%, rgba(32, 65, 120, 0.40) 100%), url('/images1/our-blogs-vg-image.webp') center/cover no-repeat;
    color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}

.ez-tour-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1360px, calc(100% - 30px));
    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.ez-tour-section>* {
    position: relative;
    z-index: 1;
}

.ez-tour-header {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto 30px auto;
    padding: 0 40px;
    box-sizing: border-box;
    text-align: center;
}

.ez-tour-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #ffffff;
    text-align: center;
}

.ez-tour-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 750px;
    margin: 0 auto 20px auto;
    text-align: center;
}


/* CUSTOMER BADGE */

.ez-customer-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ez-avatars {
    display: flex;
}

.ez-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -10px;
    object-fit: cover;
}

.ez-avatars .ez-avatar-img:first-child {
    margin-left: 0;
}

.ez-badge-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.ez-badge-info p {
    font-size: 12px;
    margin: 0;
    color: #94a3b8;
}

.ez-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 10px 40px;
    box-sizing: border-box;
}

.ez-slider-track-container {
    width: 100%;
    overflow: hidden;
}

.ez-slider-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    width: max-content;
    will-change: transform;
}


/* ARROWS */

.ez-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.ez-nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.08);
}

.ez-nav-prev {
    left: 10px;
}

.ez-nav-next {
    right: 10px;
}


/* BLOG CARDS */

.ez-tour-card {
    width: 295px;
    height: 360px;
    flex-shrink: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.55);
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

.ez-tour-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.5);
}

.ez-card-img-wrap {
    width: 100%;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

.ez-card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ez-card-footer-content {
    position: relative;
    z-index: 3;
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.ez-card-footer-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
    letter-spacing: -0.1px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ez-card-footer-content p {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0 0 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ez-card-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.18);
    margin-top: auto;
    margin-bottom: 14px;
    width: 100%;
}

.ez-read-more {
    font-size: 14px;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .ez-tour-section {
        padding: 35px 0;
    }
    .ez-tour-section::before {
        width: calc(100% - 20px);
        border-radius: 14px;
    }
    .ez-tour-header {
        padding: 0 20px;
    }
    .ez-slider-wrapper {
        padding: 10px 20px;
    }
    .ez-tour-card {
        width: 280px;
    }
}


/* section 7 your reviews  */


/* =====================================================
   MAIN SECTION
===================================================== */

.reviews-section {
    width: 100%;
    max-width: 1268px;
    margin: 30px auto;
    padding: 20px 0 20px;
}


/* =====================================================
   CENTER HEADING
===================================================== */

.reviews-header {
    text-align: center;
    margin-bottom: 32px;
}

.reviews-header h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: #263957;
    margin-bottom: 6px;
}

.reviews-header p {
    font-size: 13px;
    line-height: 19px;
    color: #71829d;
    margin-bottom: 24px;
}


/* =====================================================
   REVIEW TABS
===================================================== */

.review-tabs {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
}


/* TAB */

.review-tab {
    width: 250px;
    min-height: 64px;
    border: 1px solid #e0e8f1;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 18px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    box-shadow: 0 2px 8px rgba(35, 60, 90, 0.04);
}

.review-tab:hover {
    background: #f9fcff;
    border-color: #cfe2f7;
}

.review-tab.active {
    background: #f5faff;
    border-color: #0878e8;
    box-shadow: 0 4px 14px rgba(8, 120, 232, 0.09);
}


/* =====================================================
   GOOGLE LOGO
===================================================== */

.google-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -1px;
    white-space: nowrap;
}

.g-blue {
    color: #4285f4;
}

.g-red {
    color: #ea4335;
}

.g-yellow {
    color: #fbbc05;
}

.g-green {
    color: #34a853;
}


/* =====================================================
   TRUSTPILOT LOGO
===================================================== */

.trustpilot-logo {
    display: flex;
    align-items: center;
    color: #00b67a;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.trustpilot-logo span {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00b67a;
    color: #ffffff;
    font-size: 11px;
    margin-right: 5px;
}


/* =====================================================
   TAB RATING
===================================================== */

.tab-rating {
    text-align: left;
}

.tab-rating-top {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tab-rating .stars {
    color: #ffb400;
    font-size: 13px;
    letter-spacing: 1px;
}

.tab-rating .rating-number {
    color: #536782;
    font-size: 11px;
    font-weight: 700;
}

.tab-rating small {
    display: block;
    font-size: 9px;
    line-height: 12px;
    color: #8491a5;
    margin-top: 2px;
}


/* =====================================================
   SLIDER WRAPPER
===================================================== */

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
}


/* =====================================================
   SLIDER
===================================================== */

.reviews-slider {
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 16px;
    width: max-content;
    transition: transform .55s ease;
    will-change: transform;
}


/* =====================================================
   REVIEW CARD
===================================================== */

.review-card {
    flex: 0 0 calc((1268px - 48px) / 4);
    height: 330px;
    border: 1px solid #e0e8f1;
    border-radius: 12px;
    background: #ffffff;
    padding: 26px 20px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(27, 53, 82, 0.02);
    transition: box-shadow .25s ease, transform .25s ease;
}

.review-card:hover {
    box-shadow: 0 6px 18px rgba(35, 60, 90, 0.07);
    transform: translateY(-2px);
}


/* =====================================================
   CLIENT INFO
===================================================== */

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* =====================================================
   AVATAR
===================================================== */

.client-avatar {
    width: 53px;
    height: 53px;
    min-width: 53px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 400;
    color: #31537c;
}

.avatar-blue {
    background: #e5efff;
}

.avatar-green {
    background: #e1f5eb;
}

.avatar-purple {
    background: #eee5ff;
}

.avatar-yellow {
    background: #fff0ce;
}

.avatar-pink {
    background: #ffe8ee;
}


/* =====================================================
   CLIENT DETAILS
===================================================== */

.client-details {
    min-width: 0;
}

.client-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 19px;
    font-weight: 700;
    color: #253957;
    margin-bottom: 7px;
}

.verified {
    color: #a7b4c6;
    font-size: 9px;
    font-weight: 400;
}


/* =====================================================
   CLIENT RATING
===================================================== */

.client-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.client-rating .stars {
    color: #ffb400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0;
}

.review-date {
    color: #71829d;
    font-size: 11px;
    white-space: nowrap;
}


/* =====================================================
   REVIEW TEXT
===================================================== */

.review-text {
    margin-top: 25px;
    font-size: 15px;
    line-height: 25px;
    color: #3c506e;
}


/* =====================================================
   CARD FOOTER
===================================================== */

.review-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    height: 30px;
}


/* HELPFUL */

.helpful {
    display: flex;
    align-items: center;
    gap: 17px;
    color: #71829d;
    font-size: 13px;
}

.heart {
    color: #7187a4;
    font-size: 21px;
    line-height: 1;
    font-family: Arial, sans-serif;
}


/* DIVIDER */

.footer-divider {
    width: 1px;
    height: 27px;
    background: #d8e0ea;
    margin: 0 19px;
}


/* REPLY */

.reply {
    color: #0074e8;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}


/* =====================================================
   SLIDER ARROWS
===================================================== */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e5ebf3;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(36, 65, 100, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0878e8;
    font-size: 37px;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.slider-arrow:hover {
    background: #f5faff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 5px 16px rgba(8, 120, 232, 0.15);
}

.arrow-left {
    left: -25px;
}

.arrow-right {
    right: -25px;
}


/* =====================================================
   BOTTOM TEXT
===================================================== */

.reviews-bottom {
    margin-top: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    color: #71829d;
    font-size: 14px;
}

.bottom-divider {
    width: 1px;
    height: 22px;
    background: #d9e1eb;
}

.all-reviews {
    color: #0074e8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.all-reviews span {
    font-size: 18px;
    margin-left: 3px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1300px) {
    .reviews-section {
        max-width: calc(100% - 40px);
    }
    .review-card {
        flex-basis: calc((100vw - 40px - 48px) / 4);
    }
}


/* =====================================================
   3 CARDS
===================================================== */

@media (max-width: 1050px) {
    .review-card {
        flex-basis: calc((100vw - 40px - 32px) / 3);
    }
}


/* =====================================================
   2 CARDS
===================================================== */

@media (max-width: 780px) {
    .reviews-section {
        max-width: calc(100% - 30px);
    }
    .review-card {
        flex-basis: calc((100vw - 30px - 16px) / 2);
    }
    .slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 31px;
    }
    .arrow-left {
        left: -12px;
    }
    .arrow-right {
        right: -12px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 560px) {
    .reviews-section {
        max-width: 100%;
        padding: 0 15px 20px;
        margin-top: 25px;
    }
    .reviews-header {
        margin-bottom: 25px;
    }
    .reviews-header h2 {
        font-size: 21px;
        line-height: 27px;
    }
    .reviews-header p {
        font-size: 12px;
        line-height: 17px;
        padding: 0 20px;
        margin-bottom: 18px;
    }
    /* MOBILE TABS */
    .review-tabs {
        gap: 8px;
    }
    .review-tab {
        width: calc(50% - 4px);
        min-height: 60px;
        padding: 8px 6px;
        gap: 7px;
    }
    .google-logo {
        font-size: 14px;
    }
    .trustpilot-logo {
        font-size: 11px;
    }
    .trustpilot-logo span {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    .tab-rating .stars {
        font-size: 9px;
        letter-spacing: 0;
    }
    .tab-rating .rating-number {
        font-size: 10px;
    }
    .tab-rating small {
        font-size: 8px;
    }
    /* ONE CARD */
    .review-card {
        flex-basis: calc(100vw - 30px);
        height: 320px;
        padding: 24px 18px 18px;
    }
    /* ARROWS */
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    .arrow-left {
        left: -5px;
    }
    .arrow-right {
        right: -5px;
    }
    /* BOTTOM */
    .reviews-bottom {
        margin-top: 45px;
        font-size: 11px;
        gap: 10px;
    }
    .all-reviews {
        font-size: 11px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {
    .review-tab {
        flex-direction: column;
        gap: 2px;
        padding: 7px 3px;
    }
    .tab-rating {
        text-align: center;
    }
    .tab-rating small {
        display: none;
    }
    .review-card {
        height: 325px;
    }
}


/* section 8 insta feed  */


/* ================================
   Instagram Section
================================ */

.eazy-instagram-section {
    width: 100%;
    padding: 30px 20px;
    background: #ffffff;
    overflow: hidden;
}


/* ================================
   Main Intro With Background Image
================================ */

.eazy-instagram-intro {
    max-width: 1320px;
    margin: 0 auto 38px;
    padding: 65px 30px;
    text-align: center;
    background-image: linear-gradient( rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)), url("/images1/insta_feed_bg_banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
}


/* Small Instagram Title */

.eazy-instagram-small-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #1677ff;
    font-size: 15px;
    font-weight: 600;
}

.eazy-instagram-small-title i {
    font-size: 17px;
}


/* Main Heading */

.eazy-instagram-intro h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
}


/* Paragraph */

.eazy-instagram-intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #667085;
}


/* ================================
   Instagram Header
================================ */

.eazy-instagram-header {
    max-width: 1320px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.eazy-instagram-title {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #172033;
    font-size: 18px;
    font-weight: 700;
}

.eazy-instagram-title i {
    color: #e1306c;
    font-size: 23px;
}


/* Follow Button */

.eazy-instagram-follow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 19px;
    border-radius: 7px;
    background: #1677ff;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.eazy-instagram-follow:hover {
    background: #0d63dc;
    color: #ffffff;
    transform: translateY(-2px);
}


/* ================================
   Slider
================================ */

.eazy-instagram-slider {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eazy-instagram-viewport {
    width: 100%;
    overflow: hidden;
}

.eazy-instagram-track {
    display: flex;
    gap: 12px;
    transition: transform 0.55s ease;
    will-change: transform;
}


/* ================================
   Instagram Post
================================ */

.eazy-instagram-post {
    position: relative;
    flex: 0 0 calc((100% - 36px) / 4);
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    background: #f2f4f7;
    display: block;
    text-decoration: none;
}

.eazy-instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.eazy-instagram-post:hover img {
    transform: scale(1.06);
}


/* ================================
   Hover Overlay
================================ */

.eazy-instagram-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eazy-instagram-post:hover .eazy-instagram-overlay {
    opacity: 1;
}

.eazy-instagram-overlay i {
    color: #ffffff;
    font-size: 27px;
}


/* ================================
   Video Icon
================================ */

.eazy-instagram-video {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
}


/* ================================
   Arrows
================================ */

.eazy-instagram-arrow {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #172033;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.eazy-instagram-arrow:hover {
    background: #1677ff;
    color: #ffffff;
    transform: scale(1.06);
}


/* Loading / Error */

.eazy-instagram-loading,
.eazy-instagram-error {
    width: 100%;
    padding: 35px 15px;
    text-align: center;
    color: #667085;
    font-size: 15px;
}


/* ================================
   Tablet
================================ */

@media (max-width: 991px) {
    .eazy-instagram-post {
        flex: 0 0 calc((100% - 24px) / 3);
    }
    .eazy-instagram-intro {
        padding: 55px 25px;
    }
    .eazy-instagram-intro h2 {
        font-size: 32px;
    }
}


/* ================================
   Mobile
================================ */

@media (max-width: 575px) {
    .eazy-instagram-section {
        padding: 30px 15px;
    }
    .eazy-instagram-intro {
        padding: 45px 18px;
        margin-bottom: 30px;
        border-radius: 12px;
        background-position: center;
    }
    .eazy-instagram-intro h2 {
        font-size: 28px;
    }
    .eazy-instagram-intro p {
        font-size: 15px;
        line-height: 1.6;
    }
    .eazy-instagram-header {
        margin-bottom: 15px;
    }
    .eazy-instagram-title {
        font-size: 16px;
    }
    .eazy-instagram-follow {
        padding: 8px 13px;
        font-size: 13px;
    }
    .eazy-instagram-slider {
        gap: 7px;
    }
    .eazy-instagram-track {
        gap: 7px;
    }
    .eazy-instagram-post {
        flex: 0 0 calc((100% - 7px) / 2);
        border-radius: 8px;
    }
    .eazy-instagram-arrow {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
    }
}


/* setion 9 newsletter css  */


/* Full Width Container */

.newsletter-full-wrapper {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.newsletter-full-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* Main Outer Banner Box */

.newsletter-box {
    width: 100%;
    background-color: #f7fafc;
    background-image: url('/images1/section7-banner.jpeg');
    background-repeat: no-repeat;
    background-position: right 8% center;
    background-size: contain;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}


/* 1. Left Section: Icon & Text */

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 380px;
    flex-shrink: 0;
}

.newsletter-left .mail-icon {
    font-size: 42px;
    color: #0b57d0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-left .text-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 4px;
}

.newsletter-left .text-content p {
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.4;
    font-weight: 400;
}


/* 2. Middle Section: Input + Subscribe Button */

.newsletter-middle {
    flex-grow: 1;
    max-width: 400px;
}

.newsletter-form-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 4px 5px 4px 14px;
}

.newsletter-form-box .envelope-icon {
    color: #94a3b8;
    font-size: 15px;
    margin-right: 10px;
}

.newsletter-form-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 12.5px;
    color: #334155;
    background: transparent;
}

.newsletter-form-box input::placeholder {
    color: #94a3b8;
}

.newsletter-form-box button {
    background: #0b57d0;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.newsletter-form-box button:hover {
    background: #0842a0;
}


/* 3. Right Section: Fixed Clean Layout */

.newsletter-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    /* Card/box background hata diya gaya hai */
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    /* Card/box background hata diya gaya hai */
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
}

.icon-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 100px;
    width: 1px;
    background-color: #cbd5e1;
}


/* Thin Vertical Line Divider */

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 100px;
    width: 1px;
    background-color: #cbd5e1;
}

.icon-box i {
    color: #0066ff;
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-item i {
    color: white;
    font-size: 16px;
    margin-bottom: 6px;
}

.icon-box spna {
    font-family: 11px;
    font-weight: 600;
    color: #475569;
    line-height: 1.3;
    max-width: 90px;
}

.feature-item span {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    line-height: 1.3;
    max-width: 90px;
}


/* Responsive Adjustments */

@media (max-width: 1024px) {
    .newsletter-box {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
        background-position: right bottom;
    }
    .newsletter-left,
    .newsletter-middle {
        max-width: 100%;
    }
    .newsletter-right {
        justify-content: space-around;
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .newsletter-right {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .icon-box {
        flex-direction: row;
        gap: 12px;
        text-align: left;
    }
    .feature-item {
        flex-direction: row;
        gap: 12px;
        text-align: left;
    }
    .icon-box span {
        max-width: 100%;
    }
    .feature-item span {
        max-width: 100%;
    }
    .icon-box:not(:last-child)::after {
        display: none;
    }
    .feature-item:not(:last-child)::after {
        display: none;
    }
}


/* map emmbedded css  */

:root{
  --loc4-ink:#16202B;
  --loc4-paper:#FBF9F5;
  --loc4-muted:#68727C;
  --loc4-flame:#E2673B;
  --loc4-line:rgba(22,32,43,0.12);
}
.loc4-section{ width:100%; background:var(--loc4-paper); padding:60px 24px; font-family:'Inter',Arial,sans-serif; }
.loc4-wrap{ max-width:1260px; margin:0 auto; }
.loc4-eyebrow{ display:block; font-size:0.85rem; font-weight:600; color:var(--loc4-flame); margin-bottom:10px; }
.loc4-heading{ font-family:'Plus Jakarta Sans',Arial,sans-serif; font-weight:800; font-size:clamp(1.9rem,3.2vw,2.5rem); line-height:1.12; color:var(--loc4-ink); margin:0 0 12px; }
.loc4-sub{ font-size:1rem; color:var(--loc4-muted); margin:0 0 40px; max-width:440px; }

/* ---- white card, distinct from the section's own background ---- */
.loc4-card{ background:#FFFFFF; border:1px solid var(--loc4-line); border-radius:16px; padding:40px; box-shadow:0 20px 50px rgba(22,32,43,0.06); }

/* ---- tabs with sliding pill ---- */
.loc4-tabs{ position:relative; display:inline-flex; flex-wrap:wrap; gap:2px; background:rgba(22,32,43,0.06); border-radius:999px; padding:4px; margin-bottom:40px; }
.loc4-tab{
  position:relative; z-index:2; display:flex; align-items:center; gap:8px;
  padding:11px 20px; border:none; background:transparent; border-radius:999px;
  font-family:'Inter',Arial,sans-serif; font-weight:600; font-size:0.82rem; letter-spacing:0.02em;
  color:var(--loc4-muted); cursor:pointer;
}
.loc4-tab img{ width:18px; height:13px; object-fit:cover; border-radius:2px; }
.loc4-tab.is-active{ color:#fff; }
.loc4-pill{ position:absolute; top:4px; left:4px; height:calc(100% - 8px); background:var(--loc4-ink); border-radius:999px; transition:transform .35s cubic-bezier(.22,.8,.28,1), width .35s cubic-bezier(.22,.8,.28,1); z-index:1; }

/* ---- panel ---- */
.loc4-panel{ display:none; }
.loc4-panel.is-active{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:44px; align-items:center; animation:loc4In .35s ease; }
@keyframes loc4In{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:translateY(0); } }

.loc4-city{ font-family:'Kaushan Script',cursive; font-weight:400; font-size:2.3rem; color:var(--loc4-ink); margin:0 0 16px; line-height:1; }
.loc4-phone{ display:inline-flex; align-items:center; gap:9px; font-family:'Plus Jakarta Sans',Arial,sans-serif; font-weight:700; font-size:1.2rem; color:var(--loc4-flame); text-decoration:none; margin-bottom:18px; }
.loc4-phone i{ font-size:0.85rem; }
.loc4-phone:hover{ text-decoration:underline; }
.loc4-company{ font-weight:600; color:var(--loc4-ink); font-size:0.95rem; margin:0 0 8px; }
.loc4-address{ display:flex; align-items:flex-start; gap:8px; color:var(--loc4-muted); font-size:0.9rem; line-height:1.55; margin:0; max-width:320px; }
.loc4-address i{ color:var(--loc4-flame); margin-top:4px; flex-shrink:0; }

.loc4-map{ border-radius:6px; overflow:hidden; border:1px solid var(--loc4-line); box-shadow:0 16px 34px rgba(22,32,43,0.1); }
.loc4-map iframe{ display:block; width:100%; height:280px; border:0; }

@media (max-width:760px){
  .loc4-card{ padding:24px; border-radius:12px; }
  .loc4-panel.is-active{ grid-template-columns:1fr; gap:28px; }
  .loc4-map iframe{ height:220px; }
  .loc4-tab{ padding:9px 14px; font-size:0.76rem; }
}
