.main-menu .navigation>li {
    margin: 0px 10px;
}

  :root {
    --theme-color: #77A96A;
    --accent-color: #D32F2F;
}

/* Genel yapı */
.course-section {
    background: #f8f9f8;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sec-title h2 {
    color: #2e2e2e;
    font-weight: 700;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* Kart yapısı */
.offer-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-6px);
}

.image-box-hotels {
    position: relative;
}

.image-box-hotels img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--theme-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.lower-content {
    padding: 20px;
}

.lower-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.stars {
    color: #f7b500;
    margin-bottom: 10px;
}

.date {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.date i {
    margin-right: 8px;
    color: var(--theme-color);
}

.offer-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.offer-details li {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.offer-details i {
    color: var(--theme-color);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Alt fiyat bölümü */
.price-footer {
    background: var(--theme-color);
    color: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}

.price-footer .location {
    font-size: 14px;
}

.price-footer .price {
    font-size: 18px;
}

.main-footer .pattern-layer {
    position: absolute;
    left: 0px;
    top: -1px;
    width: 100%;
    height: 60px!important;
}
.banner-section .pattern-layer {
    position: absolute;
    left: 0px;
    bottom: -2px;
    width: 100%;
    height: 60px!important;
}


/* Header icon alignment */
.main-header [class^="icon-"],
.main-header [class*=" icon-"],
.header-top [class^="icon-"],
.header-top [class*=" icon-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

/* Home header white gap fixes */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

.main-header,
.main-header .header-top,
.main-header .header-lower {
    margin: 0 !important;
}

.main-header .outer-box,
.main-header .outer-container .left-column {
    align-items: stretch;
}

.main-header .outer-container .left-column .logo-box {
    display: flex;
    align-items: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.main-header .outer-container .left-column .logo-box a,
.main-header .outer-container .left-column .logo-box img {
    display: block;
}

.banner-section {
    margin-top: 0 !important;
}

body.page-loading {
    overflow: hidden;
}

.loader-wrap {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(119,169,106,.18), transparent 28%),
        radial-gradient(circle at top right, rgba(15,63,52,.18), transparent 30%),
        rgba(247, 250, 248, .96);
    opacity: 1;
    visibility: visible;
    transition: opacity .28s ease, visibility .28s ease;
}

.loader-wrap.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(215,229,222,.96);
    box-shadow: 0 18px 36px rgba(15,23,42,.08);
}

.loader-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1f5f53;
    animation: loaderPulse 1s infinite ease-in-out;
}

.loader-dot:nth-child(2) {
    animation-delay: .16s;
}

.loader-dot:nth-child(3) {
    animation-delay: .32s;
}

@keyframes loaderPulse {
    0%, 80%, 100% {
        transform: scale(.65);
        opacity: .45;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}
