:root {
    --blue: #5170FF;
    --blue-dark: #3a5ae0;
    --orange: #FD8F50;
    --orange-dark: #fd7b30;
    --dark: #1e293b;
    --body-text: #33485d;
    --muted: #5a6a7e;
    --light-bg: #f5f8ff;
    --white: #ffffff;
    --border: #eef2f8;
    --green: #27ae60;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 45px rgba(81, 112, 255, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--body-text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 90px 20px 70px;
}

.video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(1.7rem, 5.2vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
}

.hero-content h1 .purple {
    color: #5170FF;
}

.hero-content h1 .orange {
    color: #FD8F50;
}

.hero-content h4 {
    font-size: clamp(0.9rem, 2.4vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
    padding: 0 6px;
}

.hero-breadcrumb {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.35);
    padding: 7px 16px;
    border-radius: 30px;
    backdrop-filter: blur(6px);
    max-width: calc(100% - 32px);
    text-align: center;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.hero-breadcrumb a:hover {
    color: #FD8F50;
}

.hero-breadcrumb i {
    font-size: 10px;
}

.hero-breadcrumb span {
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 600px) {
    .hero {
        min-height: 88vh;
        padding-top: 100px;
    }

    .hero-breadcrumb {
        bottom: 14px;
        font-size: 11px;
        padding: 6px 12px;
        gap: 4px;
    }
}

@media (max-width: 380px) {
    .hero-breadcrumb span {
        display: none;
    }

    .hero-breadcrumb a:last-of-type::after {
        content: none;
    }
}

.quick-answer-section {
    padding: 50px 0 0;
    background: var(--light-bg);
}

.quick-answer-box {
    background: white;
    border-radius: 20px;
    border-top: 5px solid var(--blue);
    padding: 32px 36px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.quick-answer-content h2 {
    font-size: clamp(1.25rem, 3.4vw, 1.7rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.quick-answer-content h2 .purple {
    color: var(--blue);
}

.quick-answer-content h2 .orange {
    color: var(--orange);
}

.quick-answer-content p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.8;
    margin-bottom: 14px;
    text-align: left;
}

.qa-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.qa-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    background: var(--light-bg);
    color: var(--blue);
    border: 1px solid rgba(81, 112, 255, 0.15);
}

.qa-pill.orange {
    color: var(--orange);
    border-color: rgba(253, 143, 80, 0.2);
    background: rgba(253, 143, 80, 0.06);
}

.qa-pill.green {
    color: var(--green);
    border-color: rgba(39, 174, 96, 0.2);
    background: rgba(39, 174, 96, 0.06);
}

@media (max-width: 600px) {
    .quick-answer-box {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .quick-answer-content p {
        font-size: 14px;
    }

    .qa-pill {
        font-size: 11px;
        padding: 5px 11px;
    }
}

.toc-section {
    padding: 34px 0 0;
    background: var(--light-bg);
}

.toc-box {
    background: white;
    border-radius: 18px;
    padding: 26px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.toc-box h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.toc-box h3 i {
    color: var(--blue);
}

.toc-list {
    list-style: none;
    columns: 2;
    column-gap: 30px;
}

.toc-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.toc-list a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: flex-start;
    gap: 7px;
    transition: color 0.2s;
}

.toc-list a:hover {
    color: var(--orange);
}

.toc-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    transition: background 0.2s;
}

.toc-list a:hover::before {
    background: var(--orange);
}

@media (max-width: 640px) {
    .toc-list {
        columns: 1;
    }

    .toc-box {
        padding: 20px 18px;
    }
}

.blog-body-section {
    padding: 46px 0 60px;
    background: var(--light-bg);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: flex-start;
}

.blog-article {
    background: white;
    border-radius: 20px;
    padding: 40px 42px;
    box-shadow: var(--shadow-sm);
    overflow-x: hidden;
    min-width: 0;
}

.article-section {
    margin-bottom: 44px;
}

.article-section:last-child {
    margin-bottom: 0;
}

.article-section h2 {
    font-size: 21px;
    text-align: center !important;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.article-section h2 i {
    color: var(--blue);
    font-size: 19px;
}

.article-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 1px 0 10px;
}

.article-section p {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--body-text);
    margin-bottom: 16px;
}

.article-section ul,
.article-section ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.article-section li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 6px;
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 640px) {
    .blog-article {
        padding: 26px 18px;
        border-radius: 16px;
    }

    .article-section {
        margin-bottom: 34px;
    }

    .article-section h2 {
        font-size: 18px;
        gap: 8px;
    }

    .article-section h3 {
        font-size: 16.5px;
        margin: 18px 0 8px;
    }

    .article-section p {
        font-size: 14.5px;
        line-height: 1.8;
    }

    .article-section li {
        font-size: 14px;
    }
}

.airline-rank-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.airline-rank-card {
    border-radius: 16px;
    border: 2px solid var(--border);
    padding: 24px 26px;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.airline-rank-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(81, 112, 255, 0.25);
}

.airline-rank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.airline-rank-card.rank-1::before {
    background: linear-gradient(180deg, #27ae60, #2ecc71);
}

.airline-rank-card.rank-2::before {
    background: linear-gradient(180deg, #5170FF, #3a5ae0);
}

.airline-rank-card.rank-3::before {
    background: linear-gradient(180deg, #FD8F50, #fd7b30);
}

.airline-rank-card.rank-4::before {
    background: linear-gradient(180deg, #8b5cf6, #7c3aed);
}

.airline-rank-card.rank-5::before {
    background: linear-gradient(180deg, #06b6d4, #0284c7);
}

.airline-rank-card.rank-6::before {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.airline-rank-card.rank-7::before {
    background: linear-gradient(180deg, #ec4899, #db2777);
}

.airline-rank-card.rank-8::before {
    background: linear-gradient(180deg, #64748b, #475569);
}

.airline-card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.airline-rank-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
}

.rank-1 .airline-rank-badge {
    background: rgba(39, 174, 96, 0.12);
    color: #27ae60;
}

.rank-2 .airline-rank-badge {
    background: rgba(81, 112, 255, 0.12);
    color: var(--blue);
}

.rank-3 .airline-rank-badge {
    background: rgba(253, 143, 80, 0.12);
    color: var(--orange);
}

.rank-4 .airline-rank-badge {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}

.rank-5 .airline-rank-badge {
    background: rgba(6, 182, 212, 0.12);
    color: #06b6d4;
}

.rank-6 .airline-rank-badge {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

.rank-7 .airline-rank-badge {
    background: rgba(236, 72, 153, 0.12);
    color: #ec4899;
}

.rank-8 .airline-rank-badge {
    background: rgba(100, 116, 139, 0.12);
    color: #64748b;
}

.airline-card-title {
    flex: 1;
    min-width: 160px;
}

.airline-card-title h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 4px;
}

.airline-card-title span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.airline-card-fare {
    text-align: right;
    flex-shrink: 0;
    margin-left: auto;
}

.airline-card-fare .fare-from {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.airline-card-fare .fare-price {
    font-size: 21px;
    font-weight: 900;
    color: #27ae60;
}

.airline-meta-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.pill-direct {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.pill-connecting {
    background: rgba(81, 112, 255, 0.1);
    color: var(--blue);
}

.pill-baggage {
    background: rgba(253, 143, 80, 0.1);
    color: var(--orange);
}

.pill-budget {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.pill-premium {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.airline-card-body p {
    font-size: 14.5px;
    color: var(--body-text);
    line-height: 1.75;
    margin-bottom: 12px;
}

.airline-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.pros-box,
.cons-box {
    border-radius: 12px;
    padding: 14px 16px;
}

.pros-box {
    background: rgba(39, 174, 96, 0.05);
    border: 1px solid rgba(39, 174, 96, 0.15);
}

.cons-box {
    background: rgba(253, 143, 80, 0.05);
    border: 1px solid rgba(253, 143, 80, 0.15);
}

.pros-box h5,
.cons-box h5 {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pros-box h5 {
    color: #27ae60;
}

.cons-box h5 {
    color: var(--orange);
}

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-box li,
.cons-box li {
    font-size: 13px;
    color: var(--body-text);
    line-height: 1.6;
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.pros-box li::before {
    content: '+';
    color: #27ae60;
    font-weight: 800;
    flex-shrink: 0;
}

.cons-box li::before {
    content: '\2013';
    color: var(--orange);
    font-weight: 800;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .airline-rank-card {
        padding: 18px 16px;
    }

    .airline-pros-cons {
        grid-template-columns: 1fr;
    }

    .airline-card-fare {
        text-align: left;
        margin-left: 0;
    }

    .airline-card-title h3 {
        font-size: 15.5px;
    }

    .airline-card-fare .fare-price {
        font-size: 19px;
    }
}

.score-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.score-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    width: 110px;
    flex-shrink: 0;
}

.score-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--blue), #3a5ae0);
}

.score-value {
    font-size: 12px;
    font-weight: 800;
    color: var(--dark);
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .score-label {
        width: 84px;
        font-size: 11px;
    }
}

.info-box {
    border-radius: 14px;
    padding: 18px 20px;
    margin: 20px 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.info-box.tip {
    background: rgba(81, 112, 255, 0.06);
    border-left: 4px solid var(--blue);
}

.info-box.warning {
    background: rgba(253, 143, 80, 0.07);
    border-left: 4px solid var(--orange);
}

.info-box.success {
    background: rgba(39, 174, 96, 0.06);
    border-left: 4px solid #27ae60;
}

.info-box i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box.tip i {
    color: var(--blue);
}

.info-box.warning i {
    color: var(--orange);
}

.info-box.success i {
    color: #27ae60;
}

.info-box p {
    font-size: 14.5px;
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 480px) {
    .info-box {
        padding: 14px 16px;
        gap: 10px;
    }

    .info-box p {
        font-size: 13.5px;
    }
}

.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 560px;
}

thead th {
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    padding: 14px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
}

thead th:first-child {
    border-radius: 14px 0 0 0;
}

thead th:last-child {
    border-radius: 0 14px 0 0;
}

tbody tr {
    background: white;
}

tbody tr:nth-child(even) {
    background: #fafbff;
}

tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--body-text);
    font-weight: 500;
    text-align: center;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody td.highlight {
    font-weight: 800;
    color: #27ae60;
}

tbody td.mid-val {
    color: var(--blue);
    font-weight: 700;
}

tbody td.peak-val {
    color: var(--orange);
    font-weight: 700;
}

tbody td.left-align {
    text-align: left;
}

.tag-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.tag-green {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.tag-blue {
    background: rgba(81, 112, 255, 0.1);
    color: var(--blue);
}

.tag-orange {
    background: rgba(253, 143, 80, 0.12);
    color: var(--orange);
}

.tag-red {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.tag-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

@media (max-width: 640px) {
    table {
        font-size: 12.5px;
        min-width: 520px;
    }

    thead th,
    tbody td {
        padding: 10px 12px;
    }
}

.route-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px 0;
}

.route-card {
    border-radius: 14px;
    padding: 18px 16px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.route-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    background: white;
}

.route-card .route-from {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.route-card .route-icon {
    font-size: 18px;
    color: var(--blue);
    margin: 6px 0;
}

.route-card .route-to {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.route-card .route-airlines {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .route-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .route-cards-grid {
        grid-template-columns: 1fr;
    }
}


.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 30px 0;
}

.tip-card {
    background: white;
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tip-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(81, 112, 255, 0.1), rgba(81, 112, 255, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blue);
    margin: 0 auto 14px;
}

.tip-card:nth-child(even) .tip-icon {
    background: linear-gradient(135deg, rgba(253, 143, 80, 0.1), rgba(253, 143, 80, 0.18));
    color: var(--orange);
}

.tip-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.tip-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

.blog-sidebar {
    position: sticky;
    top: 90px;
}

@media (max-width: 1024px) {
    .blog-sidebar {
        position: static;
        top: auto;
        margin-bottom: 30px;
    }
}

.sidebar-card {
    background: white;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-cta-card {
    background: linear-gradient(135deg, #15233d, #111827);
    border-radius: 18px;
    padding: 24px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.sidebar-cta-card h4 {
    color: white;
    font-size: 15.5px;
    font-weight: 800;
    margin-bottom: 10px;
}

.sidebar-cta-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.sidebar-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.sidebar-btn.primary {
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
}

.sidebar-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(81, 112, 255, 0.3);
}

.sidebar-btn.whatsapp {
    background: #25D366;
    color: white;
}

.sidebar-btn.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.sidebar-btn.call {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-btn.call:hover {
    background: rgba(255, 255, 255, 0.18);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
    gap: 10px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .label {
    color: var(--muted);
    font-weight: 500;
}

.price-row .price {
    font-weight: 800;
    color: var(--blue);
    white-space: nowrap;
}

.price-row .price.cheap {
    color: #27ae60;
}

.price-row .price.expensive {
    color: var(--orange);
}

.internal-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--body-text);
    transition: color 0.2s;
}

.internal-link:last-child {
    border-bottom: none;
}

.internal-link i {
    color: var(--blue);
    font-size: 14px;
    flex-shrink: 0;
}

.internal-link:hover {
    color: var(--blue);
}

@media (max-width: 1024px) {

    .sidebar-card,
    .sidebar-cta-card {
        margin-bottom: 16px;
    }
}

.internal-links-section {
    padding: 60px 0;
    background: white;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.int-link-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 22px 20px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.int-link-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    background: white;
}

.int-link-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(81, 112, 255, 0.1), rgba(81, 112, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--blue);
}

.int-link-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}

.int-link-card span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.int-link-arrow {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
}

@media (max-width: 768px) {
    .internal-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .internal-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .internal-links-section {
        padding: 44px 0;
    }
}


.faq-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.faq-grid {
    margin: 34px auto 0;
}

.faq-item {
    background: white;
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background: white;
    border: none;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.faq-question i {
    color: var(--blue);
    font-size: 1.1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question.active {
    background: #f8faff;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8faff;
}

.faq-answer p {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    text-align: left;
}

@media (max-width: 640px) {
    .faq-section {
        padding: 44px 0;
    }

    .faq-question {
        padding: 15px 16px;
        font-size: 13.5px;
    }

    .faq-answer p {
        padding: 13px 16px 15px;
        font-size: 13px;
    }
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #15233d 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 112, 255, 0.1) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 143, 80, 0.08) 0%, transparent 70%);
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    font-size: clamp(1.4rem, 4.2vw, 2.3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
}

.cta-inner h2 .purple {
    color: #5170FF;
}

.cta-inner h2 .orange {
    color: #FD8F50;
}

.cta-inner p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    padding: 0 10px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-call,
.cta-btn-wa,
.cta-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 13.5px;
    transition: all 0.3s;
}

.cta-btn-call {
    background: var(--blue);
    color: white;
}

.cta-btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(81, 112, 255, 0.4);
}

.cta-btn-wa {
    background: #25D366;
    color: white;
}

.cta-btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.cta-btn-quote {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-quote:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 560px) {
    .cta-section {
        padding: 44px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn-call,
    .cta-btn-wa,
    .cta-btn-quote {
        justify-content: center;
        width: 100%;
    }
}

.related-blogs-section {
    padding: 60px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-title {
    font-size: clamp(1.4rem, 3.6vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-title .purple {
    color: var(--blue);
}

.section-title .secondary {
    color: var(--orange);
}

.section-description {
    font-size: 14.5px;
    color: var(--muted);
    padding: 0 10px;
}

.related-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 170px;
    background: linear-gradient(135deg, #dbe4ff, #e8f0fe);
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 18px 18px 20px;
}

.blog-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(81, 112, 255, 0.08);
    padding: 4px 11px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.blog-card-body h3 {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-body p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--blue);
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 10px;
}

@media (max-width: 768px) {
    .related-blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .related-blogs-section {
        padding: 44px 0;
    }
}

.winner-banner {
    background: linear-gradient(135deg, #15233d, #1e3a5f);
    border-radius: 18px;
    padding: 26px 30px;
    margin: 26px 0;
    position: relative;
    overflow: hidden;
}

.winner-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 112, 255, 0.15), transparent 70%);
}

.winner-content {
    z-index: 1;
    position: relative;
}

.winner-content h3 {
    color: white;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.4;
}

.winner-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
}

.winner-content p strong {
    color: #FD8F50;
}

@media (max-width: 560px) {
    .winner-banner {
        padding: 20px 18px;
    }

    .winner-content h3 {
        font-size: 15.5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}