:root {
    --font-heading: 'Playfair Display', serif;
    --color-primary-dark: #1a1006;
    --color-dark: #2b1c0f;
    --color-dark-soft: #3a2716;
    --color-accent: #e69b3c;
    --color-panel: #1c1c1c;
}

.catering-page {
    background-color: #000000;
}

/* ===== Hero Section ===== */
.catering-page .ct-hero {
    position: relative;
    padding: 60px 0 100px;
    overflow: hidden;
}

.catering-page .ct-hero .ct-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.catering-page .ct-hero .container {
    position: relative;
    z-index: 1;
}

.catering-page .ct-hero .ct-hero-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.catering-page .ct-hero .ct-hero-label {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    color: var(--color-accent);
    border-left: 3px solid var(--color-accent);
    padding-left: 10px;
    display: inline-block;
    margin-bottom: 16px;
}

.catering-page .ct-hero .ct-hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 34px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.catering-page .ct-hero .ct-hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    margin-bottom: 24px;
}

.catering-page .ct-hero .ct-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.catering-page .ct-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.catering-page .ct-btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.catering-page .ct-btn-primary:hover {
    background-color: #d4872f;
}

.catering-page .ct-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.catering-page .ct-btn-outline:hover {
    border-color: #fff;
}

.catering-page .ct-hero .ct-hero-media img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    display: block;
    margin: 20px auto 0;
}

/* ===== Intro Section ===== */
.catering-page .ct-intro {
    padding: 60px 0;
}

.catering-page .ct-intro .ct-intro-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.catering-page .ct-intro .ct-intro-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.catering-page .ct-intro .ct-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.catering-page .ct-intro .ct-intro-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.catering-page .ct-intro .ct-intro-stat h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
}

.catering-page .ct-intro .ct-intro-stat p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 140px;
}

/* ===== Occasions Band ===== */
.catering-page .ct-band {
    background-color: var(--color-dark-soft);
    padding: 60px 0;
}

.catering-page .ct-band .ct-band-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.catering-page .ct-band .ct-band-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.catering-page .ct-band .ct-band-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 480px;
}

.catering-page .ct-band .ct-band-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.catering-page .ct-band .ct-band-col h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.catering-page .ct-band .ct-band-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.catering-page .ct-band .ct-band-col li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.catering-page .ct-band .ct-band-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ===== Halal Section ===== */
.catering-page .ct-halal {
    padding: 60px 0;
}

.catering-page .ct-halal .ct-halal-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.catering-page .ct-halal .ct-halal-top img {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    display: block;
}

.catering-page .ct-halal .ct-halal-top p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
}

.catering-page .ct-halal .ct-halal-box {
    background-color: var(--color-panel);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
}

.catering-page .ct-halal .ct-halal-box h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 14px;
}

.catering-page .ct-halal .ct-halal-box p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== Large Groups Section ===== */
.catering-page .ct-large-group {
    padding: 60px 0;
}

.catering-page .ct-large-group .ct-large-group-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.catering-page .ct-large-group .ct-large-group-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.catering-page .ct-large-group .ct-large-group-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.catering-page .ct-large-group .ct-large-group-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.catering-page .ct-large-group .ct-large-group-list {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.catering-page .ct-large-group .ct-large-group-list li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.catering-page .ct-large-group .ct-large-group-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.catering-page .ct-stats-box {
    background-color: var(--color-panel);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
}

.catering-page .ct-stats-box .ct-stats-item h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.catering-page .ct-stats-box .ct-stats-item p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto;
}

.catering-page .ct-stats-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 30px 0;
}

/* ===== Why Choose Section ===== */
.catering-page .ct-why {
    padding: 60px 0;
}

.catering-page .ct-why .ct-why-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.catering-page .ct-why .ct-why-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.catering-page .ct-why .ct-why-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.catering-page .ct-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.catering-page .ct-why .ct-why-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.catering-page .ct-why .ct-why-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.catering-page .ct-why .ct-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.catering-page .ct-why .ct-why-list li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* ===== Local Section ===== */
.catering-page .ct-local {
    padding: 60px 0 100px;
}

.catering-page .ct-local .ct-local-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.catering-page .ct-local .ct-local-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.catering-page .ct-local .ct-local-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.catering-page .ct-local .ct-local-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.catering-page .ct-local-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.catering-page .ct-local-tags span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #fff;
    background-color: var(--color-panel);
    padding: 8px 16px;
    border-radius: 20px;
}

.catering-page .ct-local-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.catering-page .ct-local-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ===== دسکتاپ (992px به بالا) ===== */
@media (min-width: 992px) {

    .catering-page .ct-hero {
        padding: 100px 0 140px;
    }

    .catering-page .ct-hero .ct-hero-flex {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .catering-page .ct-hero .ct-hero-content {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .catering-page .ct-hero .ct-hero-title {
        font-size: 44px;
    }

    .catering-page .ct-hero .ct-hero-media {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .catering-page .ct-hero .ct-hero-media img {
        max-height: 280px;
        margin: 0;
    }

    .catering-page .ct-intro {
        padding: 90px 0;
    }

    .catering-page .ct-intro .ct-intro-flex {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .catering-page .ct-intro .ct-intro-media {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .catering-page .ct-intro .ct-intro-media img {
        height: 300px;
    }

    .catering-page .ct-intro .ct-intro-content {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .catering-page .ct-band {
        padding: 90px 0;
    }

    .catering-page .ct-band .ct-band-flex {
        flex-direction: row;
        gap: 60px;
    }

    .catering-page .ct-band .ct-band-content {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .catering-page .ct-band .ct-band-media {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .catering-page .ct-band .ct-band-media img {
        height: 340px;
    }

    .catering-page .ct-halal {
        padding: 90px 0;
    }

    .catering-page .ct-halal .ct-halal-top {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }

    .catering-page .ct-large-group {
        padding: 90px 0;
    }

    .catering-page .ct-large-group .ct-large-group-flex {
        flex-direction: row;
        gap: 60px;
    }

    .catering-page .ct-large-group .ct-large-group-content {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .catering-page .ct-large-group .ct-large-group-media {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .catering-page .ct-large-group .ct-large-group-media img {
        height: 100%;
    }

    .catering-page .ct-stats-box {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        padding: 50px 60px;
    }

    .catering-page .ct-stats-divider {
        width: 1px;
        height: 80px;
        margin: 0 60px;
    }

    .catering-page .ct-why {
        padding: 90px 0;
    }

    .catering-page .ct-why .ct-why-flex {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .catering-page .ct-why .ct-why-media {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .catering-page .ct-why .ct-why-media img {
        height: 340px;
    }

    .catering-page .ct-why .ct-why-content {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .catering-page .ct-local {
        padding: 90px 0 140px;
    }

    .catering-page .ct-local .ct-local-flex {
        flex-direction: row;
        gap: 60px;
    }

    .catering-page .ct-local .ct-local-content {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .catering-page .ct-local .ct-local-media {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .catering-page .ct-local .ct-local-media img {
        height: 100%;
    }
}


.events-media-video {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    max-height: 600px;
}
