
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ct-green: #006837;
    --ct-green-dark: #004d29;
    --ct-gold: #FDB813;
    --ct-gold-hover: #e5a50f;
    --ct-dark: #333;
    --ct-grey: #666;
    --ct-light-grey: #f5f5f5;
    --ct-blue: #0066cc;
    --ct-white: #fff;
    --ct-border: #e5e5e5;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--ct-dark);
    background: var(--ct-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-gold {
    background: var(--ct-gold);
    color: var(--ct-dark);
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .btn-gold:hover {
        background: var(--ct-gold-hover);
    }

.btn-primary {
    background: var(--ct-green);
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-primary:hover {
        background: var(--ct-green-dark);
    }

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ct-dark);
}

    .section-title span {
        color: var(--ct-green);
    }

/* ===== HEADER ===== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.header-logo img {
    height: 56px;
}

.header-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .header-badges img {
        height: 48px;
    }

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .header-phone a {
        color: var(--ct-blue);
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 20px;
    }

.header-hours {
    font-size: 13px;
    color: var(--ct-grey);
}

    .header-hours strong {
        color: var(--ct-dark);
    }

.header-nav {
    border-top: 1px solid var(--ct-border);
}

    .header-nav ul {
        display: flex;
        list-style: none;
        overflow-x: auto;
    }

    .header-nav li a {
        display: block;
        padding: 12px 16px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: var(--ct-dark);
        white-space: nowrap;
        transition: color 0.2s;
    }

        .header-nav li a:hover {
            color: var(--ct-green);
        }

/* ===== HERO BANNER ===== */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 24px;
    color: #fff;
}

    .hero-nav-btn:hover {
        background: rgba(255,255,255,0.5);
    }

    .hero-nav-btn.prev {
        left: 16px;
    }

    .hero-nav-btn.next {
        right: 16px;
    }

/* ===== SEARCH TABS ===== */
.search-box {
    width: 100%;
    max-width: 1140px;
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.search-tabs {
    display: flex;
    border-bottom: 1px solid var(--ct-border);
    overflow-x: auto;
}

.search-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    background: transparent;
    border-bottom: 3px solid transparent;
    color: var(--ct-dark);
    transition: all 0.2s;
}

    .search-tab:hover {
        background: var(--ct-light-grey);
    }

    .search-tab.active {
        background: var(--ct-green);
        color: #fff;
        border-bottom-color: var(--ct-gold);
    }

    .search-tab svg {
        width: 20px;
        height: 20px;
    }

.search-body {
    padding: 20px 24px;
}

.trip-options {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

    .trip-options label {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        font-size: 14px;
        color: var(--ct-dark);
    }

    .trip-options input[type="radio"], .trip-options input[type="checkbox"] {
        accent-color: var(--ct-green);
    }

.search-fields {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

    .search-fields.cols-5 {
        grid-template-columns: repeat(5, 1fr);
    }

.field-group label {
    display: block;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--ct-grey);
    margin-bottom: 4px;
}

.field-group input, .field-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--ct-border);
    border-radius: 4px;
    font-size: 13px;
    background: #fff;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

    .field-group input:focus, .field-group select:focus {
        border-color: var(--ct-green);
        box-shadow: 0 0 0 2px rgba(0,104,55,0.15);
    }

.field-group .input-icon {
    position: relative;
}

    .field-group .input-icon svg {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        color: var(--ct-grey);
    }

    .field-group .input-icon input {
        padding-left: 34px;
    }

.field-group .invisible-label {
    visibility: hidden;
}

/* ===== WHY BOOK ===== */
.why-book {
    background: var(--ct-green);
    padding: 40px 0;
}

    .why-book h2 {
        text-align: center;
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    text-align: center;
}

    .why-item img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        margin: 0 auto 12px;
    }

    .why-item h3 {
        color: #fff;
        font-size: 15px;
        font-weight: 700;
    }

    .why-item p {
        color: rgba(255,255,255,0.8);
        font-size: 14px;
    }

/* ===== FLIGHT OFFERS ===== */
.flight-offers {
    padding: 48px 0;
}

.flight-layout {
    display: flex;
    gap: 32px;
}

.flight-title {
    width: 180px;
    flex-shrink: 0;
}

.flight-cols {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.flight-col {
    border: 1px solid var(--ct-border);
    border-radius: 4px;
    overflow: hidden;
}

.flight-col-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--ct-green);
    color: #fff;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

    .flight-col-header div {
        padding: 8px 12px;
    }

.flight-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--ct-border);
    cursor: pointer;
    transition: background 0.2s;
}

    .flight-row:last-child {
        border-bottom: none;
    }

    .flight-row:hover {
        background: var(--ct-light-grey);
    }

.flight-cell {
    padding: 12px;
    font-size: 12px;
}

    .flight-cell .city {
        font-weight: 600;
        color: var(--ct-dark);
    }

    .flight-cell .arrow {
        color: var(--ct-grey);
        text-align: center;
        font-size: 10px;
        display: block;
    }

.flight-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .flight-price img {
        height: 20px;
        margin-bottom: 4px;
    }

    .flight-price .from {
        font-size: 11px;
        color: var(--ct-grey);
    }

    .flight-price .amount {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: var(--ct-green);
        font-size: 14px;
    }

    .flight-price .pp {
        font-size: 11px;
        color: var(--ct-grey);
        font-weight: 400;
    }

/* ===== HOLIDAY OFFERS ===== */
.holiday-offers {
    padding: 0 0 48px;
}

    .holiday-offers h2 {
        text-align: center;
        margin-bottom: 32px;
    }

.holiday-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.holiday-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

    .holiday-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

        .holiday-card:hover .holiday-img img {
            transform: scale(1.05);
        }

.holiday-img {
    position: relative;
    height: 160px;
    overflow: hidden;
}

    .holiday-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.holiday-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--ct-green);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.holiday-price-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--ct-gold);
    color: var(--ct-dark);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.holiday-info {
    padding: 12px;
}

.holiday-stars {
    color: var(--ct-gold);
    font-size: 12px;
}

.holiday-airline {
    font-size: 12px;
    color: var(--ct-grey);
    margin-left: 8px;
}

.holiday-meta {
    font-size: 12px;
    color: var(--ct-grey);
    margin: 4px 0;
}

.holiday-hotel {
    font-size: 14px;
    font-weight: 600;
    color: var(--ct-dark);
    margin: 2px 0;
}

/* ===== FEATURED HOTELS ===== */
.featured-hotels {
    background: var(--ct-light-grey);
    padding: 48px 0;
}

    .featured-hotels h2 {
        text-align: center;
        margin-bottom: 8px;
    }

    .featured-hotels .subtitle {
        text-align: center;
        color: var(--ct-grey);
        font-size: 14px;
        margin-bottom: 32px;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hotel-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

    .hotel-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

        .hotel-card:hover .hotel-img img {
            transform: scale(1.05);
        }

.hotel-img {
    height: 192px;
    overflow: hidden;
}

    .hotel-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.hotel-body {
    padding: 16px;
}

.hotel-stars {
    color: var(--ct-gold);
    font-size: 14px;
    margin-bottom: 8px;
}

.hotel-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--ct-dark);
    margin-bottom: 2px;
}

.hotel-location {
    font-size: 12px;
    color: var(--ct-grey);
    margin-bottom: 12px;
}

.hotel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-from {
    font-size: 13px;
    color: var(--ct-grey);
}

.hotel-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--ct-green);
    font-size: 20px;
    margin-left: 4px;
}

.hotel-pp {
    font-size: 12px;
    color: var(--ct-grey);
}

/* ===== HAJJ UMRAH ===== */
.hajj-section {
    padding: 48px 0;
}

    .hajj-section h2 {
        text-align: center;
        margin-bottom: 8px;
    }

    .hajj-section .subtitle {
        text-align: center;
        color: var(--ct-grey);
        font-size: 14px;
        margin-bottom: 32px;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

.hajj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.hajj-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

    .hajj-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

.hajj-img {
    position: relative;
    height: 208px;
    overflow: hidden;
}

    .hajj-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hajj-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ct-green);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hajj-body {
    padding: 20px;
}

.hajj-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--ct-dark);
    margin-bottom: 16px;
}

.hajj-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

    .hajj-detail .stars {
        color: var(--ct-gold);
        font-size: 12px;
    }

    .hajj-detail .nights {
        font-size: 12px;
        color: var(--ct-grey);
        margin-top: 2px;
    }

    .hajj-detail .hotel-name {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: var(--ct-dark);
    }

.hajj-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--ct-border);
    padding-top: 16px;
    margin-top: 16px;
}

.hajj-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--ct-green);
}

.hajj-pp {
    font-size: 14px;
    color: var(--ct-grey);
    font-weight: 400;
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
    background: var(--ct-green);
    padding: 32px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon svg {
        width: 24px;
        height: 24px;
        color: #fff;
    }

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.contact-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--ct-gold);
    font-size: 18px;
}

.contact-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--ct-gold);
    font-size: 13px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ct-dark);
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col img {
    height: 48px;
    margin-bottom: 16px;
    filter: brightness(2);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            transition: color 0.2s;
        }

            .footer-col ul li a:hover {
                color: var(--ct-gold);
            }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 32px;
    padding: 24px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* ===== SVG ICONS (inline) ===== */
.icon {
    display: inline-block;
    vertical-align: middle;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .search-fields {
        grid-template-columns: repeat(4, 1fr);
    }

    .flight-cols {
        grid-template-columns: 1fr;
    }

    .holiday-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        justify-content: center;
        text-align: center;
    }

    .header-badges {
        display: none;
    }

    .header-hours {
        display: none;
    }

    .hero {
        height: 450px;
    }

    .search-fields, .search-fields.cols-5 {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flight-layout {
        flex-direction: column;
    }

    .flight-title {
        width: auto;
    }

    .holiday-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hotel-grid {
        grid-template-columns: 1fr;
    }

    .hajj-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .search-fields, .search-fields.cols-5 {
        grid-template-columns: 1fr;
    }

    .holiday-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


