@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #222222;
    --secondary-color: #f7b731;
    /* Bright yellow/gold for icons */
    --accent-color: #cda434;
    --bg-light: #f5f7fa;
    --text-dark: #333333;
    --text-light: #6e7a8a;
    --white: #ffffff;
    --border-color: #eaeaea;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.2s ease;
    --theme-color: #cda434;
}

/* Platform Themes */
.theme-flights {
    --theme-color: #cda434;
}

.theme-hotels {
    --theme-color: #cda434;
}

.theme-train {
    --theme-color: #cda434;
}

.theme-bus {
    --theme-color: #cda434;
}

.theme-transfer {
    --theme-color: #cda434;
}

.theme-visa {
    --theme-color: #cda434;
}

.theme-holidays {
    --theme-color: #cda434;
}

.theme-cabs {
    --theme-color: #cda434;
}

/* Responsive Theme Updates */
.search-btn {
    background: var(--theme-color) !important;
    transition: background 0.3s;
}

.s-tab.active i {
    color: var(--theme-color) !important;
}

.s-tab.active::after {
    background-color: var(--theme-color) !important;
}

.sub-link.active {
    color: var(--theme-color) !important;
}

.sub-link.active::after {
    background: var(--theme-color) !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Sticky Dual Header Component */
.sticky-header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
}

.main-logo-top {
    height: 40px;
    max-width: 250px;
    object-fit: contain;
    display: block;
}

.login-action {
    background: #e01e26;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.login-action:hover {
    background: #333;
}

.util-link {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.util-link i {
    font-size: 15px;
    color: #777;
    transition: transform 0.2s;
}

.util-link:hover {
    color: var(--accent-color);
}

/* Dropdown Sub-component */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    display: none;
    flex-direction: column;
    padding: 8px;
    z-index: 99999;
    border: 1px solid #f0f0f0;
}

.dropdown-menu.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.header-util {
    display: flex !important;
    align-items: center;
    gap: 25px;
    visibility: visible !important;
}

.util-link {
    text-decoration: none;
    color: #444;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.util-link:hover {
    color: var(--accent-color);
}

.dropdown-item {
    padding: 12px 18px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    transition: all 0.2s;
}

.dropdown-item span {
    color: #888;
    font-size: 11px;
    min-width: 28px;
    text-align: center;
}

.dropdown-item:hover {
    background: #f8f9fb;
    color: var(--accent-color);
}

.dropdown-item.active {
    background: #fff9f6;
    color: var(--accent-color);
}

.dropdown-toggle.active i {
    transform: rotate(180deg);
}

.country-code {
    margin-right: 4px;
    color: #666;
    font-weight: 700;
}

.util-sep {
    width: 1px;
    height: 20px;
    background: #eee;
}

.login-action {
    background: #111;
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.login-action:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Sub Navigation Bar */
.sub-nav {
    background: #fff;
    padding: 8px 0;
}

.sub-nav-left {
    display: flex;
    gap: 30px;
}

.sub-link {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    position: relative;
    transition: 0.2s;
}

.sub-link.active {
    color: var(--accent-color);
}

.sub-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
}

.sub-link i {
    font-size: 16px;
    opacity: 0.9;
}

.offer-badge {
    background: #e54b4b;
    color: #fff;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(229, 75, 75, 0.2);
}

.sub-nav-right {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

/* Offset Body for Sticky Positioning */
body {
    padding-top: 140px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Updated background image to look more like the dark metropolitan city block from image */
    background: url('../images/travel_hero_bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* slightly lighter overlay to show buildings clearly */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    margin-top: -60px;
    /* shift up slightly */
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff 30%, #cda434 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 500;
    color: #e8eb3dfb;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
    margin-bottom: 20px;
}

/* Search Box Overlaying Hero */
.search-container {
    max-width: 1200px;
    width: 95%;
    margin: -100px auto 60px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.search-tabs-grid {
    display: flex;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    justify-content: space-between;
    padding: 0 20px;
}

.s-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    cursor: pointer;
    transition: all 0.2s;
    color: #555;
    border-bottom: 2px solid transparent;
    gap: 5px;
}

.s-tab i {
    font-size: 20px;
}

.s-tab span {
    font-size: 13px;
    font-weight: 700;
}

.s-tab:hover {
    background: #f9f9f9;
}

.s-tab.active {
    color: var(--theme-color) !important;
    border-bottom: 3px solid var(--theme-color) !important;
}

.s-tab.active i {
    color: var(--theme-color) !important;
}

/* Form Container */
.search-form-container {
    padding: 35px 40px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
}

.context-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.context-section.active {
    display: block;
}

/* Platform Search Form Styles */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.platform-grid .span-2 {
    grid-column: span 1;
    /* Adjusting for 3 col layout */
}

.p-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 8px;
    background: #fff;
}

.p-input-group label {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

.p-input-group input,
.p-input-group select {
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.platform-action-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: var(--theme-color);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s;
}

.platform-action-btn:hover {
    filter: brightness(0.9);
}

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trip-type {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.radio-container:hover input~.checkmark {
    background-color: #f8f8f8;
}

.radio-container input:checked~.checkmark {
    border-color: #ff6d38;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked~.checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6d38;
}

/* Search Form Elements - Ultra Stable Grid */
.search-form {
    display: grid;
    grid-template-columns: 2.3fr 1.8fr 1.2fr minmax(180px, auto);
    gap: 12px;
    margin-bottom: 25px;
    align-items: stretch;
}

.from-to-group,
.date-group {
    display: flex;
    align-items: stretch;
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: visible;
}

.input-group {
    flex: 1;
    position: relative;
    padding: 10px 15px;
    min-height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    transition: all 0.2s ease;
    border: none;
}

/* Specific borders for grouped inputs */
.from-to-group .input-group:first-child,
.date-group .input-group:first-child {
    border-right: 1px solid #eee;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.from-to-group .input-group:last-child,
.date-group .input-group:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Standalone input group for Travelers */
.input-single {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.input-group:hover,
.input-group:focus-within {
    background: #fcfcfc;
    z-index: 10;
}

.input-group label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    margin-bottom: 6px;
    display: block;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-wrapper i {
    color: #a0a0a0;
    font-size: 15px;
}

.input-group input {
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    width: 100%;
    outline: none;
    background: transparent;
    padding: 0;
}

.input-group input::placeholder {
    color: #bbb;
    font-weight: 500;
}

/* Swap icon matching image exactly */
.swap-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    color: #bbb;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.swap-icon:hover {
    border-color: #ff6d38;
    color: #ff6d38;
}

.search-btn {
    background: #ff6d38;
    color: #fff;
    border: none;
    height: 100%;
    padding: 0 24px;
    white-space: nowrap;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 109, 56, 0.35);
}

.search-btn:hover {
    background: #e85d2a;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(255, 109, 56, 0.45);
}

/* Section Footer Refinement - Exact Colors */
.search-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.special-fares {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fare-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
}

.fare-tags {
    display: flex;
    gap: 8px;
}

.fare-tag {
    padding: 6px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.fare-tag:hover {
    border-color: #ff6d38;
    color: #ff6d38;
}

.free-cancellation {
    background: #f1faf4;
    border: 1px solid #e3f5eb;
    padding: 8px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #28a745;
    border: 1px solid #ddd;
}

.check-icon {
    color: #28a745;
    font-size: 18px;
}

.cancel-text {
    font-size: 13px;
    font-weight: 700;
    color: #0b5e20;
}

.cancel-subtext {
    color: #28a745;
    font-weight: 400;
    font-size: 11px;
}

/* Breakthrough Responsive Strategy */
@media (max-width: 1200px) {
    .search-form {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .from-to-group {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .search-form {
        grid-template-columns: 1fr;
    }

    .from-to-group,
    .date-group,
    .input-group,
    .search-btn {
        grid-column: 1 / -1;
    }

    .from-to-group,
    .date-group {
        flex-direction: column;
        border: none;
    }

    .input-group {
        border: 1px solid #e0e0e0 !important;
        border-radius: 8px !important;
        margin-bottom: 8px;
    }

    .swap-icon {
        display: none;
    }

    .search-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}

/* Final Tabs Styling matching Image Color */
.s-tab.active {
    background: #fff;
    color: #111;
}

.s-tab.active i {
    color: #ffca01;
}

.s-tab.active::after {
    background-color: #ffca01;
    height: 3px;
}

.s-tab:not(.active) {
    background-color: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

/* --- RESTORED SECTIONS --- */

/* Features */
.features-section {
    padding: 60px 5%;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #fff9e6;
    /* Very light yellow circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #ffca01;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: #ffca01;
    color: #fff;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #222;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.feature-card p {
    color: #999;
    font-size: 12px;
    line-height: 1.4;
    padding: 0 10px;
}

@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .feature-card:nth-child(n+4) {
        display: none;
    }

    /* Show only 3 on tablets to keep clean */
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(n+4) {
        display: block;
    }
}

/* Destinations Grid */
.destinations-section {
    padding: 80px 5%;
    background: #fcfcfc;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.dest-card {
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    padding: 15px;
    gap: 15px;
    border: 1px solid #eee;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.dest-img-container {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-info {
    flex: 1;
}

.dest-info h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.dest-info p {
    color: #888;
    font-size: 13px;
}

.dest-badge {
    background: #fff9e6;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #ffca01;
    margin-top: 5px;
    display: inline-block;
}

/* Footer */
footer {
    background: #111;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 5% 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* Do More With Goldfinchs Section Styles */
.do-more-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.more-card {
    background: #f8f9fb;
    /* Standard off-white from goal image */
    border-radius: 12px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 140px;
}

.more-card:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.more-card:hover .card-icon {
    background: #ff6d38;
}

.more-card:hover .card-icon i {
    color: #fff;
}

.card-icon i {
    font-size: 20px;
    color: #333;
}

.card-label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

@media (max-width: 1000px) {
    .do-more-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .do-more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* New Sections: Cheapest Fares & Hotel Deals */
.section-title-alt {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}

.section-subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.fares-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.fare-card {
    height: 350px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fare-card:hover {
    transform: translateY(-5px);
}

.fare-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
}

.fare-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.fare-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.fare-overlay .price {
    color: #ffca01;
    font-weight: 700;
}

/* Hotel Filters */
.hotel-filters {
    display: flex;
    gap: 10px;
}

.filter-pill {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #eee;
    background: #fff;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-pill.active {
    background: #252422;
    color: #fff;
    border-color: #252422;
}

.filter-pill:hover:not(.active) {
    background: #f8f8f8;
    border-color: #ddd;
}

/* Hotel Card */
.hotel-card-main {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hotel-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.rating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-badge i {
    color: #ffca01;
}

.hotel-info-box {
    padding: 25px;
}

.hotel-info-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.hotel-info-box .loc {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.price-row .price {
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.price-row .tag {
    font-size: 12px;
    color: #28a745;
    font-weight: 700;
    background: #e8f5e9;
    padding: 5px 12px;
    border-radius: 4px;
}

@media (max-width: 1000px) {
    .fares-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hotel-filters {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .fares-grid {
        grid-template-columns: 1fr;
    }
}

/* Book Flight Button Styling */
.fare-card {
    background-color: #f0f0f0;
    /* Fallback for slow images */
    background-size: cover;
    background-position: center;
}

.book-flight-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6d38;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 109, 56, 0.3);
}

.fare-card:hover .book-flight-btn {
    opacity: 1;
    transform: translateY(0);
}

.book-flight-btn:hover {
    background: #e85d2a;
    transform: scale(1.05);
}

/* Hotel View All Grid Mode */
.hotels-grid.grid-mode {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hotel-card-small {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.hotel-card-small:hover {
    transform: translateY(-5px);
}

.hotel-img-small {
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.rating-badge-small {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-badge-small i {
    color: #ffca01;
}

.hotel-info-small {
    padding: 15px;
}

.hotel-info-small h4 {
    font-size: 14px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-info-small p {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

/* Tab Switch Animation */
.animate-fade {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hotels-grid.grid-mode {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hotels-grid.grid-mode {
        grid-template-columns: 1fr;
    }
}

/* Small Card Text Styling */
.loc-small {
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-small {
    font-size: 13px !important;
    font-weight: 800;
    color: #111;
}

/* Refined Routes Grid & App Banner */
.view-more {
    text-decoration: none;
    color: #ff6d38;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.view-more:hover {
    gap: 12px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.route-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.route-card:hover {
    border-color: #ff6d38;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.route-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.route-info {
    flex: 1;
}

.route-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.route-info p {
    font-size: 12px;
    color: #777;
}

.route-info p span {
    color: #ff6d38;
    margin: 0 4px;
}

.route-arrow {
    color: #ddd;
    font-size: 12px;
}

/* App Banner Styling */
.app-banner {
    background: #ff6d38;
    border-radius: 30px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.app-brand {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.app-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.app-features {
    list-style: none;
    margin-bottom: 40px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.app-features li i {
    font-size: 20px;
    opacity: 0.9;
}

.app-stores {
    display: flex;
    gap: 15px;
}

.store-btn {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.store-btn.play {
    background: #252422;
    color: #fff;
}

.store-btn.apple {
    background: #fff;
    color: #111;
}

.store-btn:hover {
    transform: translateY(-3px);
}

.qr-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    color: #111;
    text-align: center;
    transform: rotate(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 250px;
}

.qr-placeholder {
    width: 100%;
    height: 190px;
    background: #f1f1f1;
    border-radius: 15px;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 700;
    margin-bottom: 20px;
}

.qr-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.qr-card p {
    font-size: 12px;
    color: #777;
}

@media (max-width: 1100px) {
    .app-banner {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }

    .app-content-left {
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .qr-card {
        transform: rotate(0);
    }

    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .app-title {
        font-size: 32px;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }
}

/* Final Polish for Arrows and Cards */
.route-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 10px;
    transition: all 0.3s;
}

.route-card:hover .route-arrow {
    background: #ff6d38;
    color: #fff;
    transform: translateX(3px);
}

/* Airlines Partner Section */
.airline-heading {
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    color: #8fa3b0;
    font-weight: 800;
    margin-bottom: 30px;
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.airline-card {
    background: #f8f9fb;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.airline-card i {
    font-size: 14px;
    color: #8fa3b0;
    transition: all 0.3s;
}

.airline-card span {
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.airline-card:hover {
    background: #fff;
    border-color: #ff6d38;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.airline-card:hover i {
    color: #ff6d38;
    transform: rotate(45deg);
}

@media (max-width: 900px) {
    .airlines-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .airlines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-footer {
    background: #111111 !important;
    /* Matches Goldfinchs Dark Theme */
    color: #fff !important;
    padding: 25px 0 15px !important;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 4px solid var(--theme-color);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid-concept {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--theme-color);
    /* Theme Underline */
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #ffca01;
    transform: translateX(5px);
}

/* Branch Addresses Style */
.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.branch-item {
    font-size: 12px;
    color: #aaa;
    line-height: 1.6;
}

.branch-item strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    text-transform: uppercase;
}

.branch-item i {
    color: #ffca01;
    margin-right: 5px;
}

/* Social Icons Area */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-circle:hover {
    background: var(--theme-color);
    color: #111;
    transform: translateY(-5px);
}

/* Concept Newsletter */
.newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-box h4::after {
    display: none;
}

.newsletter-box p {
    font-size: 13px;
    margin-bottom: 20px;
}

.concept-form {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.concept-form input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    flex: 1;
    font-size: 13px;
    outline: none;
}

.concept-form button {
    background: var(--theme-color);
    border: none;
    color: #111;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.concept-form button:hover {
    background: #fff;
}

.footer-bottom-concept {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-concept p {
    font-size: 13px;
    color: #666;
}

@media (max-width: 1100px) {
    .footer-grid-concept {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-grid-concept {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        padding: 0 25px;
    }

    .social-circle {
        margin: 0 auto 0 0;
    }
}

/* Sticky Dual Header Styles */
.sticky-header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
}

.main-header {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.main-logo-top {
    height: 35px;
}

.header-util {
    display: flex;
    align-items: center;
    gap: 20px;
}

.util-link {
    color: #444;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.util-link i {
    font-size: 14px;
    color: #666;
}

.util-sep {
    width: 1px;
    height: 20px;
    background: #eee;
}

.login-action {
    background: #252422;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* Secondary Nav */
.sub-nav {
    background: #fff;
    padding: 10px 0;
}

.sub-nav-left {
    display: flex;
    gap: 30px;
}

.sub-link {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    position: relative;
}

.sub-link.active {
    color: #ff6d38;
}

.sub-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6d38;
}

.sub-link i {
    font-size: 16px;
    opacity: 0.8;
}

.offer-badge {
    background: #ff4d4d;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 800;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.sub-nav-right {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* Compensate for fixed header */
body {
    padding-top: 110px;
    /* main-header height + sub-nav height */
}

@media (max-width: 1000px) {
    .header-util {
        gap: 10px;
    }

    .util-link {
        font-size: 11px;
    }

    .util-sep {
        display: none;
    }

    .sub-nav-right {
        display: none;
    }
}

/* ============================================================
   ROBUST MOBILE RESPONSIVENESS FIX
   ============================================================ */

.hamburger-toggle {
    display: none;
    background: #f8f9fa;
    border: 1px solid #eee;
    font-size: 20px;
    color: #222;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.2s;
}

@media (max-width: 768px) {

    /* 1. Basic Layout Resets */
    body {
        padding-top: 60px !important;
        scroll-behavior: smooth;
    }

    .sticky-header-container {
        position: sticky !important;
        top: 0 !important;
        bottom: auto !important;
        height: auto !important;
    }

    .main-header {
        padding: 10px 0 !important;
    }

    /* 2. Brand & Toggle */
    .main-logo-top {
        height: 28px !important;
    }

    .hamburger-toggle {
        display: block !important;
    }

    /* 3. Navigation Drawer (CLEAN RESET) */
    .header-util {
        position: fixed !important;
        top: 60px !important;
        bottom: auto !important;
        /* Force reset old bottom bar */
        left: auto !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: calc(100vh - 60px) !important;
        background: #ffffff !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 40px 25px !important;
        gap: 0 !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1) !important;
        z-index: 10000 !important;
        display: flex !important;
        visibility: hidden;
    }

    .header-util.open {
        right: 0 !important;
        visibility: visible;
        transform: translateX(0);
    }

    /* Utility Links in Drawer */
    .util-link {
        font-size: 16px !important;
        width: 100% !important;
        border-bottom: 1px solid #f5f5f5 !important;
        padding: 15px 0 !important;
        color: #333 !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .util-link span {
        display: inline !important;
        color: #666;
        font-weight: 500;
    }

    .util-link i {
        font-size: 18px;
        color: var(--accent-color);
        order: 2;
    }

    .util-sep {
        display: none !important;
    }

    /* Remove old bottom bar labels if they exist in cache */
    .util-link::after {
        display: none !important;
        content: "" !important;
    }

    /* Login in Drawer */
    .login-dropdown {
        width: 100% !important;
        margin-top: 20px !important;
    }

    .login-action {
        width: 100% !important;
        height: 50px !important;
        border-radius: 8px !important;
        justify-content: center !important;
        font-size: 15px !important;
    }

    /* 4. Sub Navigation (The icons below header) */
    .sub-nav {
        padding: 5px 0 !important;
        border-bottom: 1px solid #eee;
        background: #fafafa !important;
    }

    .sub-nav-left {
        gap: 15px !important;
        overflow-x: auto !important;
        padding: 5px 15px !important;
        scrollbar-width: none;
    }

    .sub-nav-left::-webkit-scrollbar {
        display: none;
    }

    .sub-link {
        font-size: 12px !important;
        white-space: nowrap !important;
        padding: 6px 12px !important;
        background: #fff;
        border-radius: 20px;
        border: 1px solid #eee;
    }

    .sub-link i {
        font-size: 14px !important;
    }

    .sub-link.active::after {
        display: none !important;
    }

    .sub-link.active {
        background: var(--accent-color) !important;
        color: #fff !important;
        border-color: var(--accent-color) !important;
    }

    /* 5. Mobile Hero & Search */
    .hero {
        height: 350px !important;
    }

    .hero-content h1, #hero-title, .hero-title {
        font-size: 24px !important;
        margin-bottom: 10px;
    }

    .hero-content p, #hero-subtitle, .hero-subtitle {
        font-size: 13px !important;
    }

    .booking-card {
        margin-top: -40px !important;
        width: 92% !important;
        padding: 15px !important;
        border-radius: 12px !important;
    }

    .search-row {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .search-btn {
        width: 100% !important;
        height: 50px !important;
        margin-top: 10px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
    }

    .hotels-grid,
    .fares-grid,
    .routes-grid,
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .section-title {
        font-size: 22px !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1, #hero-title, .hero-title {
        font-size: 22px !important;
    }

    .app-badge-group {
        flex-direction: column;
        align-items: center;
    }
}



/* ==========================================================================
   MAIN FOOTER COMPONENT
   ========================================================================== */
.main-footer {
    background: #111;
    color: #fff;
    padding: 25px 0 15px;
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid-concept {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.5fr;
    gap: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Social Circles */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.social-circle:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Newsletter Form */
.concept-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.concept-form input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    flex: 1;
    outline: none;
    font-size: 13px;
}

.concept-form button {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.concept-form button:hover {
    background: #fff;
    color: #000;
}

/* Branch Items */
.branch-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.branch-item:hover {
    border-color: var(--accent-color);
    background: rgba(205, 164, 52, 0.05);
}

.branch-item strong {
    color: var(--accent-color) !important;
}

/* Footer Bottom */
.footer-bottom-concept {
    text-align: center;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 30px;
}

@media (max-width: 991px) {
    .footer-grid-concept {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid-concept {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }
}